ETH Price: $3,523.52 (+0.48%)
Gas: 3 Gwei

Token

Salesmen (SAL)
 

Overview

Max Total Supply

781 SAL

Holders

111

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 SAL
0x0d9bc98adc35763c10f4eb8e35bb4e58bb26b550
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:
SalesmenTester

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Salesmen.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract SalesmenTester is ERC721A, Ownable {
    uint256 public MAX_SUPPLY = 5555;
    uint256 public MAX_MINTS = 2;
    uint256 public TEAM_RESERVED = 555;
    string public projName = "Salesmen";
    string public projSym = "SAL";
    bool public claimedReserved = false;

    bool public DROP_ACTIVE = false;
    string public uriPrefix = "";

    mapping(address => bool) public buyers;

    constructor() ERC721A(projName, projSym) {}

    function mint() public {
        require(msg.sender == tx.origin, "not allowed bots");
        require(DROP_ACTIVE, "Sale not started");
        require(totalSupply() + MAX_MINTS < MAX_SUPPLY, "Sold out");
        require(!buyers[msg.sender], "Already bought");
        buyers[msg.sender] = true;
        _safeMint(msg.sender, MAX_MINTS);
    }

    function mintReserved() external onlyOwner {
        require(!claimedReserved, "already claimed reserved");
        _safeMint(msg.sender, TEAM_RESERVED);
    }

    function flipDropState() public onlyOwner {
        DROP_ACTIVE = !DROP_ACTIVE;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(_baseURI(), Strings.toString(_tokenId)));
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setMaxMints(uint256 newMax) public onlyOwner {
        MAX_MINTS = newMax;
    }

    function setSupply(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return uriPrefix;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Nothing to withdraw");
        Address.sendValue(payable(owner()), balance);
    }

    fallback() external payable {}

    receive() external payable {}
}

File 2 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 of 12 : 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 4 of 12 : 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 12 : 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 12 : 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 12 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 8 of 12 : 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 9 of 12 : 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 10 of 12 : 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 11 of 12 : 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 12 of 12 : 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
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DROP_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"buyers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimedReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipDropState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projSym","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526115b3600855600260095561022b600a556040518060400160405280600881526020017f53616c65736d656e000000000000000000000000000000000000000000000000815250600b9080519060200190620000629291906200036b565b506040518060400160405280600381526020017f53414c0000000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000b09291906200036b565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff02191690831515021790555060405180602001604052806000815250600e90805190602001906200010e9291906200036b565b503480156200011c57600080fd5b50600b80546200012c906200041b565b80601f01602080910402602001604051908101604052809291908181526020018280546200015a906200041b565b8015620001ab5780601f106200017f57610100808354040283529160200191620001ab565b820191906000526020600020905b8154815290600101906020018083116200018d57829003601f168201915b5050505050600c8054620001bf906200041b565b80601f0160208091040260200160405190810160405280929190818152602001828054620001ed906200041b565b80156200023e5780601f1062000212576101008083540402835291602001916200023e565b820191906000526020600020905b8154815290600101906020018083116200022057829003601f168201915b505050505081600190805190602001906200025b9291906200036b565b508060029080519060200190620002749291906200036b565b505050620002976200028b6200029d60201b60201c565b620002a560201b60201c565b62000480565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000379906200041b565b90600052602060002090601f0160209004810192826200039d5760008555620003e9565b82601f10620003b857805160ff1916838001178555620003e9565b82800160010185558215620003e9579182015b82811115620003e8578251825591602001919060010190620003cb565b5b509050620003f89190620003fc565b5090565b5b8082111562000417576000816000905550600101620003fd565b5090565b600060028204905060018216806200043457607f821691505b602082108114156200044b576200044a62000451565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146e280620004906000396000f3fe6080604052600436106102085760003560e01c8063715018a611610118578063b88d4fde116100a0578063e03c69e81161006f578063e03c69e81461074b578063e985e9c514610776578063ec8c8904146107b3578063f2fde38b146107ca578063f7cd09c7146107f35761020f565b8063b88d4fde1461068f578063c87b56dd146106b8578063cce132d1146106f5578063da241d06146107205761020f565b80638da5cb5b116100e75780638da5cb5b146105bc57806395d89b41146105e757806396f8f6dd1461061257806397a993aa14610629578063a22cb465146106665761020f565b8063715018a61461052857806379c9cb7b1461053f5780637ae84f7f146105685780637ec4a659146105935761020f565b80632f745c591161019b57806342842e0e1161016a57806342842e0e1461041d5780634f6ccce71461044657806362b99ad4146104835780636352211e146104ae57806370a08231146104eb5761020f565b80632f745c591461037557806332cb6b0c146103b25780633b4c4b25146103dd5780633ccfd60b146104065761020f565b80631249c58b116101d75780631249c58b146102df57806318160ddd146102f657806323b872dd1461032157806328dc38f91461034a5761020f565b806301ffc9a71461021157806306fdde031461024e578063081812fc14610279578063095ea7b3146102b65761020f565b3661020f57005b005b34801561021d57600080fd5b506102386004803603810190610233919061314f565b61081e565b6040516102459190613763565b60405180910390f35b34801561025a57600080fd5b50610263610968565b604051610270919061377e565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b91906131f2565b6109fa565b6040516102ad91906136fc565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d8919061310f565b610a7f565b005b3480156102eb57600080fd5b506102f4610b98565b005b34801561030257600080fd5b5061030b610da0565b6040516103189190613b00565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612ff9565b610da9565b005b34801561035657600080fd5b5061035f610db9565b60405161036c9190613763565b60405180910390f35b34801561038157600080fd5b5061039c6004803603810190610397919061310f565b610dcc565b6040516103a99190613b00565b60405180910390f35b3480156103be57600080fd5b506103c7610fbe565b6040516103d49190613b00565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906131f2565b610fc4565b005b34801561041257600080fd5b5061041b61104a565b005b34801561042957600080fd5b50610444600480360381019061043f9190612ff9565b611122565b005b34801561045257600080fd5b5061046d600480360381019061046891906131f2565b611142565b60405161047a9190613b00565b60405180910390f35b34801561048f57600080fd5b50610498611195565b6040516104a5919061377e565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d091906131f2565b611223565b6040516104e291906136fc565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190612f8c565b611239565b60405161051f9190613b00565b60405180910390f35b34801561053457600080fd5b5061053d611322565b005b34801561054b57600080fd5b50610566600480360381019061056191906131f2565b6113aa565b005b34801561057457600080fd5b5061057d611430565b60405161058a9190613b00565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b591906131a9565b611436565b005b3480156105c857600080fd5b506105d16114cc565b6040516105de91906136fc565b60405180910390f35b3480156105f357600080fd5b506105fc6114f6565b604051610609919061377e565b60405180910390f35b34801561061e57600080fd5b50610627611588565b005b34801561063557600080fd5b50610650600480360381019061064b9190612f8c565b611630565b60405161065d9190613763565b60405180910390f35b34801561067257600080fd5b5061068d600480360381019061068891906130cf565b611650565b005b34801561069b57600080fd5b506106b660048036038101906106b1919061304c565b6117d1565b005b3480156106c457600080fd5b506106df60048036038101906106da91906131f2565b61182d565b6040516106ec919061377e565b60405180910390f35b34801561070157600080fd5b5061070a6118af565b6040516107179190613b00565b60405180910390f35b34801561072c57600080fd5b506107356118b5565b604051610742919061377e565b60405180910390f35b34801561075757600080fd5b50610760611943565b60405161076d919061377e565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190612fb9565b6119d1565b6040516107aa9190613763565b60405180910390f35b3480156107bf57600080fd5b506107c8611a65565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190612f8c565b611b3f565b005b3480156107ff57600080fd5b50610808611c37565b6040516108159190613763565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610961575061096082611c4a565b5b9050919050565b60606001805461097790613d61565b80601f01602080910402602001604051908101604052809291908181526020018280546109a390613d61565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000610a0582611cb4565b610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90613ae0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8a82611223565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290613a00565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1a611cc1565b73ffffffffffffffffffffffffffffffffffffffff161480610b495750610b4881610b43611cc1565b6119d1565b5b610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90613920565b60405180910390fd5b610b93838383611cc9565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90613880565b60405180910390fd5b600d60019054906101000a900460ff16610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c906138e0565b60405180910390fd5b600854600954610c63610da0565b610c6d9190613bf0565b10610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490613a20565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d31906137c0565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d9e33600954611d7b565b565b60008054905090565b610db4838383611d99565b505050565b600d60009054906101000a900460ff1681565b6000610dd783611239565b8210610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f906137a0565b60405180910390fd5b6000610e22610da0565b905060008060005b83811015610f7c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f1c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f6e5786841415610f65578195505050505050610fb8565b83806001019450505b508080600101915050610e2a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90613aa0565b60405180910390fd5b92915050565b60085481565b610fcc611cc1565b73ffffffffffffffffffffffffffffffffffffffff16610fea6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790613980565b60405180910390fd5b8060088190555050565b611052611cc1565b73ffffffffffffffffffffffffffffffffffffffff166110706114cc565b73ffffffffffffffffffffffffffffffffffffffff16146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613980565b60405180910390fd5b60004790506000811161110e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611105906137e0565b60405180910390fd5b61111f6111196114cc565b826122d9565b50565b61113d838383604051806020016040528060008152506117d1565b505050565b600061114c610da0565b821061118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490613840565b60405180910390fd5b819050919050565b600e80546111a290613d61565b80601f01602080910402602001604051908101604052809291908181526020018280546111ce90613d61565b801561121b5780601f106111f05761010080835404028352916020019161121b565b820191906000526020600020905b8154815290600101906020018083116111fe57829003601f168201915b505050505081565b600061122e826123cd565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613940565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61132a611cc1565b73ffffffffffffffffffffffffffffffffffffffff166113486114cc565b73ffffffffffffffffffffffffffffffffffffffff161461139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590613980565b60405180910390fd5b6113a86000612567565b565b6113b2611cc1565b73ffffffffffffffffffffffffffffffffffffffff166113d06114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613980565b60405180910390fd5b8060098190555050565b600a5481565b61143e611cc1565b73ffffffffffffffffffffffffffffffffffffffff1661145c6114cc565b73ffffffffffffffffffffffffffffffffffffffff16146114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990613980565b60405180910390fd5b80600e90805190602001906114c8929190612d66565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461150590613d61565b80601f016020809104026020016040519081016040528092919081815260200182805461153190613d61565b801561157e5780601f106115535761010080835404028352916020019161157e565b820191906000526020600020905b81548152906001019060200180831161156157829003601f168201915b5050505050905090565b611590611cc1565b73ffffffffffffffffffffffffffffffffffffffff166115ae6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90613980565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915054906101000a900460ff1681565b611658611cc1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd906139c0565b60405180910390fd5b80600660006116d3611cc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611780611cc1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117c59190613763565b60405180910390a35050565b6117dc848484611d99565b6117e88484848461262d565b611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e90613a40565b60405180910390fd5b50505050565b606061183882611cb4565b611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e906139a0565b60405180910390fd5b61187f6127c4565b61188883612856565b6040516020016118999291906136c3565b6040516020818303038152906040529050919050565b60095481565b600c80546118c290613d61565b80601f01602080910402602001604051908101604052809291908181526020018280546118ee90613d61565b801561193b5780601f106119105761010080835404028352916020019161193b565b820191906000526020600020905b81548152906001019060200180831161191e57829003601f168201915b505050505081565b600b805461195090613d61565b80601f016020809104026020016040519081016040528092919081815260200182805461197c90613d61565b80156119c95780601f1061199e576101008083540402835291602001916119c9565b820191906000526020600020905b8154815290600101906020018083116119ac57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a6d611cc1565b73ffffffffffffffffffffffffffffffffffffffff16611a8b6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad890613980565b60405180910390fd5b600d60009054906101000a900460ff1615611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890613900565b60405180910390fd5b611b3d33600a54611d7b565b565b611b47611cc1565b73ffffffffffffffffffffffffffffffffffffffff16611b656114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb290613980565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290613800565b60405180910390fd5b611c3481612567565b50565b600d60019054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611d958282604051806020016040528060008152506129b7565b5050565b6000611da4826123cd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dcb611cc1565b73ffffffffffffffffffffffffffffffffffffffff161480611e275750611df0611cc1565b73ffffffffffffffffffffffffffffffffffffffff16611e0f846109fa565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e435750611e428260000151611e3d611cc1565b6119d1565b5b905080611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c906139e0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee90613960565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90613860565b60405180910390fd5b611f7485858560016129c9565b611f846000848460000151611cc9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612269576121c881611cb4565b156122685782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122d285858560016129cf565b5050505050565b8047101561231c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612313906138c0565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612342906136e7565b60006040518083038185875af1925050503d806000811461237f576040519150601f19603f3d011682016040523d82523d6000602084013e612384565b606091505b50509050806123c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bf906138a0565b60405180910390fd5b505050565b6123d5612dec565b6123de82611cb4565b61241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241490613820565b60405180910390fd5b60008290505b60008110612526576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612517578092505050612562565b50808060019003915050612423565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255990613ac0565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061264e8473ffffffffffffffffffffffffffffffffffffffff166129d5565b156127b7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612677611cc1565b8786866040518563ffffffff1660e01b81526004016126999493929190613717565b602060405180830381600087803b1580156126b357600080fd5b505af19250505080156126e457506040513d601f19601f820116820180604052508101906126e1919061317c565b60015b612767573d8060008114612714576040519150601f19603f3d011682016040523d82523d6000602084013e612719565b606091505b5060008151141561275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275690613a40565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127bc565b600190505b949350505050565b6060600e80546127d390613d61565b80601f01602080910402602001604051908101604052809291908181526020018280546127ff90613d61565b801561284c5780601f106128215761010080835404028352916020019161284c565b820191906000526020600020905b81548152906001019060200180831161282f57829003601f168201915b5050505050905090565b6060600082141561289e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129b2565b600082905060005b600082146128d05780806128b990613dc4565b915050600a826128c99190613c46565b91506128a6565b60008167ffffffffffffffff8111156128ec576128eb613efa565b5b6040519080825280601f01601f19166020018201604052801561291e5781602001600182028036833780820191505090505b5090505b600085146129ab576001826129379190613c77565b9150600a856129469190613e0d565b60306129529190613bf0565b60f81b81838151811061296857612967613ecb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129a49190613c46565b9450612922565b8093505050505b919050565b6129c483838360016129e8565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5590613a60565b60405180910390fd5b6000841415612aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9990613a80565b60405180910390fd5b612aaf60008683876129c9565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612d4957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612d3457612cf4600088848861262d565b612d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2a90613a40565b60405180910390fd5b5b81806001019250508080600101915050612c7d565b508060008190555050612d5f60008683876129cf565b5050505050565b828054612d7290613d61565b90600052602060002090601f016020900481019282612d945760008555612ddb565b82601f10612dad57805160ff1916838001178555612ddb565b82800160010185558215612ddb579182015b82811115612dda578251825591602001919060010190612dbf565b5b509050612de89190612e26565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e3f576000816000905550600101612e27565b5090565b6000612e56612e5184613b40565b613b1b565b905082815260208101848484011115612e7257612e71613f2e565b5b612e7d848285613d1f565b509392505050565b6000612e98612e9384613b71565b613b1b565b905082815260208101848484011115612eb457612eb3613f2e565b5b612ebf848285613d1f565b509392505050565b600081359050612ed681614650565b92915050565b600081359050612eeb81614667565b92915050565b600081359050612f008161467e565b92915050565b600081519050612f158161467e565b92915050565b600082601f830112612f3057612f2f613f29565b5b8135612f40848260208601612e43565b91505092915050565b600082601f830112612f5e57612f5d613f29565b5b8135612f6e848260208601612e85565b91505092915050565b600081359050612f8681614695565b92915050565b600060208284031215612fa257612fa1613f38565b5b6000612fb084828501612ec7565b91505092915050565b60008060408385031215612fd057612fcf613f38565b5b6000612fde85828601612ec7565b9250506020612fef85828601612ec7565b9150509250929050565b60008060006060848603121561301257613011613f38565b5b600061302086828701612ec7565b935050602061303186828701612ec7565b925050604061304286828701612f77565b9150509250925092565b6000806000806080858703121561306657613065613f38565b5b600061307487828801612ec7565b945050602061308587828801612ec7565b935050604061309687828801612f77565b925050606085013567ffffffffffffffff8111156130b7576130b6613f33565b5b6130c387828801612f1b565b91505092959194509250565b600080604083850312156130e6576130e5613f38565b5b60006130f485828601612ec7565b925050602061310585828601612edc565b9150509250929050565b6000806040838503121561312657613125613f38565b5b600061313485828601612ec7565b925050602061314585828601612f77565b9150509250929050565b60006020828403121561316557613164613f38565b5b600061317384828501612ef1565b91505092915050565b60006020828403121561319257613191613f38565b5b60006131a084828501612f06565b91505092915050565b6000602082840312156131bf576131be613f38565b5b600082013567ffffffffffffffff8111156131dd576131dc613f33565b5b6131e984828501612f49565b91505092915050565b60006020828403121561320857613207613f38565b5b600061321684828501612f77565b91505092915050565b61322881613cab565b82525050565b61323781613cbd565b82525050565b600061324882613ba2565b6132528185613bb8565b9350613262818560208601613d2e565b61326b81613f3d565b840191505092915050565b600061328182613bad565b61328b8185613bd4565b935061329b818560208601613d2e565b6132a481613f3d565b840191505092915050565b60006132ba82613bad565b6132c48185613be5565b93506132d4818560208601613d2e565b80840191505092915050565b60006132ed602283613bd4565b91506132f882613f4e565b604082019050919050565b6000613310600e83613bd4565b915061331b82613f9d565b602082019050919050565b6000613333601383613bd4565b915061333e82613fc6565b602082019050919050565b6000613356602683613bd4565b915061336182613fef565b604082019050919050565b6000613379602a83613bd4565b91506133848261403e565b604082019050919050565b600061339c602383613bd4565b91506133a78261408d565b604082019050919050565b60006133bf602583613bd4565b91506133ca826140dc565b604082019050919050565b60006133e2601083613bd4565b91506133ed8261412b565b602082019050919050565b6000613405603a83613bd4565b915061341082614154565b604082019050919050565b6000613428601d83613bd4565b9150613433826141a3565b602082019050919050565b600061344b601083613bd4565b9150613456826141cc565b602082019050919050565b600061346e601883613bd4565b9150613479826141f5565b602082019050919050565b6000613491603983613bd4565b915061349c8261421e565b604082019050919050565b60006134b4602b83613bd4565b91506134bf8261426d565b604082019050919050565b60006134d7602683613bd4565b91506134e2826142bc565b604082019050919050565b60006134fa602083613bd4565b91506135058261430b565b602082019050919050565b600061351d602f83613bd4565b915061352882614334565b604082019050919050565b6000613540601a83613bd4565b915061354b82614383565b602082019050919050565b6000613563603283613bd4565b915061356e826143ac565b604082019050919050565b6000613586602283613bd4565b9150613591826143fb565b604082019050919050565b60006135a9600083613bc9565b91506135b48261444a565b600082019050919050565b60006135cc600883613bd4565b91506135d78261444d565b602082019050919050565b60006135ef603383613bd4565b91506135fa82614476565b604082019050919050565b6000613612602183613bd4565b915061361d826144c5565b604082019050919050565b6000613635602883613bd4565b915061364082614514565b604082019050919050565b6000613658602e83613bd4565b915061366382614563565b604082019050919050565b600061367b602f83613bd4565b9150613686826145b2565b604082019050919050565b600061369e602d83613bd4565b91506136a982614601565b604082019050919050565b6136bd81613d15565b82525050565b60006136cf82856132af565b91506136db82846132af565b91508190509392505050565b60006136f28261359c565b9150819050919050565b6000602082019050613711600083018461321f565b92915050565b600060808201905061372c600083018761321f565b613739602083018661321f565b61374660408301856136b4565b8181036060830152613758818461323d565b905095945050505050565b6000602082019050613778600083018461322e565b92915050565b600060208201905081810360008301526137988184613276565b905092915050565b600060208201905081810360008301526137b9816132e0565b9050919050565b600060208201905081810360008301526137d981613303565b9050919050565b600060208201905081810360008301526137f981613326565b9050919050565b6000602082019050818103600083015261381981613349565b9050919050565b600060208201905081810360008301526138398161336c565b9050919050565b600060208201905081810360008301526138598161338f565b9050919050565b60006020820190508181036000830152613879816133b2565b9050919050565b60006020820190508181036000830152613899816133d5565b9050919050565b600060208201905081810360008301526138b9816133f8565b9050919050565b600060208201905081810360008301526138d98161341b565b9050919050565b600060208201905081810360008301526138f98161343e565b9050919050565b6000602082019050818103600083015261391981613461565b9050919050565b6000602082019050818103600083015261393981613484565b9050919050565b60006020820190508181036000830152613959816134a7565b9050919050565b60006020820190508181036000830152613979816134ca565b9050919050565b60006020820190508181036000830152613999816134ed565b9050919050565b600060208201905081810360008301526139b981613510565b9050919050565b600060208201905081810360008301526139d981613533565b9050919050565b600060208201905081810360008301526139f981613556565b9050919050565b60006020820190508181036000830152613a1981613579565b9050919050565b60006020820190508181036000830152613a39816135bf565b9050919050565b60006020820190508181036000830152613a59816135e2565b9050919050565b60006020820190508181036000830152613a7981613605565b9050919050565b60006020820190508181036000830152613a9981613628565b9050919050565b60006020820190508181036000830152613ab98161364b565b9050919050565b60006020820190508181036000830152613ad98161366e565b9050919050565b60006020820190508181036000830152613af981613691565b9050919050565b6000602082019050613b1560008301846136b4565b92915050565b6000613b25613b36565b9050613b318282613d93565b919050565b6000604051905090565b600067ffffffffffffffff821115613b5b57613b5a613efa565b5b613b6482613f3d565b9050602081019050919050565b600067ffffffffffffffff821115613b8c57613b8b613efa565b5b613b9582613f3d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bfb82613d15565b9150613c0683613d15565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3b57613c3a613e3e565b5b828201905092915050565b6000613c5182613d15565b9150613c5c83613d15565b925082613c6c57613c6b613e6d565b5b828204905092915050565b6000613c8282613d15565b9150613c8d83613d15565b925082821015613ca057613c9f613e3e565b5b828203905092915050565b6000613cb682613cf5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d4c578082015181840152602081019050613d31565b83811115613d5b576000848401525b50505050565b60006002820490506001821680613d7957607f821691505b60208210811415613d8d57613d8c613e9c565b5b50919050565b613d9c82613f3d565b810181811067ffffffffffffffff82111715613dbb57613dba613efa565b5b80604052505050565b6000613dcf82613d15565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e0257613e01613e3e565b5b600182019050919050565b6000613e1882613d15565b9150613e2383613d15565b925082613e3357613e32613e6d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c726561647920626f75676874000000000000000000000000000000000000600082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420616c6c6f77656420626f747300000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f616c726561647920636c61696d65642072657365727665640000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61465981613cab565b811461466457600080fd5b50565b61467081613cbd565b811461467b57600080fd5b50565b61468781613cc9565b811461469257600080fd5b50565b61469e81613d15565b81146146a957600080fd5b5056fea26469706673582212200ada4a0d4c2b719ecb6f8593072407e11c591c2ffea9bfe96a9cdbe6f87a603564736f6c63430008060033

Deployed Bytecode

0x6080604052600436106102085760003560e01c8063715018a611610118578063b88d4fde116100a0578063e03c69e81161006f578063e03c69e81461074b578063e985e9c514610776578063ec8c8904146107b3578063f2fde38b146107ca578063f7cd09c7146107f35761020f565b8063b88d4fde1461068f578063c87b56dd146106b8578063cce132d1146106f5578063da241d06146107205761020f565b80638da5cb5b116100e75780638da5cb5b146105bc57806395d89b41146105e757806396f8f6dd1461061257806397a993aa14610629578063a22cb465146106665761020f565b8063715018a61461052857806379c9cb7b1461053f5780637ae84f7f146105685780637ec4a659146105935761020f565b80632f745c591161019b57806342842e0e1161016a57806342842e0e1461041d5780634f6ccce71461044657806362b99ad4146104835780636352211e146104ae57806370a08231146104eb5761020f565b80632f745c591461037557806332cb6b0c146103b25780633b4c4b25146103dd5780633ccfd60b146104065761020f565b80631249c58b116101d75780631249c58b146102df57806318160ddd146102f657806323b872dd1461032157806328dc38f91461034a5761020f565b806301ffc9a71461021157806306fdde031461024e578063081812fc14610279578063095ea7b3146102b65761020f565b3661020f57005b005b34801561021d57600080fd5b506102386004803603810190610233919061314f565b61081e565b6040516102459190613763565b60405180910390f35b34801561025a57600080fd5b50610263610968565b604051610270919061377e565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b91906131f2565b6109fa565b6040516102ad91906136fc565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d8919061310f565b610a7f565b005b3480156102eb57600080fd5b506102f4610b98565b005b34801561030257600080fd5b5061030b610da0565b6040516103189190613b00565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190612ff9565b610da9565b005b34801561035657600080fd5b5061035f610db9565b60405161036c9190613763565b60405180910390f35b34801561038157600080fd5b5061039c6004803603810190610397919061310f565b610dcc565b6040516103a99190613b00565b60405180910390f35b3480156103be57600080fd5b506103c7610fbe565b6040516103d49190613b00565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906131f2565b610fc4565b005b34801561041257600080fd5b5061041b61104a565b005b34801561042957600080fd5b50610444600480360381019061043f9190612ff9565b611122565b005b34801561045257600080fd5b5061046d600480360381019061046891906131f2565b611142565b60405161047a9190613b00565b60405180910390f35b34801561048f57600080fd5b50610498611195565b6040516104a5919061377e565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d091906131f2565b611223565b6040516104e291906136fc565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190612f8c565b611239565b60405161051f9190613b00565b60405180910390f35b34801561053457600080fd5b5061053d611322565b005b34801561054b57600080fd5b50610566600480360381019061056191906131f2565b6113aa565b005b34801561057457600080fd5b5061057d611430565b60405161058a9190613b00565b60405180910390f35b34801561059f57600080fd5b506105ba60048036038101906105b591906131a9565b611436565b005b3480156105c857600080fd5b506105d16114cc565b6040516105de91906136fc565b60405180910390f35b3480156105f357600080fd5b506105fc6114f6565b604051610609919061377e565b60405180910390f35b34801561061e57600080fd5b50610627611588565b005b34801561063557600080fd5b50610650600480360381019061064b9190612f8c565b611630565b60405161065d9190613763565b60405180910390f35b34801561067257600080fd5b5061068d600480360381019061068891906130cf565b611650565b005b34801561069b57600080fd5b506106b660048036038101906106b1919061304c565b6117d1565b005b3480156106c457600080fd5b506106df60048036038101906106da91906131f2565b61182d565b6040516106ec919061377e565b60405180910390f35b34801561070157600080fd5b5061070a6118af565b6040516107179190613b00565b60405180910390f35b34801561072c57600080fd5b506107356118b5565b604051610742919061377e565b60405180910390f35b34801561075757600080fd5b50610760611943565b60405161076d919061377e565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190612fb9565b6119d1565b6040516107aa9190613763565b60405180910390f35b3480156107bf57600080fd5b506107c8611a65565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190612f8c565b611b3f565b005b3480156107ff57600080fd5b50610808611c37565b6040516108159190613763565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610961575061096082611c4a565b5b9050919050565b60606001805461097790613d61565b80601f01602080910402602001604051908101604052809291908181526020018280546109a390613d61565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000610a0582611cb4565b610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90613ae0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8a82611223565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290613a00565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1a611cc1565b73ffffffffffffffffffffffffffffffffffffffff161480610b495750610b4881610b43611cc1565b6119d1565b5b610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90613920565b60405180910390fd5b610b93838383611cc9565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90613880565b60405180910390fd5b600d60019054906101000a900460ff16610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c906138e0565b60405180910390fd5b600854600954610c63610da0565b610c6d9190613bf0565b10610cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca490613a20565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d31906137c0565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d9e33600954611d7b565b565b60008054905090565b610db4838383611d99565b505050565b600d60009054906101000a900460ff1681565b6000610dd783611239565b8210610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f906137a0565b60405180910390fd5b6000610e22610da0565b905060008060005b83811015610f7c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f1c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f6e5786841415610f65578195505050505050610fb8565b83806001019450505b508080600101915050610e2a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90613aa0565b60405180910390fd5b92915050565b60085481565b610fcc611cc1565b73ffffffffffffffffffffffffffffffffffffffff16610fea6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790613980565b60405180910390fd5b8060088190555050565b611052611cc1565b73ffffffffffffffffffffffffffffffffffffffff166110706114cc565b73ffffffffffffffffffffffffffffffffffffffff16146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613980565b60405180910390fd5b60004790506000811161110e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611105906137e0565b60405180910390fd5b61111f6111196114cc565b826122d9565b50565b61113d838383604051806020016040528060008152506117d1565b505050565b600061114c610da0565b821061118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490613840565b60405180910390fd5b819050919050565b600e80546111a290613d61565b80601f01602080910402602001604051908101604052809291908181526020018280546111ce90613d61565b801561121b5780601f106111f05761010080835404028352916020019161121b565b820191906000526020600020905b8154815290600101906020018083116111fe57829003601f168201915b505050505081565b600061122e826123cd565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613940565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61132a611cc1565b73ffffffffffffffffffffffffffffffffffffffff166113486114cc565b73ffffffffffffffffffffffffffffffffffffffff161461139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590613980565b60405180910390fd5b6113a86000612567565b565b6113b2611cc1565b73ffffffffffffffffffffffffffffffffffffffff166113d06114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613980565b60405180910390fd5b8060098190555050565b600a5481565b61143e611cc1565b73ffffffffffffffffffffffffffffffffffffffff1661145c6114cc565b73ffffffffffffffffffffffffffffffffffffffff16146114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990613980565b60405180910390fd5b80600e90805190602001906114c8929190612d66565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461150590613d61565b80601f016020809104026020016040519081016040528092919081815260200182805461153190613d61565b801561157e5780601f106115535761010080835404028352916020019161157e565b820191906000526020600020905b81548152906001019060200180831161156157829003601f168201915b5050505050905090565b611590611cc1565b73ffffffffffffffffffffffffffffffffffffffff166115ae6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90613980565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915054906101000a900460ff1681565b611658611cc1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd906139c0565b60405180910390fd5b80600660006116d3611cc1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611780611cc1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117c59190613763565b60405180910390a35050565b6117dc848484611d99565b6117e88484848461262d565b611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e90613a40565b60405180910390fd5b50505050565b606061183882611cb4565b611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e906139a0565b60405180910390fd5b61187f6127c4565b61188883612856565b6040516020016118999291906136c3565b6040516020818303038152906040529050919050565b60095481565b600c80546118c290613d61565b80601f01602080910402602001604051908101604052809291908181526020018280546118ee90613d61565b801561193b5780601f106119105761010080835404028352916020019161193b565b820191906000526020600020905b81548152906001019060200180831161191e57829003601f168201915b505050505081565b600b805461195090613d61565b80601f016020809104026020016040519081016040528092919081815260200182805461197c90613d61565b80156119c95780601f1061199e576101008083540402835291602001916119c9565b820191906000526020600020905b8154815290600101906020018083116119ac57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a6d611cc1565b73ffffffffffffffffffffffffffffffffffffffff16611a8b6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad890613980565b60405180910390fd5b600d60009054906101000a900460ff1615611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890613900565b60405180910390fd5b611b3d33600a54611d7b565b565b611b47611cc1565b73ffffffffffffffffffffffffffffffffffffffff16611b656114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb290613980565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290613800565b60405180910390fd5b611c3481612567565b50565b600d60019054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611d958282604051806020016040528060008152506129b7565b5050565b6000611da4826123cd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dcb611cc1565b73ffffffffffffffffffffffffffffffffffffffff161480611e275750611df0611cc1565b73ffffffffffffffffffffffffffffffffffffffff16611e0f846109fa565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e435750611e428260000151611e3d611cc1565b6119d1565b5b905080611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c906139e0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eee90613960565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90613860565b60405180910390fd5b611f7485858560016129c9565b611f846000848460000151611cc9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612269576121c881611cb4565b156122685782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122d285858560016129cf565b5050505050565b8047101561231c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612313906138c0565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612342906136e7565b60006040518083038185875af1925050503d806000811461237f576040519150601f19603f3d011682016040523d82523d6000602084013e612384565b606091505b50509050806123c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bf906138a0565b60405180910390fd5b505050565b6123d5612dec565b6123de82611cb4565b61241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241490613820565b60405180910390fd5b60008290505b60008110612526576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612517578092505050612562565b50808060019003915050612423565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255990613ac0565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061264e8473ffffffffffffffffffffffffffffffffffffffff166129d5565b156127b7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612677611cc1565b8786866040518563ffffffff1660e01b81526004016126999493929190613717565b602060405180830381600087803b1580156126b357600080fd5b505af19250505080156126e457506040513d601f19601f820116820180604052508101906126e1919061317c565b60015b612767573d8060008114612714576040519150601f19603f3d011682016040523d82523d6000602084013e612719565b606091505b5060008151141561275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275690613a40565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127bc565b600190505b949350505050565b6060600e80546127d390613d61565b80601f01602080910402602001604051908101604052809291908181526020018280546127ff90613d61565b801561284c5780601f106128215761010080835404028352916020019161284c565b820191906000526020600020905b81548152906001019060200180831161282f57829003601f168201915b5050505050905090565b6060600082141561289e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129b2565b600082905060005b600082146128d05780806128b990613dc4565b915050600a826128c99190613c46565b91506128a6565b60008167ffffffffffffffff8111156128ec576128eb613efa565b5b6040519080825280601f01601f19166020018201604052801561291e5781602001600182028036833780820191505090505b5090505b600085146129ab576001826129379190613c77565b9150600a856129469190613e0d565b60306129529190613bf0565b60f81b81838151811061296857612967613ecb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129a49190613c46565b9450612922565b8093505050505b919050565b6129c483838360016129e8565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5590613a60565b60405180910390fd5b6000841415612aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9990613a80565b60405180910390fd5b612aaf60008683876129c9565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612d4957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612d3457612cf4600088848861262d565b612d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2a90613a40565b60405180910390fd5b5b81806001019250508080600101915050612c7d565b508060008190555050612d5f60008683876129cf565b5050505050565b828054612d7290613d61565b90600052602060002090601f016020900481019282612d945760008555612ddb565b82601f10612dad57805160ff1916838001178555612ddb565b82800160010185558215612ddb579182015b82811115612dda578251825591602001919060010190612dbf565b5b509050612de89190612e26565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612e3f576000816000905550600101612e27565b5090565b6000612e56612e5184613b40565b613b1b565b905082815260208101848484011115612e7257612e71613f2e565b5b612e7d848285613d1f565b509392505050565b6000612e98612e9384613b71565b613b1b565b905082815260208101848484011115612eb457612eb3613f2e565b5b612ebf848285613d1f565b509392505050565b600081359050612ed681614650565b92915050565b600081359050612eeb81614667565b92915050565b600081359050612f008161467e565b92915050565b600081519050612f158161467e565b92915050565b600082601f830112612f3057612f2f613f29565b5b8135612f40848260208601612e43565b91505092915050565b600082601f830112612f5e57612f5d613f29565b5b8135612f6e848260208601612e85565b91505092915050565b600081359050612f8681614695565b92915050565b600060208284031215612fa257612fa1613f38565b5b6000612fb084828501612ec7565b91505092915050565b60008060408385031215612fd057612fcf613f38565b5b6000612fde85828601612ec7565b9250506020612fef85828601612ec7565b9150509250929050565b60008060006060848603121561301257613011613f38565b5b600061302086828701612ec7565b935050602061303186828701612ec7565b925050604061304286828701612f77565b9150509250925092565b6000806000806080858703121561306657613065613f38565b5b600061307487828801612ec7565b945050602061308587828801612ec7565b935050604061309687828801612f77565b925050606085013567ffffffffffffffff8111156130b7576130b6613f33565b5b6130c387828801612f1b565b91505092959194509250565b600080604083850312156130e6576130e5613f38565b5b60006130f485828601612ec7565b925050602061310585828601612edc565b9150509250929050565b6000806040838503121561312657613125613f38565b5b600061313485828601612ec7565b925050602061314585828601612f77565b9150509250929050565b60006020828403121561316557613164613f38565b5b600061317384828501612ef1565b91505092915050565b60006020828403121561319257613191613f38565b5b60006131a084828501612f06565b91505092915050565b6000602082840312156131bf576131be613f38565b5b600082013567ffffffffffffffff8111156131dd576131dc613f33565b5b6131e984828501612f49565b91505092915050565b60006020828403121561320857613207613f38565b5b600061321684828501612f77565b91505092915050565b61322881613cab565b82525050565b61323781613cbd565b82525050565b600061324882613ba2565b6132528185613bb8565b9350613262818560208601613d2e565b61326b81613f3d565b840191505092915050565b600061328182613bad565b61328b8185613bd4565b935061329b818560208601613d2e565b6132a481613f3d565b840191505092915050565b60006132ba82613bad565b6132c48185613be5565b93506132d4818560208601613d2e565b80840191505092915050565b60006132ed602283613bd4565b91506132f882613f4e565b604082019050919050565b6000613310600e83613bd4565b915061331b82613f9d565b602082019050919050565b6000613333601383613bd4565b915061333e82613fc6565b602082019050919050565b6000613356602683613bd4565b915061336182613fef565b604082019050919050565b6000613379602a83613bd4565b91506133848261403e565b604082019050919050565b600061339c602383613bd4565b91506133a78261408d565b604082019050919050565b60006133bf602583613bd4565b91506133ca826140dc565b604082019050919050565b60006133e2601083613bd4565b91506133ed8261412b565b602082019050919050565b6000613405603a83613bd4565b915061341082614154565b604082019050919050565b6000613428601d83613bd4565b9150613433826141a3565b602082019050919050565b600061344b601083613bd4565b9150613456826141cc565b602082019050919050565b600061346e601883613bd4565b9150613479826141f5565b602082019050919050565b6000613491603983613bd4565b915061349c8261421e565b604082019050919050565b60006134b4602b83613bd4565b91506134bf8261426d565b604082019050919050565b60006134d7602683613bd4565b91506134e2826142bc565b604082019050919050565b60006134fa602083613bd4565b91506135058261430b565b602082019050919050565b600061351d602f83613bd4565b915061352882614334565b604082019050919050565b6000613540601a83613bd4565b915061354b82614383565b602082019050919050565b6000613563603283613bd4565b915061356e826143ac565b604082019050919050565b6000613586602283613bd4565b9150613591826143fb565b604082019050919050565b60006135a9600083613bc9565b91506135b48261444a565b600082019050919050565b60006135cc600883613bd4565b91506135d78261444d565b602082019050919050565b60006135ef603383613bd4565b91506135fa82614476565b604082019050919050565b6000613612602183613bd4565b915061361d826144c5565b604082019050919050565b6000613635602883613bd4565b915061364082614514565b604082019050919050565b6000613658602e83613bd4565b915061366382614563565b604082019050919050565b600061367b602f83613bd4565b9150613686826145b2565b604082019050919050565b600061369e602d83613bd4565b91506136a982614601565b604082019050919050565b6136bd81613d15565b82525050565b60006136cf82856132af565b91506136db82846132af565b91508190509392505050565b60006136f28261359c565b9150819050919050565b6000602082019050613711600083018461321f565b92915050565b600060808201905061372c600083018761321f565b613739602083018661321f565b61374660408301856136b4565b8181036060830152613758818461323d565b905095945050505050565b6000602082019050613778600083018461322e565b92915050565b600060208201905081810360008301526137988184613276565b905092915050565b600060208201905081810360008301526137b9816132e0565b9050919050565b600060208201905081810360008301526137d981613303565b9050919050565b600060208201905081810360008301526137f981613326565b9050919050565b6000602082019050818103600083015261381981613349565b9050919050565b600060208201905081810360008301526138398161336c565b9050919050565b600060208201905081810360008301526138598161338f565b9050919050565b60006020820190508181036000830152613879816133b2565b9050919050565b60006020820190508181036000830152613899816133d5565b9050919050565b600060208201905081810360008301526138b9816133f8565b9050919050565b600060208201905081810360008301526138d98161341b565b9050919050565b600060208201905081810360008301526138f98161343e565b9050919050565b6000602082019050818103600083015261391981613461565b9050919050565b6000602082019050818103600083015261393981613484565b9050919050565b60006020820190508181036000830152613959816134a7565b9050919050565b60006020820190508181036000830152613979816134ca565b9050919050565b60006020820190508181036000830152613999816134ed565b9050919050565b600060208201905081810360008301526139b981613510565b9050919050565b600060208201905081810360008301526139d981613533565b9050919050565b600060208201905081810360008301526139f981613556565b9050919050565b60006020820190508181036000830152613a1981613579565b9050919050565b60006020820190508181036000830152613a39816135bf565b9050919050565b60006020820190508181036000830152613a59816135e2565b9050919050565b60006020820190508181036000830152613a7981613605565b9050919050565b60006020820190508181036000830152613a9981613628565b9050919050565b60006020820190508181036000830152613ab98161364b565b9050919050565b60006020820190508181036000830152613ad98161366e565b9050919050565b60006020820190508181036000830152613af981613691565b9050919050565b6000602082019050613b1560008301846136b4565b92915050565b6000613b25613b36565b9050613b318282613d93565b919050565b6000604051905090565b600067ffffffffffffffff821115613b5b57613b5a613efa565b5b613b6482613f3d565b9050602081019050919050565b600067ffffffffffffffff821115613b8c57613b8b613efa565b5b613b9582613f3d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bfb82613d15565b9150613c0683613d15565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3b57613c3a613e3e565b5b828201905092915050565b6000613c5182613d15565b9150613c5c83613d15565b925082613c6c57613c6b613e6d565b5b828204905092915050565b6000613c8282613d15565b9150613c8d83613d15565b925082821015613ca057613c9f613e3e565b5b828203905092915050565b6000613cb682613cf5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d4c578082015181840152602081019050613d31565b83811115613d5b576000848401525b50505050565b60006002820490506001821680613d7957607f821691505b60208210811415613d8d57613d8c613e9c565b5b50919050565b613d9c82613f3d565b810181811067ffffffffffffffff82111715613dbb57613dba613efa565b5b80604052505050565b6000613dcf82613d15565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e0257613e01613e3e565b5b600182019050919050565b6000613e1882613d15565b9150613e2383613d15565b925082613e3357613e32613e6d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f416c726561647920626f75676874000000000000000000000000000000000000600082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420616c6c6f77656420626f747300000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f616c726561647920636c61696d65642072657365727665640000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61465981613cab565b811461466457600080fd5b50565b61467081613cbd565b811461467b57600080fd5b50565b61468781613cc9565b811461469257600080fd5b50565b61469e81613d15565b81146146a957600080fd5b5056fea26469706673582212200ada4a0d4c2b719ecb6f8593072407e11c591c2ffea9bfe96a9cdbe6f87a603564736f6c63430008060033

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.