ETH Price: $2,447.20 (+0.76%)
 

Overview

Max Total Supply

1,100 TAGM

Holders

593

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TAGM
0x402d3b8518fad9d97a948e5bf176d7a7a83b8b71
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TeenApeGangMutants

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

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

contract TeenApeGangMutants is ERC721, Ownable { 

    bool public saleActive = false;
    bool public claimActive = false;
    
    string internal baseTokenURI;

    uint public price = 0.05 ether;
    uint public totalSupply = 6000;
    uint public claimSupply = 2000;
    uint public saleSupply = 4000;
    uint public nonce = 0;
    uint public claimed = 0;
    uint public bought = 0;
    uint public maxTx = 3;
    
    event Mint(address owner, uint qty);
    event Giveaway(address to, uint qty);
    event Withdraw(uint amount);

    mapping (address => uint256) public claimWallets;
    
    constructor() ERC721("Teen Ape Gang Mutants", "TAGM") {}
    
    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 setSaleSupply(uint newSupply) external onlyOwner {
        saleSupply = newSupply;
    }

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

    function setClaimActive(bool val) public onlyOwner {
        claimActive = val;
    }

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

    function setClaimWallets(address[] memory _a, uint256[] memory _amount) public onlyOwner {
        for(uint256 i; i < _a.length; i++){
            claimWallets[_a[i]] = _amount[i];
        }
    }
    
    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }
    
    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 getMyAssets() external view returns(uint[] memory){
        return getAssetsByOwner(tx.origin);
    }

    function _baseURI() internal override view returns (string memory) {
        return baseTokenURI;
    }
    
    function giveaway(address to, uint qty) external onlyOwner {
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        for(uint i = 0; i < qty; i++){
            uint tokenId = nonce;
            _safeMint(to, tokenId);
            nonce++;
        }
        emit Giveaway(to, qty);
    }

    function claim(uint qty) external payable {
        uint256 qtyAllowed = claimWallets[msg.sender];
        require(claimActive, "TRANSACTION: Claim is not active");
        require(qtyAllowed > 0, "TRANSACTION: You can't claim that amount");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(qty + claimed <= claimSupply, "SUPPLY: Value exceeds ClaimSupply");
        claimWallets[msg.sender] = qtyAllowed - qty;
        for(uint i = 0; i < qty; i++){
            uint tokenId = nonce;
            _safeMint(msg.sender, tokenId);
            nonce++;
            claimed++;
        }
        emit Mint(msg.sender, qty);
    }
    
    function buy(uint qty) external payable {
        require(saleActive, "TRANSACTION: sale is not active");
        require(qty <= maxTx || qty < 1, "TRANSACTION: qty of mints not alowed");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(qty + bought <= saleSupply, "SUPPLY: Value exceeds SaleSupply");
        require(msg.value == price * qty, "PAYMENT: invalid value");
        for(uint i = 0; i < qty; i++){
            uint tokenId = nonce;
            _safeMint(msg.sender, tokenId);
            nonce++;
            bought++;
        }
        emit Mint(msg.sender, qty);
    }
    
    function withdrawOwner() external onlyOwner {
        payable(msg.sender).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.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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"qty","type":"uint256"}],"name":"Giveaway","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bought","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":"qty","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimed","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":[],"name":"getMyAssets","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","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":"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":[],"name":"saleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address[]","name":"_a","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"setClaimWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","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":"setSaleSupply","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":"withdrawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff02191690831515021790555066b1a2bc2ec500006008556117706009556107d0600a55610fa0600b556000600c556000600d556000600e556003600f553480156200007857600080fd5b506040518060400160405280601581526020017f5465656e204170652047616e67204d7574616e747300000000000000000000008152506040518060400160405280600481526020017f5441474d000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000fd9291906200020d565b508060019080519060200190620001169291906200020d565b505050620001396200012d6200013f60201b60201c565b6200014760201b60201c565b62000322565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021b90620002bd565b90600052602060002090601f0160209004810192826200023f57600085556200028b565b82601f106200025a57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028a5782518255916020019190600101906200026d565b5b5090506200029a91906200029e565b5090565b5b80821115620002b95760008160009055506001016200029f565b5090565b60006002820490506001821680620002d657607f821691505b60208210811415620002ed57620002ec620002f3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61481f80620003326000396000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063affed0e0116100b6578063d96a094a1161007a578063d96a094a146108a1578063e834a834146108bd578063e8cc00ad146108e8578063e985e9c5146108ff578063f2fde38b1461093c578063f7ea7a3d1461096557610251565b8063affed0e0146107bc578063b88d4fde146107e7578063bc33718214610810578063c87b56dd14610839578063d4a6a2fd1461087657610251565b806391b7f5ed116100fd57806391b7f5ed146106e957806395d89b4114610712578063a035b1fe1461073d578063a22cb46514610768578063a96af0f41461079157610251565b8063715018a61461062a57806373417b09146106415780637437681e1461066a578063841718a6146106955780638da5cb5b146106be57610251565b8063276f0934116101d257806342842e0e1161019657806342842e0e1461050857806347002d1d146105315780636352211e1461055c57806365adb9531461059957806368428a1b146105c257806370a08231146105ed57610251565b8063276f09341461041e57806329265eff1461045b57806330176e131461049857806334976b9b146104c1578063379607f5146104ec57610251565b8063095ea7b311610219578063095ea7b31461034d5780630ad29ec31461037657806318160ddd146103a157806322e8d8cd146103cc57806323b872dd146103f557610251565b806301ffc9a71461025657806304db5eed14610293578063050225ea146102bc57806306fdde03146102e5578063081812fc14610310575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906132ca565b61098e565b60405161028a9190613911565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613371565b610a70565b005b3480156102c857600080fd5b506102e360048036038101906102de91906131e5565b610af6565b005b3480156102f157600080fd5b506102fa610c4a565b604051610307919061392c565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613371565b610cdc565b604051610344919061385f565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906131e5565b610d61565b005b34801561038257600080fd5b5061038b610e79565b6040516103989190613c4e565b60405180910390f35b3480156103ad57600080fd5b506103b6610e7f565b6040516103c39190613c4e565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613371565b610e85565b005b34801561040157600080fd5b5061041c600480360381019061041791906130cf565b610f0b565b005b34801561042a57600080fd5b5061044560048036038101906104409190613062565b610f6b565b60405161045291906138ef565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190613062565b611059565b60405161048f9190613c4e565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613324565b611071565b005b3480156104cd57600080fd5b506104d6611103565b6040516104e39190613c4e565b60405180910390f35b61050660048036038101906105019190613371565b611109565b005b34801561051457600080fd5b5061052f600480360381019061052a91906130cf565b611370565b005b34801561053d57600080fd5b50610546611390565b60405161055391906138ef565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190613371565b6113a0565b604051610590919061385f565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190613225565b611452565b005b3480156105ce57600080fd5b506105d761156a565b6040516105e49190613911565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190613062565b61157d565b6040516106219190613c4e565b60405180910390f35b34801561063657600080fd5b5061063f611635565b005b34801561064d57600080fd5b506106686004803603810190610663919061329d565b6116bd565b005b34801561067657600080fd5b5061067f611756565b60405161068c9190613c4e565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b7919061329d565b61175c565b005b3480156106ca57600080fd5b506106d36117f5565b6040516106e0919061385f565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b9190613371565b61181f565b005b34801561071e57600080fd5b506107276118a5565b604051610734919061392c565b60405180910390f35b34801561074957600080fd5b50610752611937565b60405161075f9190613c4e565b60405180910390f35b34801561077457600080fd5b5061078f600480360381019061078a91906131a5565b61193d565b005b34801561079d57600080fd5b506107a6611abe565b6040516107b39190613c4e565b60405180910390f35b3480156107c857600080fd5b506107d1611ac4565b6040516107de9190613c4e565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190613122565b611aca565b005b34801561081c57600080fd5b5061083760048036038101906108329190613371565b611b2c565b005b34801561084557600080fd5b50610860600480360381019061085b9190613371565b611bb2565b60405161086d919061392c565b60405180910390f35b34801561088257600080fd5b5061088b611c59565b6040516108989190613911565b60405180910390f35b6108bb60048036038101906108b69190613371565b611c6c565b005b3480156108c957600080fd5b506108d2611e9b565b6040516108df9190613c4e565b60405180910390f35b3480156108f457600080fd5b506108fd611ea1565b005b34801561090b57600080fd5b506109266004803603810190610921919061308f565b611f66565b6040516109339190613911565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613062565b611ffa565b005b34801561097157600080fd5b5061098c60048036038101906109879190613371565b6120f2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a695750610a6882612178565b5b9050919050565b610a786121e2565b73ffffffffffffffffffffffffffffffffffffffff16610a966117f5565b73ffffffffffffffffffffffffffffffffffffffff1614610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390613b8e565b60405180910390fd5b80600b8190555050565b610afe6121e2565b73ffffffffffffffffffffffffffffffffffffffff16610b1c6117f5565b73ffffffffffffffffffffffffffffffffffffffff1614610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990613b8e565b60405180910390fd5b600954600c5482610b839190613d93565b1115610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90613c0e565b60405180910390fd5b60005b81811015610c0c576000600c549050610be084826121ea565b600c6000815480929190610bf390613fc1565b9190505550508080610c0490613fc1565b915050610bc7565b507f2118eda2a5fcc2e5f909a608477a856272adadcb48e1373747c51d2d3f6fc2ef8282604051610c3e9291906138c6565b60405180910390a15050565b606060008054610c5990613f5e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8590613f5e565b8015610cd25780601f10610ca757610100808354040283529160200191610cd2565b820191906000526020600020905b815481529060010190602001808311610cb557829003601f168201915b5050505050905090565b6000610ce782612208565b610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90613b6e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d6c826113a0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613bee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dfc6121e2565b73ffffffffffffffffffffffffffffffffffffffff161480610e2b5750610e2a81610e256121e2565b611f66565b5b610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190613a8e565b60405180910390fd5b610e748383612274565b505050565b600a5481565b60095481565b610e8d6121e2565b73ffffffffffffffffffffffffffffffffffffffff16610eab6117f5565b73ffffffffffffffffffffffffffffffffffffffff1614610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890613b8e565b60405180910390fd5b80600a8190555050565b610f1c610f166121e2565b8261232d565b610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613c2e565b60405180910390fd5b610f6683838361240b565b505050565b60606000610f788361157d565b67ffffffffffffffff811115610f9157610f906140f7565b5b604051908082528060200260200182016040528015610fbf5781602001602082028036833780820191505090505b5090506000805b600c5481101561104e578473ffffffffffffffffffffffffffffffffffffffff16610ff0826113a0565b73ffffffffffffffffffffffffffffffffffffffff16141561103b57808383815181106110205761101f6140c8565b5b602002602001018181525050818061103790613fc1565b9250505b808061104690613fc1565b915050610fc6565b508192505050919050565b60106020528060005260406000206000915090505481565b6110796121e2565b73ffffffffffffffffffffffffffffffffffffffff166110976117f5565b73ffffffffffffffffffffffffffffffffffffffff16146110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490613b8e565b60405180910390fd5b8181600791906110fe929190612d54565b505050565b600e5481565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660159054906101000a900460ff1661119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390613a4e565b60405180910390fd5b600081116111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690613b0e565b60405180910390fd5b600954600c54836111f09190613d93565b1115611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890613c0e565b60405180910390fd5b600a54600d54836112429190613d93565b1115611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90613a6e565b60405180910390fd5b818161128f9190613e74565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b82811015611332576000600c5490506112ee33826121ea565b600c600081548092919061130190613fc1565b9190505550600d600081548092919061131990613fc1565b919050555050808061132a90613fc1565b9150506112d5565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688533836040516113649291906138c6565b60405180910390a15050565b61138b83838360405180602001604052806000815250611aca565b505050565b606061139b32610f6b565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613ace565b60405180910390fd5b80915050919050565b61145a6121e2565b73ffffffffffffffffffffffffffffffffffffffff166114786117f5565b73ffffffffffffffffffffffffffffffffffffffff16146114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613b8e565b60405180910390fd5b60005b8251811015611565578181815181106114ed576114ec6140c8565b5b60200260200101516010600085848151811061150c5761150b6140c8565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061155d90613fc1565b9150506114d1565b505050565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590613aae565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61163d6121e2565b73ffffffffffffffffffffffffffffffffffffffff1661165b6117f5565b73ffffffffffffffffffffffffffffffffffffffff16146116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890613b8e565b60405180910390fd5b6116bb6000612667565b565b6116c56121e2565b73ffffffffffffffffffffffffffffffffffffffff166116e36117f5565b73ffffffffffffffffffffffffffffffffffffffff1614611739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173090613b8e565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b600f5481565b6117646121e2565b73ffffffffffffffffffffffffffffffffffffffff166117826117f5565b73ffffffffffffffffffffffffffffffffffffffff16146117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf90613b8e565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118276121e2565b73ffffffffffffffffffffffffffffffffffffffff166118456117f5565b73ffffffffffffffffffffffffffffffffffffffff161461189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189290613b8e565b60405180910390fd5b8060088190555050565b6060600180546118b490613f5e565b80601f01602080910402602001604051908101604052809291908181526020018280546118e090613f5e565b801561192d5780601f106119025761010080835404028352916020019161192d565b820191906000526020600020905b81548152906001019060200180831161191057829003601f168201915b5050505050905090565b60085481565b6119456121e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613a0e565b60405180910390fd5b80600560006119c06121e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a6d6121e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab29190613911565b60405180910390a35050565b600b5481565b600c5481565b611adb611ad56121e2565b8361232d565b611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1190613c2e565b60405180910390fd5b611b268484848461272d565b50505050565b611b346121e2565b73ffffffffffffffffffffffffffffffffffffffff16611b526117f5565b73ffffffffffffffffffffffffffffffffffffffff1614611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f90613b8e565b60405180910390fd5b80600f8190555050565b6060611bbd82612208565b611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390613bce565b60405180910390fd5b6000611c06612789565b90506000815111611c265760405180602001604052806000815250611c51565b80611c308461281b565b604051602001611c4192919061383b565b6040516020818303038152906040525b915050919050565b600660159054906101000a900460ff1681565b600660149054906101000a900460ff16611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb290613b4e565b60405180910390fd5b600f5481111580611ccc5750600181105b611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d02906139ae565b60405180910390fd5b600954600c5482611d1c9190613d93565b1115611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5490613c0e565b60405180910390fd5b600b54600e5482611d6e9190613d93565b1115611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690613aee565b60405180910390fd5b80600854611dbd9190613e1a565b3414611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df5906139ce565b60405180910390fd5b60005b81811015611e5e576000600c549050611e1a33826121ea565b600c6000815480929190611e2d90613fc1565b9190505550600e6000815480929190611e4590613fc1565b9190505550508080611e5690613fc1565b915050611e01565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853382604051611e909291906138c6565b60405180910390a150565b600d5481565b611ea96121e2565b73ffffffffffffffffffffffffffffffffffffffff16611ec76117f5565b73ffffffffffffffffffffffffffffffffffffffff1614611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1490613b8e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611f63573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120026121e2565b73ffffffffffffffffffffffffffffffffffffffff166120206117f5565b73ffffffffffffffffffffffffffffffffffffffff1614612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90613b8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd9061396e565b60405180910390fd5b6120ef81612667565b50565b6120fa6121e2565b73ffffffffffffffffffffffffffffffffffffffff166121186117f5565b73ffffffffffffffffffffffffffffffffffffffff161461216e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216590613b8e565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b61220482826040518060200160405280600081525061297c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122e7836113a0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061233882612208565b612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90613a2e565b60405180910390fd5b6000612382836113a0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123f157508373ffffffffffffffffffffffffffffffffffffffff166123d984610cdc565b73ffffffffffffffffffffffffffffffffffffffff16145b8061240257506124018185611f66565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661242b826113a0565b73ffffffffffffffffffffffffffffffffffffffff1614612481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247890613bae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e8906139ee565b60405180910390fd5b6124fc8383836129d7565b612507600082612274565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125579190613e74565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ae9190613d93565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61273884848461240b565b612744848484846129dc565b612783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277a9061394e565b60405180910390fd5b50505050565b60606007805461279890613f5e565b80601f01602080910402602001604051908101604052809291908181526020018280546127c490613f5e565b80156128115780601f106127e657610100808354040283529160200191612811565b820191906000526020600020905b8154815290600101906020018083116127f457829003601f168201915b5050505050905090565b60606000821415612863576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612977565b600082905060005b6000821461289557808061287e90613fc1565b915050600a8261288e9190613de9565b915061286b565b60008167ffffffffffffffff8111156128b1576128b06140f7565b5b6040519080825280601f01601f1916602001820160405280156128e35781602001600182028036833780820191505090505b5090505b60008514612970576001826128fc9190613e74565b9150600a8561290b919061400a565b60306129179190613d93565b60f81b81838151811061292d5761292c6140c8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129699190613de9565b94506128e7565b8093505050505b919050565b6129868383612b73565b61299360008484846129dc565b6129d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c99061394e565b60405180910390fd5b505050565b505050565b60006129fd8473ffffffffffffffffffffffffffffffffffffffff16612d41565b15612b66578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a266121e2565b8786866040518563ffffffff1660e01b8152600401612a48949392919061387a565b602060405180830381600087803b158015612a6257600080fd5b505af1925050508015612a9357506040513d601f19601f82011682018060405250810190612a9091906132f7565b60015b612b16573d8060008114612ac3576040519150601f19603f3d011682016040523d82523d6000602084013e612ac8565b606091505b50600081511415612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b059061394e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b6b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bda90613b2e565b60405180910390fd5b612bec81612208565b15612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c239061398e565b60405180910390fd5b612c38600083836129d7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c889190613d93565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612d6090613f5e565b90600052602060002090601f016020900481019282612d825760008555612dc9565b82601f10612d9b57803560ff1916838001178555612dc9565b82800160010185558215612dc9579182015b82811115612dc8578235825591602001919060010190612dad565b5b509050612dd69190612dda565b5090565b5b80821115612df3576000816000905550600101612ddb565b5090565b6000612e0a612e0584613c8e565b613c69565b90508083825260208201905082856020860282011115612e2d57612e2c614130565b5b60005b85811015612e5d5781612e438882612f19565b845260208401935060208301925050600181019050612e30565b5050509392505050565b6000612e7a612e7584613cba565b613c69565b90508083825260208201905082856020860282011115612e9d57612e9c614130565b5b60005b85811015612ecd5781612eb3888261304d565b845260208401935060208301925050600181019050612ea0565b5050509392505050565b6000612eea612ee584613ce6565b613c69565b905082815260208101848484011115612f0657612f05614135565b5b612f11848285613f1c565b509392505050565b600081359050612f288161478d565b92915050565b600082601f830112612f4357612f4261412b565b5b8135612f53848260208601612df7565b91505092915050565b600082601f830112612f7157612f7061412b565b5b8135612f81848260208601612e67565b91505092915050565b600081359050612f99816147a4565b92915050565b600081359050612fae816147bb565b92915050565b600081519050612fc3816147bb565b92915050565b600082601f830112612fde57612fdd61412b565b5b8135612fee848260208601612ed7565b91505092915050565b60008083601f84011261300d5761300c61412b565b5b8235905067ffffffffffffffff81111561302a57613029614126565b5b60208301915083600182028301111561304657613045614130565b5b9250929050565b60008135905061305c816147d2565b92915050565b6000602082840312156130785761307761413f565b5b600061308684828501612f19565b91505092915050565b600080604083850312156130a6576130a561413f565b5b60006130b485828601612f19565b92505060206130c585828601612f19565b9150509250929050565b6000806000606084860312156130e8576130e761413f565b5b60006130f686828701612f19565b935050602061310786828701612f19565b92505060406131188682870161304d565b9150509250925092565b6000806000806080858703121561313c5761313b61413f565b5b600061314a87828801612f19565b945050602061315b87828801612f19565b935050604061316c8782880161304d565b925050606085013567ffffffffffffffff81111561318d5761318c61413a565b5b61319987828801612fc9565b91505092959194509250565b600080604083850312156131bc576131bb61413f565b5b60006131ca85828601612f19565b92505060206131db85828601612f8a565b9150509250929050565b600080604083850312156131fc576131fb61413f565b5b600061320a85828601612f19565b925050602061321b8582860161304d565b9150509250929050565b6000806040838503121561323c5761323b61413f565b5b600083013567ffffffffffffffff81111561325a5761325961413a565b5b61326685828601612f2e565b925050602083013567ffffffffffffffff8111156132875761328661413a565b5b61329385828601612f5c565b9150509250929050565b6000602082840312156132b3576132b261413f565b5b60006132c184828501612f8a565b91505092915050565b6000602082840312156132e0576132df61413f565b5b60006132ee84828501612f9f565b91505092915050565b60006020828403121561330d5761330c61413f565b5b600061331b84828501612fb4565b91505092915050565b6000806020838503121561333b5761333a61413f565b5b600083013567ffffffffffffffff8111156133595761335861413a565b5b61336585828601612ff7565b92509250509250929050565b6000602082840312156133875761338661413f565b5b60006133958482850161304d565b91505092915050565b60006133aa838361381d565b60208301905092915050565b6133bf81613ea8565b82525050565b60006133d082613d27565b6133da8185613d55565b93506133e583613d17565b8060005b838110156134165781516133fd888261339e565b975061340883613d48565b9250506001810190506133e9565b5085935050505092915050565b61342c81613eba565b82525050565b600061343d82613d32565b6134478185613d66565b9350613457818560208601613f2b565b61346081614144565b840191505092915050565b600061347682613d3d565b6134808185613d77565b9350613490818560208601613f2b565b61349981614144565b840191505092915050565b60006134af82613d3d565b6134b98185613d88565b93506134c9818560208601613f2b565b80840191505092915050565b60006134e2603283613d77565b91506134ed82614155565b604082019050919050565b6000613505602683613d77565b9150613510826141a4565b604082019050919050565b6000613528601c83613d77565b9150613533826141f3565b602082019050919050565b600061354b602483613d77565b91506135568261421c565b604082019050919050565b600061356e601683613d77565b91506135798261426b565b602082019050919050565b6000613591602483613d77565b915061359c82614294565b604082019050919050565b60006135b4601983613d77565b91506135bf826142e3565b602082019050919050565b60006135d7602c83613d77565b91506135e28261430c565b604082019050919050565b60006135fa602083613d77565b91506136058261435b565b602082019050919050565b600061361d602183613d77565b915061362882614384565b604082019050919050565b6000613640603883613d77565b915061364b826143d3565b604082019050919050565b6000613663602a83613d77565b915061366e82614422565b604082019050919050565b6000613686602983613d77565b915061369182614471565b604082019050919050565b60006136a9602083613d77565b91506136b4826144c0565b602082019050919050565b60006136cc602883613d77565b91506136d7826144e9565b604082019050919050565b60006136ef602083613d77565b91506136fa82614538565b602082019050919050565b6000613712601f83613d77565b915061371d82614561565b602082019050919050565b6000613735602c83613d77565b91506137408261458a565b604082019050919050565b6000613758602083613d77565b9150613763826145d9565b602082019050919050565b600061377b602983613d77565b915061378682614602565b604082019050919050565b600061379e602f83613d77565b91506137a982614651565b604082019050919050565b60006137c1602183613d77565b91506137cc826146a0565b604082019050919050565b60006137e4602183613d77565b91506137ef826146ef565b604082019050919050565b6000613807603183613d77565b91506138128261473e565b604082019050919050565b61382681613f12565b82525050565b61383581613f12565b82525050565b600061384782856134a4565b915061385382846134a4565b91508190509392505050565b600060208201905061387460008301846133b6565b92915050565b600060808201905061388f60008301876133b6565b61389c60208301866133b6565b6138a9604083018561382c565b81810360608301526138bb8184613432565b905095945050505050565b60006040820190506138db60008301856133b6565b6138e8602083018461382c565b9392505050565b6000602082019050818103600083015261390981846133c5565b905092915050565b60006020820190506139266000830184613423565b92915050565b60006020820190508181036000830152613946818461346b565b905092915050565b60006020820190508181036000830152613967816134d5565b9050919050565b60006020820190508181036000830152613987816134f8565b9050919050565b600060208201905081810360008301526139a78161351b565b9050919050565b600060208201905081810360008301526139c78161353e565b9050919050565b600060208201905081810360008301526139e781613561565b9050919050565b60006020820190508181036000830152613a0781613584565b9050919050565b60006020820190508181036000830152613a27816135a7565b9050919050565b60006020820190508181036000830152613a47816135ca565b9050919050565b60006020820190508181036000830152613a67816135ed565b9050919050565b60006020820190508181036000830152613a8781613610565b9050919050565b60006020820190508181036000830152613aa781613633565b9050919050565b60006020820190508181036000830152613ac781613656565b9050919050565b60006020820190508181036000830152613ae781613679565b9050919050565b60006020820190508181036000830152613b078161369c565b9050919050565b60006020820190508181036000830152613b27816136bf565b9050919050565b60006020820190508181036000830152613b47816136e2565b9050919050565b60006020820190508181036000830152613b6781613705565b9050919050565b60006020820190508181036000830152613b8781613728565b9050919050565b60006020820190508181036000830152613ba78161374b565b9050919050565b60006020820190508181036000830152613bc78161376e565b9050919050565b60006020820190508181036000830152613be781613791565b9050919050565b60006020820190508181036000830152613c07816137b4565b9050919050565b60006020820190508181036000830152613c27816137d7565b9050919050565b60006020820190508181036000830152613c47816137fa565b9050919050565b6000602082019050613c63600083018461382c565b92915050565b6000613c73613c84565b9050613c7f8282613f90565b919050565b6000604051905090565b600067ffffffffffffffff821115613ca957613ca86140f7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613cd557613cd46140f7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d0157613d006140f7565b5b613d0a82614144565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9e82613f12565b9150613da983613f12565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dde57613ddd61403b565b5b828201905092915050565b6000613df482613f12565b9150613dff83613f12565b925082613e0f57613e0e61406a565b5b828204905092915050565b6000613e2582613f12565b9150613e3083613f12565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6957613e6861403b565b5b828202905092915050565b6000613e7f82613f12565b9150613e8a83613f12565b925082821015613e9d57613e9c61403b565b5b828203905092915050565b6000613eb382613ef2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f49578082015181840152602081019050613f2e565b83811115613f58576000848401525b50505050565b60006002820490506001821680613f7657607f821691505b60208210811415613f8a57613f89614099565b5b50919050565b613f9982614144565b810181811067ffffffffffffffff82111715613fb857613fb76140f7565b5b80604052505050565b6000613fcc82613f12565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fff57613ffe61403b565b5b600182019050919050565b600061401582613f12565b915061402083613f12565b9250826140305761402f61406a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20436c61696d206973206e6f7420616374697665600082015250565b7f535550504c593a2056616c7565206578636565647320436c61696d537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c756520657863656564732053616c65537570706c79600082015250565b7f5452414e53414354494f4e3a20596f752063616e277420636c61696d2074686160008201527f7420616d6f756e74000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61479681613ea8565b81146147a157600080fd5b50565b6147ad81613eba565b81146147b857600080fd5b50565b6147c481613ec6565b81146147cf57600080fd5b50565b6147db81613f12565b81146147e657600080fd5b5056fea26469706673582212200757cd421d315c8fd0f7512b7a96662ab7a4353692f1545992551d095c819c0164736f6c63430008060033

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063715018a611610139578063affed0e0116100b6578063d96a094a1161007a578063d96a094a146108a1578063e834a834146108bd578063e8cc00ad146108e8578063e985e9c5146108ff578063f2fde38b1461093c578063f7ea7a3d1461096557610251565b8063affed0e0146107bc578063b88d4fde146107e7578063bc33718214610810578063c87b56dd14610839578063d4a6a2fd1461087657610251565b806391b7f5ed116100fd57806391b7f5ed146106e957806395d89b4114610712578063a035b1fe1461073d578063a22cb46514610768578063a96af0f41461079157610251565b8063715018a61461062a57806373417b09146106415780637437681e1461066a578063841718a6146106955780638da5cb5b146106be57610251565b8063276f0934116101d257806342842e0e1161019657806342842e0e1461050857806347002d1d146105315780636352211e1461055c57806365adb9531461059957806368428a1b146105c257806370a08231146105ed57610251565b8063276f09341461041e57806329265eff1461045b57806330176e131461049857806334976b9b146104c1578063379607f5146104ec57610251565b8063095ea7b311610219578063095ea7b31461034d5780630ad29ec31461037657806318160ddd146103a157806322e8d8cd146103cc57806323b872dd146103f557610251565b806301ffc9a71461025657806304db5eed14610293578063050225ea146102bc57806306fdde03146102e5578063081812fc14610310575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906132ca565b61098e565b60405161028a9190613911565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613371565b610a70565b005b3480156102c857600080fd5b506102e360048036038101906102de91906131e5565b610af6565b005b3480156102f157600080fd5b506102fa610c4a565b604051610307919061392c565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613371565b610cdc565b604051610344919061385f565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906131e5565b610d61565b005b34801561038257600080fd5b5061038b610e79565b6040516103989190613c4e565b60405180910390f35b3480156103ad57600080fd5b506103b6610e7f565b6040516103c39190613c4e565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613371565b610e85565b005b34801561040157600080fd5b5061041c600480360381019061041791906130cf565b610f0b565b005b34801561042a57600080fd5b5061044560048036038101906104409190613062565b610f6b565b60405161045291906138ef565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190613062565b611059565b60405161048f9190613c4e565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613324565b611071565b005b3480156104cd57600080fd5b506104d6611103565b6040516104e39190613c4e565b60405180910390f35b61050660048036038101906105019190613371565b611109565b005b34801561051457600080fd5b5061052f600480360381019061052a91906130cf565b611370565b005b34801561053d57600080fd5b50610546611390565b60405161055391906138ef565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190613371565b6113a0565b604051610590919061385f565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190613225565b611452565b005b3480156105ce57600080fd5b506105d761156a565b6040516105e49190613911565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190613062565b61157d565b6040516106219190613c4e565b60405180910390f35b34801561063657600080fd5b5061063f611635565b005b34801561064d57600080fd5b506106686004803603810190610663919061329d565b6116bd565b005b34801561067657600080fd5b5061067f611756565b60405161068c9190613c4e565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b7919061329d565b61175c565b005b3480156106ca57600080fd5b506106d36117f5565b6040516106e0919061385f565b60405180910390f35b3480156106f557600080fd5b50610710600480360381019061070b9190613371565b61181f565b005b34801561071e57600080fd5b506107276118a5565b604051610734919061392c565b60405180910390f35b34801561074957600080fd5b50610752611937565b60405161075f9190613c4e565b60405180910390f35b34801561077457600080fd5b5061078f600480360381019061078a91906131a5565b61193d565b005b34801561079d57600080fd5b506107a6611abe565b6040516107b39190613c4e565b60405180910390f35b3480156107c857600080fd5b506107d1611ac4565b6040516107de9190613c4e565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190613122565b611aca565b005b34801561081c57600080fd5b5061083760048036038101906108329190613371565b611b2c565b005b34801561084557600080fd5b50610860600480360381019061085b9190613371565b611bb2565b60405161086d919061392c565b60405180910390f35b34801561088257600080fd5b5061088b611c59565b6040516108989190613911565b60405180910390f35b6108bb60048036038101906108b69190613371565b611c6c565b005b3480156108c957600080fd5b506108d2611e9b565b6040516108df9190613c4e565b60405180910390f35b3480156108f457600080fd5b506108fd611ea1565b005b34801561090b57600080fd5b506109266004803603810190610921919061308f565b611f66565b6040516109339190613911565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613062565b611ffa565b005b34801561097157600080fd5b5061098c60048036038101906109879190613371565b6120f2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a695750610a6882612178565b5b9050919050565b610a786121e2565b73ffffffffffffffffffffffffffffffffffffffff16610a966117f5565b73ffffffffffffffffffffffffffffffffffffffff1614610aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae390613b8e565b60405180910390fd5b80600b8190555050565b610afe6121e2565b73ffffffffffffffffffffffffffffffffffffffff16610b1c6117f5565b73ffffffffffffffffffffffffffffffffffffffff1614610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990613b8e565b60405180910390fd5b600954600c5482610b839190613d93565b1115610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90613c0e565b60405180910390fd5b60005b81811015610c0c576000600c549050610be084826121ea565b600c6000815480929190610bf390613fc1565b9190505550508080610c0490613fc1565b915050610bc7565b507f2118eda2a5fcc2e5f909a608477a856272adadcb48e1373747c51d2d3f6fc2ef8282604051610c3e9291906138c6565b60405180910390a15050565b606060008054610c5990613f5e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8590613f5e565b8015610cd25780601f10610ca757610100808354040283529160200191610cd2565b820191906000526020600020905b815481529060010190602001808311610cb557829003601f168201915b5050505050905090565b6000610ce782612208565b610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90613b6e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d6c826113a0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613bee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dfc6121e2565b73ffffffffffffffffffffffffffffffffffffffff161480610e2b5750610e2a81610e256121e2565b611f66565b5b610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6190613a8e565b60405180910390fd5b610e748383612274565b505050565b600a5481565b60095481565b610e8d6121e2565b73ffffffffffffffffffffffffffffffffffffffff16610eab6117f5565b73ffffffffffffffffffffffffffffffffffffffff1614610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890613b8e565b60405180910390fd5b80600a8190555050565b610f1c610f166121e2565b8261232d565b610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613c2e565b60405180910390fd5b610f6683838361240b565b505050565b60606000610f788361157d565b67ffffffffffffffff811115610f9157610f906140f7565b5b604051908082528060200260200182016040528015610fbf5781602001602082028036833780820191505090505b5090506000805b600c5481101561104e578473ffffffffffffffffffffffffffffffffffffffff16610ff0826113a0565b73ffffffffffffffffffffffffffffffffffffffff16141561103b57808383815181106110205761101f6140c8565b5b602002602001018181525050818061103790613fc1565b9250505b808061104690613fc1565b915050610fc6565b508192505050919050565b60106020528060005260406000206000915090505481565b6110796121e2565b73ffffffffffffffffffffffffffffffffffffffff166110976117f5565b73ffffffffffffffffffffffffffffffffffffffff16146110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490613b8e565b60405180910390fd5b8181600791906110fe929190612d54565b505050565b600e5481565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660159054906101000a900460ff1661119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390613a4e565b60405180910390fd5b600081116111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690613b0e565b60405180910390fd5b600954600c54836111f09190613d93565b1115611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890613c0e565b60405180910390fd5b600a54600d54836112429190613d93565b1115611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90613a6e565b60405180910390fd5b818161128f9190613e74565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b82811015611332576000600c5490506112ee33826121ea565b600c600081548092919061130190613fc1565b9190505550600d600081548092919061131990613fc1565b919050555050808061132a90613fc1565b9150506112d5565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688533836040516113649291906138c6565b60405180910390a15050565b61138b83838360405180602001604052806000815250611aca565b505050565b606061139b32610f6b565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090613ace565b60405180910390fd5b80915050919050565b61145a6121e2565b73ffffffffffffffffffffffffffffffffffffffff166114786117f5565b73ffffffffffffffffffffffffffffffffffffffff16146114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613b8e565b60405180910390fd5b60005b8251811015611565578181815181106114ed576114ec6140c8565b5b60200260200101516010600085848151811061150c5761150b6140c8565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061155d90613fc1565b9150506114d1565b505050565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590613aae565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61163d6121e2565b73ffffffffffffffffffffffffffffffffffffffff1661165b6117f5565b73ffffffffffffffffffffffffffffffffffffffff16146116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890613b8e565b60405180910390fd5b6116bb6000612667565b565b6116c56121e2565b73ffffffffffffffffffffffffffffffffffffffff166116e36117f5565b73ffffffffffffffffffffffffffffffffffffffff1614611739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173090613b8e565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b600f5481565b6117646121e2565b73ffffffffffffffffffffffffffffffffffffffff166117826117f5565b73ffffffffffffffffffffffffffffffffffffffff16146117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf90613b8e565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118276121e2565b73ffffffffffffffffffffffffffffffffffffffff166118456117f5565b73ffffffffffffffffffffffffffffffffffffffff161461189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189290613b8e565b60405180910390fd5b8060088190555050565b6060600180546118b490613f5e565b80601f01602080910402602001604051908101604052809291908181526020018280546118e090613f5e565b801561192d5780601f106119025761010080835404028352916020019161192d565b820191906000526020600020905b81548152906001019060200180831161191057829003601f168201915b5050505050905090565b60085481565b6119456121e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613a0e565b60405180910390fd5b80600560006119c06121e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a6d6121e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab29190613911565b60405180910390a35050565b600b5481565b600c5481565b611adb611ad56121e2565b8361232d565b611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1190613c2e565b60405180910390fd5b611b268484848461272d565b50505050565b611b346121e2565b73ffffffffffffffffffffffffffffffffffffffff16611b526117f5565b73ffffffffffffffffffffffffffffffffffffffff1614611ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9f90613b8e565b60405180910390fd5b80600f8190555050565b6060611bbd82612208565b611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390613bce565b60405180910390fd5b6000611c06612789565b90506000815111611c265760405180602001604052806000815250611c51565b80611c308461281b565b604051602001611c4192919061383b565b6040516020818303038152906040525b915050919050565b600660159054906101000a900460ff1681565b600660149054906101000a900460ff16611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb290613b4e565b60405180910390fd5b600f5481111580611ccc5750600181105b611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d02906139ae565b60405180910390fd5b600954600c5482611d1c9190613d93565b1115611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5490613c0e565b60405180910390fd5b600b54600e5482611d6e9190613d93565b1115611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690613aee565b60405180910390fd5b80600854611dbd9190613e1a565b3414611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df5906139ce565b60405180910390fd5b60005b81811015611e5e576000600c549050611e1a33826121ea565b600c6000815480929190611e2d90613fc1565b9190505550600e6000815480929190611e4590613fc1565b9190505550508080611e5690613fc1565b915050611e01565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968853382604051611e909291906138c6565b60405180910390a150565b600d5481565b611ea96121e2565b73ffffffffffffffffffffffffffffffffffffffff16611ec76117f5565b73ffffffffffffffffffffffffffffffffffffffff1614611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1490613b8e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611f63573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120026121e2565b73ffffffffffffffffffffffffffffffffffffffff166120206117f5565b73ffffffffffffffffffffffffffffffffffffffff1614612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90613b8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd9061396e565b60405180910390fd5b6120ef81612667565b50565b6120fa6121e2565b73ffffffffffffffffffffffffffffffffffffffff166121186117f5565b73ffffffffffffffffffffffffffffffffffffffff161461216e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216590613b8e565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b61220482826040518060200160405280600081525061297c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122e7836113a0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061233882612208565b612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90613a2e565b60405180910390fd5b6000612382836113a0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123f157508373ffffffffffffffffffffffffffffffffffffffff166123d984610cdc565b73ffffffffffffffffffffffffffffffffffffffff16145b8061240257506124018185611f66565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661242b826113a0565b73ffffffffffffffffffffffffffffffffffffffff1614612481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247890613bae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e8906139ee565b60405180910390fd5b6124fc8383836129d7565b612507600082612274565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125579190613e74565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ae9190613d93565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61273884848461240b565b612744848484846129dc565b612783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277a9061394e565b60405180910390fd5b50505050565b60606007805461279890613f5e565b80601f01602080910402602001604051908101604052809291908181526020018280546127c490613f5e565b80156128115780601f106127e657610100808354040283529160200191612811565b820191906000526020600020905b8154815290600101906020018083116127f457829003601f168201915b5050505050905090565b60606000821415612863576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612977565b600082905060005b6000821461289557808061287e90613fc1565b915050600a8261288e9190613de9565b915061286b565b60008167ffffffffffffffff8111156128b1576128b06140f7565b5b6040519080825280601f01601f1916602001820160405280156128e35781602001600182028036833780820191505090505b5090505b60008514612970576001826128fc9190613e74565b9150600a8561290b919061400a565b60306129179190613d93565b60f81b81838151811061292d5761292c6140c8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129699190613de9565b94506128e7565b8093505050505b919050565b6129868383612b73565b61299360008484846129dc565b6129d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c99061394e565b60405180910390fd5b505050565b505050565b60006129fd8473ffffffffffffffffffffffffffffffffffffffff16612d41565b15612b66578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a266121e2565b8786866040518563ffffffff1660e01b8152600401612a48949392919061387a565b602060405180830381600087803b158015612a6257600080fd5b505af1925050508015612a9357506040513d601f19601f82011682018060405250810190612a9091906132f7565b60015b612b16573d8060008114612ac3576040519150601f19603f3d011682016040523d82523d6000602084013e612ac8565b606091505b50600081511415612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b059061394e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b6b565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bda90613b2e565b60405180910390fd5b612bec81612208565b15612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c239061398e565b60405180910390fd5b612c38600083836129d7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c889190613d93565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612d6090613f5e565b90600052602060002090601f016020900481019282612d825760008555612dc9565b82601f10612d9b57803560ff1916838001178555612dc9565b82800160010185558215612dc9579182015b82811115612dc8578235825591602001919060010190612dad565b5b509050612dd69190612dda565b5090565b5b80821115612df3576000816000905550600101612ddb565b5090565b6000612e0a612e0584613c8e565b613c69565b90508083825260208201905082856020860282011115612e2d57612e2c614130565b5b60005b85811015612e5d5781612e438882612f19565b845260208401935060208301925050600181019050612e30565b5050509392505050565b6000612e7a612e7584613cba565b613c69565b90508083825260208201905082856020860282011115612e9d57612e9c614130565b5b60005b85811015612ecd5781612eb3888261304d565b845260208401935060208301925050600181019050612ea0565b5050509392505050565b6000612eea612ee584613ce6565b613c69565b905082815260208101848484011115612f0657612f05614135565b5b612f11848285613f1c565b509392505050565b600081359050612f288161478d565b92915050565b600082601f830112612f4357612f4261412b565b5b8135612f53848260208601612df7565b91505092915050565b600082601f830112612f7157612f7061412b565b5b8135612f81848260208601612e67565b91505092915050565b600081359050612f99816147a4565b92915050565b600081359050612fae816147bb565b92915050565b600081519050612fc3816147bb565b92915050565b600082601f830112612fde57612fdd61412b565b5b8135612fee848260208601612ed7565b91505092915050565b60008083601f84011261300d5761300c61412b565b5b8235905067ffffffffffffffff81111561302a57613029614126565b5b60208301915083600182028301111561304657613045614130565b5b9250929050565b60008135905061305c816147d2565b92915050565b6000602082840312156130785761307761413f565b5b600061308684828501612f19565b91505092915050565b600080604083850312156130a6576130a561413f565b5b60006130b485828601612f19565b92505060206130c585828601612f19565b9150509250929050565b6000806000606084860312156130e8576130e761413f565b5b60006130f686828701612f19565b935050602061310786828701612f19565b92505060406131188682870161304d565b9150509250925092565b6000806000806080858703121561313c5761313b61413f565b5b600061314a87828801612f19565b945050602061315b87828801612f19565b935050604061316c8782880161304d565b925050606085013567ffffffffffffffff81111561318d5761318c61413a565b5b61319987828801612fc9565b91505092959194509250565b600080604083850312156131bc576131bb61413f565b5b60006131ca85828601612f19565b92505060206131db85828601612f8a565b9150509250929050565b600080604083850312156131fc576131fb61413f565b5b600061320a85828601612f19565b925050602061321b8582860161304d565b9150509250929050565b6000806040838503121561323c5761323b61413f565b5b600083013567ffffffffffffffff81111561325a5761325961413a565b5b61326685828601612f2e565b925050602083013567ffffffffffffffff8111156132875761328661413a565b5b61329385828601612f5c565b9150509250929050565b6000602082840312156132b3576132b261413f565b5b60006132c184828501612f8a565b91505092915050565b6000602082840312156132e0576132df61413f565b5b60006132ee84828501612f9f565b91505092915050565b60006020828403121561330d5761330c61413f565b5b600061331b84828501612fb4565b91505092915050565b6000806020838503121561333b5761333a61413f565b5b600083013567ffffffffffffffff8111156133595761335861413a565b5b61336585828601612ff7565b92509250509250929050565b6000602082840312156133875761338661413f565b5b60006133958482850161304d565b91505092915050565b60006133aa838361381d565b60208301905092915050565b6133bf81613ea8565b82525050565b60006133d082613d27565b6133da8185613d55565b93506133e583613d17565b8060005b838110156134165781516133fd888261339e565b975061340883613d48565b9250506001810190506133e9565b5085935050505092915050565b61342c81613eba565b82525050565b600061343d82613d32565b6134478185613d66565b9350613457818560208601613f2b565b61346081614144565b840191505092915050565b600061347682613d3d565b6134808185613d77565b9350613490818560208601613f2b565b61349981614144565b840191505092915050565b60006134af82613d3d565b6134b98185613d88565b93506134c9818560208601613f2b565b80840191505092915050565b60006134e2603283613d77565b91506134ed82614155565b604082019050919050565b6000613505602683613d77565b9150613510826141a4565b604082019050919050565b6000613528601c83613d77565b9150613533826141f3565b602082019050919050565b600061354b602483613d77565b91506135568261421c565b604082019050919050565b600061356e601683613d77565b91506135798261426b565b602082019050919050565b6000613591602483613d77565b915061359c82614294565b604082019050919050565b60006135b4601983613d77565b91506135bf826142e3565b602082019050919050565b60006135d7602c83613d77565b91506135e28261430c565b604082019050919050565b60006135fa602083613d77565b91506136058261435b565b602082019050919050565b600061361d602183613d77565b915061362882614384565b604082019050919050565b6000613640603883613d77565b915061364b826143d3565b604082019050919050565b6000613663602a83613d77565b915061366e82614422565b604082019050919050565b6000613686602983613d77565b915061369182614471565b604082019050919050565b60006136a9602083613d77565b91506136b4826144c0565b602082019050919050565b60006136cc602883613d77565b91506136d7826144e9565b604082019050919050565b60006136ef602083613d77565b91506136fa82614538565b602082019050919050565b6000613712601f83613d77565b915061371d82614561565b602082019050919050565b6000613735602c83613d77565b91506137408261458a565b604082019050919050565b6000613758602083613d77565b9150613763826145d9565b602082019050919050565b600061377b602983613d77565b915061378682614602565b604082019050919050565b600061379e602f83613d77565b91506137a982614651565b604082019050919050565b60006137c1602183613d77565b91506137cc826146a0565b604082019050919050565b60006137e4602183613d77565b91506137ef826146ef565b604082019050919050565b6000613807603183613d77565b91506138128261473e565b604082019050919050565b61382681613f12565b82525050565b61383581613f12565b82525050565b600061384782856134a4565b915061385382846134a4565b91508190509392505050565b600060208201905061387460008301846133b6565b92915050565b600060808201905061388f60008301876133b6565b61389c60208301866133b6565b6138a9604083018561382c565b81810360608301526138bb8184613432565b905095945050505050565b60006040820190506138db60008301856133b6565b6138e8602083018461382c565b9392505050565b6000602082019050818103600083015261390981846133c5565b905092915050565b60006020820190506139266000830184613423565b92915050565b60006020820190508181036000830152613946818461346b565b905092915050565b60006020820190508181036000830152613967816134d5565b9050919050565b60006020820190508181036000830152613987816134f8565b9050919050565b600060208201905081810360008301526139a78161351b565b9050919050565b600060208201905081810360008301526139c78161353e565b9050919050565b600060208201905081810360008301526139e781613561565b9050919050565b60006020820190508181036000830152613a0781613584565b9050919050565b60006020820190508181036000830152613a27816135a7565b9050919050565b60006020820190508181036000830152613a47816135ca565b9050919050565b60006020820190508181036000830152613a67816135ed565b9050919050565b60006020820190508181036000830152613a8781613610565b9050919050565b60006020820190508181036000830152613aa781613633565b9050919050565b60006020820190508181036000830152613ac781613656565b9050919050565b60006020820190508181036000830152613ae781613679565b9050919050565b60006020820190508181036000830152613b078161369c565b9050919050565b60006020820190508181036000830152613b27816136bf565b9050919050565b60006020820190508181036000830152613b47816136e2565b9050919050565b60006020820190508181036000830152613b6781613705565b9050919050565b60006020820190508181036000830152613b8781613728565b9050919050565b60006020820190508181036000830152613ba78161374b565b9050919050565b60006020820190508181036000830152613bc78161376e565b9050919050565b60006020820190508181036000830152613be781613791565b9050919050565b60006020820190508181036000830152613c07816137b4565b9050919050565b60006020820190508181036000830152613c27816137d7565b9050919050565b60006020820190508181036000830152613c47816137fa565b9050919050565b6000602082019050613c63600083018461382c565b92915050565b6000613c73613c84565b9050613c7f8282613f90565b919050565b6000604051905090565b600067ffffffffffffffff821115613ca957613ca86140f7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613cd557613cd46140f7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d0157613d006140f7565b5b613d0a82614144565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9e82613f12565b9150613da983613f12565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dde57613ddd61403b565b5b828201905092915050565b6000613df482613f12565b9150613dff83613f12565b925082613e0f57613e0e61406a565b5b828204905092915050565b6000613e2582613f12565b9150613e3083613f12565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6957613e6861403b565b5b828202905092915050565b6000613e7f82613f12565b9150613e8a83613f12565b925082821015613e9d57613e9c61403b565b5b828203905092915050565b6000613eb382613ef2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f49578082015181840152602081019050613f2e565b83811115613f58576000848401525b50505050565b60006002820490506001821680613f7657607f821691505b60208210811415613f8a57613f89614099565b5b50919050565b613f9982614144565b810181811067ffffffffffffffff82111715613fb857613fb76140f7565b5b80604052505050565b6000613fcc82613f12565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fff57613ffe61403b565b5b600182019050919050565b600061401582613f12565b915061402083613f12565b9250826140305761402f61406a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20436c61696d206973206e6f7420616374697665600082015250565b7f535550504c593a2056616c7565206578636565647320436c61696d537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c756520657863656564732053616c65537570706c79600082015250565b7f5452414e53414354494f4e3a20596f752063616e277420636c61696d2074686160008201527f7420616d6f756e74000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61479681613ea8565b81146147a157600080fd5b50565b6147ad81613eba565b81146147b857600080fd5b50565b6147c481613ec6565b81146147cf57600080fd5b50565b6147db81613f12565b81146147e657600080fd5b5056fea26469706673582212200757cd421d315c8fd0f7512b7a96662ab7a4353692f1545992551d095c819c0164736f6c63430008060033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.