ETH Price: $3,476.21 (+1.68%)
Gas: 9 Gwei

Token

Traveloggers (LOGRS)
 

Overview

Max Total Supply

1,500 LOGRS

Holders

759

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
timec.eth
Balance
1 LOGRS
0xa3a0a4e65d8e62c330a84f215c895226ad65c485
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Traveloggers is the avatars issued by Matters Lab, a Web 3 creator ecosystem, to mark the identity of a voyager to Matterverse. Owners of these avatars will have access to the most revolutionary experiments in Matterverse

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Traveloggers

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : Traveloggers.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

import "./Lottery.sol";
import "./Logbook.sol";
import "./PreOrder.sol";

contract Traveloggers is Lottery, Logbook, PreOrder {
    constructor(
        string memory name_,
        string memory symbol_,
        uint16 supply_,
        string memory sharedBaseURI_
    ) BatchNFT(name_, symbol_, supply_, sharedBaseURI_) {}

    /**
     * @dev Unlock logbook on token transfer
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, Logbook) {
        super._beforeTokenTransfer(from, to, tokenId); // Call parent hook
    }
}

File 2 of 16 : Lottery.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

import "./BatchNFT.sol";

/**
 * @dev Contract to random draw winners and mint NFTs from an array of addresses.
 */
abstract contract Lottery is BatchNFT {
    event LotteryWinners(address[] winners);

    /**
     * @dev Random draw lottery winners from an array of addresses, mint NFT,
     * and emit an event to record winners.
     *
     * Emits a {LotteryWinners} event.
     */
    function drawLottery(address[] calldata addresses_, uint256 amount_)
        public
        onlyOwner
    {
        // empty array to store winner addresses
        address[] memory winners = _randomDraw(addresses_, amount_);

        // batch mint NFT for winners
        batchMint(winners, 1);

        // record lottery winners
        emit LotteryWinners(winners);
    }

    /**
     * @dev Random draw from an array of addresses and return the result.
     */
    function _randomDraw(address[] memory addresses_, uint256 amount_)
        public
        view
        returns (address[] memory result)
    {
        require(
            amount_ <= addresses_.length,
            "amount_ must be less than or equal to addresses_.length"
        );

        // empty array to store result
        result = new address[](amount_);

        for (uint256 i = 0; i < amount_; i++) {
            uint256 random = uint256(
                keccak256(
                    abi.encodePacked(
                        i,
                        msg.sender,
                        block.coinbase,
                        block.difficulty,
                        block.gaslimit,
                        block.timestamp
                    )
                )
            ) % (addresses_.length - i);

            result[i] = addresses_[random];

            addresses_[random] = addresses_[addresses_.length - i - 1];
        }

        return result;
    }
}

File 3 of 16 : Logbook.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

import "./BatchNFT.sol";

/**
 * @dev Contract that allows token owner to read and write logbook
 */
abstract contract Logbook is BatchNFT {
    struct Log {
        address sender;
        string message;
        uint256 createdAt;
    }
    struct TokenLogbook {
        Log[] logs;
        bool isLocked;
    }

    // Mapping from token ID to logbook
    mapping(uint256 => TokenLogbook) public logbook;

    event LogbookNewLog(uint256 tokenId, uint256 index, address sender);

    /**
     * @dev Append a new log to logbook
     *
     * Emits a {LogbookNewLog} event.
     */
    function appendLog(uint256 tokenId_, string calldata message_) public {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId_),
            "caller is not owner nor approved"
        );
        require(!logbook[tokenId_].isLocked, "logbook is locked");

        address owner = ERC721.ownerOf(tokenId_);
        Log memory newLog = Log({
            sender: owner,
            message: message_,
            createdAt: block.timestamp
        });

        logbook[tokenId_].logs.push(newLog);
        logbook[tokenId_].isLocked = true;

        emit LogbookNewLog(tokenId_, logbook[tokenId_].logs.length - 1, owner);
    }

    /**
     * @dev Read logbook
     */
    function readLogbook(uint256 tokenId_)
        public
        view
        returns (TokenLogbook memory)
    {
        return logbook[tokenId_];
    }

    /**
     * @dev Unlock logbook on token transfer
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId); // Call parent hook

        logbook[tokenId].isLocked = false;
    }
}

File 4 of 16 : PreOrder.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

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

import "./BatchNFT.sol";

abstract contract PreOrder is BatchNFT {
    using Counters for Counters.Counter;

    // record the number of NFTs ordered per addresses
    mapping(address => uint256) private _preOrders;
    // record the number of NFTs minted during pre-order
    Counters.Counter private _preOrderMintIndex;

    // number of NTFs per participant can order
    uint256 public constant preOrderLimit = 5;
    // determine whether there is an ongoing pre-order
    bool public inPreOrder;
    // unit (wei)
    uint256 public preOrderMinAmount;
    // participants allowed
    uint256 public preOrderSupply;

    event PreOrderMinted(address sender, uint256 n);

    // set minimum contribution amount
    function setPreOrderMinAmount(uint256 amount_) public onlyOwner {
        preOrderMinAmount = amount_;
    }

    // set the number of pre-order supplied NFTs
    function setPreOrderSupply(uint256 supply_) public onlyOwner {
        require(supply_ <= totalSupply, "incorrect pre-order supply");
        preOrderSupply = supply_;
    }

    // start or stop pre-order
    // @param start_: start or end pre-order flag
    // @param amount_: minimum contribution amount
    // @param supply_: pre-order supply
    function setInPreOrder(
        bool start_,
        uint256 amount_,
        uint256 supply_
    ) public onlyOwner {
        if (start_ == true) {
            require(amount_ > 0, "zero amount");
            // number of pre-order supply shall be less or equal to the number of total supply
            require(
                supply_ > 0 && supply_ <= totalSupply,
                "incorrect pre-order supply"
            );
            preOrderMinAmount = amount_;
            preOrderSupply = supply_;
            inPreOrder = true;
        } else {
            inPreOrder = false;
        }
    }

    // place a pre-order
    // @param n - number of NFTs to order
    function preOrder(uint256 n) public payable {
        require(inPreOrder == true, "pre-order not started");
        require(preOrderMinAmount > 0, "zero minimum amount");
        // validation against the minimum contribution amount
        require(
            n > 0 && msg.value >= preOrderMinAmount * n,
            "amount too small"
        );
        // shall not exceed pre-order supply
        require(
            _preOrderMintIndex.current() + n <= preOrderSupply,
            "reach pre-order supply"
        );

        if (_preOrders[msg.sender] <= 0) {
            // shall not exceed pre-order limit
            require(n <= preOrderLimit, "reach order limit");

            _preOrders[msg.sender] = n;
        } else {
            // shall not exceed pre-order limit
            require(
                n + _preOrders[msg.sender] <= preOrderLimit,
                "reach order limit"
            );

            // if the participant has ordered before
            _preOrders[msg.sender] += n;
        }

        for (uint256 i = 0; i < n; i++) {
            _tokenIds.increment();
            _preOrderMintIndex.increment();

            uint256 newItemId = _tokenIds.current();
            _safeMint(msg.sender, newItemId);
        }
        emit PreOrderMinted(msg.sender, n);
    }

    // check if an address has placed an order
    function preOrderExist(address addr_) public view virtual returns (bool) {
        return _preOrders[addr_] > 0;
    }

    // return participant's pre-order detail
    function preOrderGet(address addr_) public view virtual returns (uint256) {
        uint256 p = _preOrders[addr_];
        return p;
    }

    // return the number NFTs of minted in pre-order
    function preOrderMintIndex() public view virtual returns (uint256) {
        return _preOrderMintIndex.current();
    }
}

File 5 of 16 : BatchNFT.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

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

/**
 * @dev ERC721 token with batch mint functionality that only contract owner can call.
 * Token id increases incrementally.
 */
contract BatchNFT is ERC721, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter internal _tokenIds;

    uint16 public totalSupply;

    // Base URI shared by token and contract metadata
    string private _sharedBaseURI = "ipfs://PLACEHOLDER_URI/";

    constructor(
        string memory name_,
        string memory symbol_,
        uint16 supply_,
        string memory sharedBaseURI_
    ) ERC721(name_, symbol_) {
        setSupply(supply_);
        setSharedBaseURI(sharedBaseURI_);
    }

    /**
     * @dev Withdraw all ether in the contract
     */
    function withdrawAll(address vault_) public payable onlyOwner {
        uint256 balance = address(this).balance;
        payable(vault_).transfer(balance);
    }

    /**
     * @dev Update the supply of NFT.
     */
    function setSupply(uint16 supply_) public onlyOwner {
        totalSupply = supply_;
    }

    /**
     * @dev Update the shared base URI
     */
    function setSharedBaseURI(string memory uri_) public onlyOwner {
        _sharedBaseURI = uri_;
    }

    /**
     * @dev Contract URI for OpenSea
     * @return the contract URI string
     * https://docs.opensea.io/docs/contract-level-metadata
     */
    function contractURI() public view returns (string memory) {
        return
            string(abi.encodePacked(_sharedBaseURI, "contract-metadata.json"));
    }

    /**
     * @dev Batch mint NFTs to an array of addresses, require enough supply left.
     * @return the minted token ids
     */
    function batchMint(address[] memory addresses_, uint16 amount_)
        public
        onlyOwner
        returns (uint256[] memory)
    {
        require(
            totalSupply >= addresses_.length * amount_ + _tokenIds.current(),
            "not enough supply"
        );

        uint256[] memory ids = new uint256[](addresses_.length * amount_);
        for (uint16 i = 0; i < addresses_.length; i++) {
            for (uint16 j = 0; j < amount_; j++) {
                _tokenIds.increment();

                uint256 newItemId = _tokenIds.current();
                _safeMint(addresses_[i], newItemId);

                ids[i * amount_ + j] = newItemId;
            }
        }

        return ids;
    }

    /**
     * @dev Burn a given token by calling internel `_burn` function, requires owner or approved account
     */
    function burn(uint256 tokenId_) public {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId_),
            "Caller is not owner nor approved"
        );
        _burn(tokenId_);
    }

    /**
     * @dev See {ERC721}.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return _sharedBaseURI;
    }
}

File 6 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 7 of 16 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 8 of 16 : 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 9 of 16 : 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 10 of 16 : 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 11 of 16 : 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 12 of 16 : 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 13 of 16 : 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 14 of 16 : 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 15 of 16 : 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 16 of 16 : 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":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint16","name":"supply_","type":"uint16"},{"internalType":"string","name":"sharedBaseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"LogbookNewLog","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"winners","type":"address[]"}],"name":"LotteryWinners","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":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"n","type":"uint256"}],"name":"PreOrderMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"_randomDraw","outputs":[{"internalType":"address[]","name":"result","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"string","name":"message_","type":"string"}],"name":"appendLog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"},{"internalType":"uint16","name":"amount_","type":"uint16"}],"name":"batchMint","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"drawLottery","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":[],"name":"inPreOrder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"logbook","outputs":[{"internalType":"bool","name":"isLocked","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"preOrder","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"}],"name":"preOrderExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"}],"name":"preOrderGet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preOrderLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preOrderMinAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preOrderMintIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preOrderSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"readLogbook","outputs":[{"components":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"string","name":"message","type":"string"},{"internalType":"uint256","name":"createdAt","type":"uint256"}],"internalType":"struct Logbook.Log[]","name":"logs","type":"tuple[]"},{"internalType":"bool","name":"isLocked","type":"bool"}],"internalType":"struct Logbook.TokenLogbook","name":"","type":"tuple"}],"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":"bool","name":"start_","type":"bool"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"uint256","name":"supply_","type":"uint256"}],"name":"setInPreOrder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"setPreOrderMinAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply_","type":"uint256"}],"name":"setPreOrderSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setSharedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"supply_","type":"uint16"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[{"internalType":"address","name":"vault_","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280601781526020017f697066733a2f2f504c414345484f4c4445525f5552492f000000000000000000815250600990805190602001906200005192919062000361565b503480156200005f57600080fd5b50604051620060013803806200600183398181016040528101906200008591906200049a565b8383838383838160009080519060200190620000a392919062000361565b508060019080519060200190620000bc92919062000361565b505050620000df620000d36200010f60201b60201c565b6200011760201b60201c565b620000f082620001dd60201b60201c565b62000101816200028c60201b60201c565b50505050505050506200076c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001ed6200010f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002136200033760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200026c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002639062000578565b60405180910390fd5b80600860006101000a81548161ffff021916908361ffff16021790555050565b6200029c6200010f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c26200033760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200031b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003129062000578565b60405180910390fd5b80600990805190602001906200033392919062000361565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200036f906200064e565b90600052602060002090601f016020900481019282620003935760008555620003df565b82601f10620003ae57805160ff1916838001178555620003df565b82800160010185558215620003df579182015b82811115620003de578251825591602001919060010190620003c1565b5b509050620003ee9190620003f2565b5090565b5b808211156200040d576000816000905550600101620003f3565b5090565b6000620004286200042284620005c3565b6200059a565b9050828152602081018484840111156200044157600080fd5b6200044e84828562000618565b509392505050565b600082601f8301126200046857600080fd5b81516200047a84826020860162000411565b91505092915050565b600081519050620004948162000752565b92915050565b60008060008060808587031215620004b157600080fd5b600085015167ffffffffffffffff811115620004cc57600080fd5b620004da8782880162000456565b945050602085015167ffffffffffffffff811115620004f857600080fd5b620005068782880162000456565b9350506040620005198782880162000483565b925050606085015167ffffffffffffffff8111156200053757600080fd5b620005458782880162000456565b91505092959194509250565b600062000560602083620005f9565b91506200056d8262000729565b602082019050919050565b60006020820190508181036000830152620005938162000551565b9050919050565b6000620005a6620005b9565b9050620005b4828262000684565b919050565b6000604051905090565b600067ffffffffffffffff821115620005e157620005e0620006e9565b5b620005ec8262000718565b9050602081019050919050565b600082825260208201905092915050565b600061ffff82169050919050565b60005b83811015620006385780820151818401526020810190506200061b565b8381111562000648576000848401525b50505050565b600060028204905060018216806200066757607f821691505b602082108114156200067e576200067d620006ba565b5b50919050565b6200068f8262000718565b810181811067ffffffffffffffff82111715620006b157620006b0620006e9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200075d816200060a565b81146200076957600080fd5b50565b615885806200077c6000396000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063b88d4fde116100ab578063e8a3d4851161006f578063e8a3d48514610876578063e985e9c5146108a1578063f2fde38b146108de578063f631b17114610907578063fa09e6301461093057610230565b8063b88d4fde1461077f578063bf5c2c88146107a8578063c87b56dd146107e5578063cbaa160014610822578063d79e002c1461084d57610230565b806395d89b41116100f257806395d89b411461069c5780639b7d85c8146106c75780639ba2286a14610704578063a22cb4651461072d578063a59fd64e1461075657610230565b806370a08231146105c9578063715018a6146106065780638ae32b411461061d5780638da5cb5b14610648578063923104541461067357610230565b80632b29d52e116101bc578063431a290f11610180578063431a290f146104bc57806354130394146104f957806354d895e5146105365780636352211e14610561578063678984c21461059e57610230565b80632b29d52e146103d95780633947dc6a146104165780633e2cc2061461044157806342842e0e1461046a57806342966c681461049357610230565b80630a9bdca9116102035780630a9bdca9146103035780630f2ee0b11461031f57806318160ddd1461034857806323b872dd146103735780632b234bc01461039c57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613bec565b61094c565b60405161026991906146b5565b60405180910390f35b34801561027e57600080fd5b50610287610a2e565b60405161029491906146d0565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613ca8565b610ac0565b6040516102d191906145e1565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613a61565b610b45565b005b61031d60048036038101906103189190613ca8565b610c5d565b005b34801561032b57600080fd5b5061034660048036038101906103419190613c7f565b610fee565b005b34801561035457600080fd5b5061035d61108a565b60405161036a9190614a94565b60405180910390f35b34801561037f57600080fd5b5061039a6004803603810190610395919061395b565b61109e565b005b3480156103a857600080fd5b506103c360048036038101906103be91906138f6565b6110fe565b6040516103d091906146b5565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb91906138f6565b611149565b60405161040d9190614aaf565b60405180910390f35b34801561042257600080fd5b5061042b611197565b6040516104389190614aaf565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613a9d565b61119d565b005b34801561047657600080fd5b50610491600480360381019061048c919061395b565b6112b1565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613ca8565b6112d1565b005b3480156104c857600080fd5b506104e360048036038101906104de9190613ca8565b61132d565b6040516104f091906146b5565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613b49565b611358565b60405161052d9190614671565b60405180910390f35b34801561054257600080fd5b5061054b611604565b6040516105589190614aaf565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613ca8565b611609565b60405161059591906145e1565b60405180910390f35b3480156105aa57600080fd5b506105b36116bb565b6040516105c09190614aaf565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb91906138f6565b6116c1565b6040516105fd9190614aaf565b60405180910390f35b34801561061257600080fd5b5061061b611779565b005b34801561062957600080fd5b50610632611801565b60405161063f9190614aaf565b60405180910390f35b34801561065457600080fd5b5061065d611812565b60405161066a91906145e1565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190613ca8565b61183c565b005b3480156106a857600080fd5b506106b1611919565b6040516106be91906146d0565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e99190613ca8565b6119ab565b6040516106fb9190614a72565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613c3e565b611b44565b005b34801561073957600080fd5b50610754600480360381019061074f9190613a25565b611bda565b005b34801561076257600080fd5b5061077d60048036038101906107789190613ca8565b611d5b565b005b34801561078b57600080fd5b506107a660048036038101906107a191906139aa565b611de1565b005b3480156107b457600080fd5b506107cf60048036038101906107ca9190613af5565b611e43565b6040516107dc9190614693565b60405180910390f35b3480156107f157600080fd5b5061080c60048036038101906108079190613ca8565b6120db565b60405161081991906146d0565b60405180910390f35b34801561082e57600080fd5b50610837612182565b60405161084491906146b5565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190613cd1565b612195565b005b34801561088257600080fd5b5061088b612415565b60405161089891906146d0565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c3919061391f565b61243d565b6040516108d591906146b5565b60405180910390f35b3480156108ea57600080fd5b50610905600480360381019061090091906138f6565b6124d1565b005b34801561091357600080fd5b5061092e60048036038101906109299190613b9d565b6125c9565b005b61094a600480360381019061094591906138f6565b612747565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a275750610a2682612813565b5b9050919050565b606060008054610a3d90614f27565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6990614f27565b8015610ab65780601f10610a8b57610100808354040283529160200191610ab6565b820191906000526020600020905b815481529060010190602001808311610a9957829003601f168201915b5050505050905090565b6000610acb8261287d565b610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b01906148d2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5082611609565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb8906149b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be06128e9565b73ffffffffffffffffffffffffffffffffffffffff161480610c0f5750610c0e81610c096128e9565b61243d565b5b610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590614832565b60405180910390fd5b610c5883836128f1565b505050565b60011515600d60009054906101000a900460ff16151514610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90614a52565b60405180910390fd5b6000600e5411610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef906146f2565b60405180910390fd5b600081118015610d15575080600e54610d119190614dc3565b3410155b610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90614792565b60405180910390fd5b600f5481610d62600c6129aa565b610d6c9190614d00565b1115610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490614892565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610e81576005811115610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f90614972565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f66565b6005600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482610ece9190614d00565b1115610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690614972565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f5e9190614d00565b925050819055505b60005b81811015610fb157610f7b60076129b8565b610f85600c6129b8565b6000610f9160076129aa565b9050610f9d33826129ce565b508080610fa990614fb5565b915050610f69565b507fe560ed4dd5ff349ae224ed770bdf0c9d68701c85e89fc3141b7a0ce3ec70257a3382604051610fe3929190614648565b60405180910390a150565b610ff66128e9565b73ffffffffffffffffffffffffffffffffffffffff16611014611812565b73ffffffffffffffffffffffffffffffffffffffff161461106a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611061906148f2565b60405180910390fd5b80600860006101000a81548161ffff021916908361ffff16021790555050565b600860009054906101000a900461ffff1681565b6110af6110a96128e9565b826129ec565b6110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590614a12565b60405180910390fd5b6110f9838383612aca565b505050565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080915050919050565b600f5481565b6111a56128e9565b73ffffffffffffffffffffffffffffffffffffffff166111c3611812565b73ffffffffffffffffffffffffffffffffffffffff1614611219576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611210906148f2565b60405180910390fd5b6000611266848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505083611358565b9050611273816001611e43565b507f26462df50377756277d5eb2d3b25fcd597a0914afef7c720cfd21f733191d26a816040516112a39190614671565b60405180910390a150505050565b6112cc83838360405180602001604052806000815250611de1565b505050565b6112e26112dc6128e9565b826129ec565b611321576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611318906149f2565b60405180910390fd5b61132a81612d26565b50565b600a6020528060005260406000206000915090508060010160009054906101000a900460ff16905081565b6060825182111561139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590614812565b60405180910390fd5b8167ffffffffffffffff8111156113de577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561140c5781602001602082028036833780820191505090505b50905060005b828110156115fd5760008185516114299190614e1d565b82334144454260405160200161144496959493929190614571565b6040516020818303038152906040528051906020012060001c611467919061503e565b90508481815181106114a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518383815181106114e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505084600183875161152d9190614e1d565b6115379190614e1d565b8151811061156e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518582815181106115af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505080806115f590614fb5565b915050611412565b5092915050565b600581565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a990614872565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990614852565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117816128e9565b73ffffffffffffffffffffffffffffffffffffffff1661179f611812565b73ffffffffffffffffffffffffffffffffffffffff16146117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec906148f2565b60405180910390fd5b6117ff6000612e37565b565b600061180d600c6129aa565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118446128e9565b73ffffffffffffffffffffffffffffffffffffffff16611862611812565b73ffffffffffffffffffffffffffffffffffffffff16146118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af906148f2565b60405180910390fd5b600860009054906101000a900461ffff1661ffff1681111561190f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190690614992565b60405180910390fd5b80600f8190555050565b60606001805461192890614f27565b80601f016020809104026020016040519081016040528092919081815260200182805461195490614f27565b80156119a15780601f10611976576101008083540402835291602001916119a1565b820191906000526020600020905b81548152906001019060200180831161198457829003601f168201915b5050505050905090565b6119b36135bf565b600a600083815260200190815260200160002060405180604001604052908160008201805480602002602001604051908101604052809291908181526020016000905b82821015611b1a57838290600052602060002090600302016040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182018054611a7f90614f27565b80601f0160208091040260200160405190810160405280929190818152602001828054611aab90614f27565b8015611af85780601f10611acd57610100808354040283529160200191611af8565b820191906000526020600020905b815481529060010190602001808311611adb57829003601f168201915b50505050508152602001600282015481525050815260200190600101906119f6565b5050505081526020016001820160009054906101000a900460ff1615151515815250509050919050565b611b4c6128e9565b73ffffffffffffffffffffffffffffffffffffffff16611b6a611812565b73ffffffffffffffffffffffffffffffffffffffff1614611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb7906148f2565b60405180910390fd5b8060099080519060200190611bd69291906135db565b5050565b611be26128e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c47906147d2565b60405180910390fd5b8060056000611c5d6128e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d0a6128e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4f91906146b5565b60405180910390a35050565b611d636128e9565b73ffffffffffffffffffffffffffffffffffffffff16611d81611812565b73ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce906148f2565b60405180910390fd5b80600e8190555050565b611df2611dec6128e9565b836129ec565b611e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2890614a12565b60405180910390fd5b611e3d84848484612efd565b50505050565b6060611e4d6128e9565b73ffffffffffffffffffffffffffffffffffffffff16611e6b611812565b73ffffffffffffffffffffffffffffffffffffffff1614611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb8906148f2565b60405180910390fd5b611ecb60076129aa565b8261ffff168451611edc9190614dc3565b611ee69190614d00565b600860009054906101000a900461ffff1661ffff161015611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f33906149d2565b60405180910390fd5b60008261ffff168451611f4f9190614dc3565b67ffffffffffffffff811115611f8e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611fbc5781602001602082028036833780820191505090505b50905060005b84518161ffff1610156120d05760005b8461ffff168161ffff1610156120bc57611fec60076129b8565b6000611ff860076129aa565b9050612048878461ffff168151811061203a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151826129ce565b80848388866120579190614d87565b6120619190614cc8565b61ffff168151811061209c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505080806120b490614f8a565b915050611fd2565b5080806120c890614f8a565b915050611fc2565b508091505092915050565b60606120e68261287d565b612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90614932565b60405180910390fd5b600061212f612f59565b9050600081511161214f576040518060200160405280600081525061217a565b8061215984612feb565b60405160200161216a92919061452b565b6040516020818303038152906040525b915050919050565b600d60009054906101000a900460ff1681565b6121a66121a06128e9565b846129ec565b6121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614952565b60405180910390fd5b600a600084815260200190815260200160002060010160009054906101000a900460ff1615612249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224090614a32565b60405180910390fd5b600061225484611609565b9050600060405180606001604052808373ffffffffffffffffffffffffffffffffffffffff16815260200185858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508152602001428152509050600a600086815260200190815260200160002060000181908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010190805190602001906123729291906135db565b506040820151816002015550506001600a600087815260200190815260200160002060010160006101000a81548160ff0219169083151502179055507f041be98575cc32bd3a49c705e9d0b525e3e43e2cde3e3fc3900688462c128e2e856001600a6000898152602001908152602001600020600001805490506123f69190614e1d565b8460405161240693929190614aca565b60405180910390a15050505050565b60606009604051602001612429919061454f565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124d96128e9565b73ffffffffffffffffffffffffffffffffffffffff166124f7611812565b73ffffffffffffffffffffffffffffffffffffffff161461254d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612544906148f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b490614752565b60405180910390fd5b6125c681612e37565b50565b6125d16128e9565b73ffffffffffffffffffffffffffffffffffffffff166125ef611812565b73ffffffffffffffffffffffffffffffffffffffff1614612645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263c906148f2565b60405180910390fd5b6001151583151514156127265760008211612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268c90614732565b60405180910390fd5b6000811180156126b95750600860009054906101000a900461ffff1661ffff168111155b6126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef90614992565b60405180910390fd5b81600e8190555080600f819055506001600d60006101000a81548160ff021916908315150217905550612742565b6000600d60006101000a81548160ff0219169083151502179055505b505050565b61274f6128e9565b73ffffffffffffffffffffffffffffffffffffffff1661276d611812565b73ffffffffffffffffffffffffffffffffffffffff16146127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba906148f2565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561280e573d6000803e3d6000fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661296483611609565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6129e8828260405180602001604052806000815250613198565b5050565b60006129f78261287d565b612a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2d906147f2565b60405180910390fd5b6000612a4183611609565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ab057508373ffffffffffffffffffffffffffffffffffffffff16612a9884610ac0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ac15750612ac0818561243d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612aea82611609565b73ffffffffffffffffffffffffffffffffffffffff1614612b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3790614912565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba7906147b2565b60405180910390fd5b612bbb8383836131f3565b612bc66000826128f1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c169190614e1d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c6d9190614d00565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612d3182611609565b9050612d3f816000846131f3565b612d4a6000836128f1565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d9a9190614e1d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f08848484612aca565b612f1484848484613203565b612f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4a90614712565b60405180910390fd5b50505050565b606060098054612f6890614f27565b80601f0160208091040260200160405190810160405280929190818152602001828054612f9490614f27565b8015612fe15780601f10612fb657610100808354040283529160200191612fe1565b820191906000526020600020905b815481529060010190602001808311612fc457829003601f168201915b5050505050905090565b60606000821415613033576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613193565b600082905060005b6000821461306557808061304e90614fb5565b915050600a8261305e9190614d56565b915061303b565b60008167ffffffffffffffff8111156130a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130d95781602001600182028036833780820191505090505b5090505b6000851461318c576001826130f29190614e1d565b9150600a85613101919061503e565b603061310d9190614d00565b60f81b818381518110613149577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131859190614d56565b94506130dd565b8093505050505b919050565b6131a2838361339a565b6131af6000848484613203565b6131ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e590614712565b60405180910390fd5b505050565b6131fe838383613568565b505050565b60006132248473ffffffffffffffffffffffffffffffffffffffff166135a7565b1561338d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261324d6128e9565b8786866040518563ffffffff1660e01b815260040161326f94939291906145fc565b602060405180830381600087803b15801561328957600080fd5b505af19250505080156132ba57506040513d601f19601f820116820180604052508101906132b79190613c15565b60015b61333d573d80600081146132ea576040519150601f19603f3d011682016040523d82523d6000602084013e6132ef565b606091505b50600081511415613335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332c90614712565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613392565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561340a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613401906148b2565b60405180910390fd5b6134138161287d565b15613453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344a90614772565b60405180910390fd5b61345f600083836131f3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134af9190614d00565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6135738383836135ba565b6000600a600083815260200190815260200160002060010160006101000a81548160ff021916908315150217905550505050565b600080823b905060008111915050919050565b505050565b6040518060400160405280606081526020016000151581525090565b8280546135e790614f27565b90600052602060002090601f0160209004810192826136095760008555613650565b82601f1061362257805160ff1916838001178555613650565b82800160010185558215613650579182015b8281111561364f578251825591602001919060010190613634565b5b50905061365d9190613661565b5090565b5b8082111561367a576000816000905550600101613662565b5090565b600061369161368c84614b26565b614b01565b905080838252602082019050828560208602820111156136b057600080fd5b60005b858110156136e057816136c68882613766565b8452602084019350602083019250506001810190506136b3565b5050509392505050565b60006136fd6136f884614b52565b614b01565b90508281526020810184848401111561371557600080fd5b613720848285614ee5565b509392505050565b600061373b61373684614b83565b614b01565b90508281526020810184848401111561375357600080fd5b61375e848285614ee5565b509392505050565b600081359050613775816157dc565b92915050565b60008083601f84011261378d57600080fd5b8235905067ffffffffffffffff8111156137a657600080fd5b6020830191508360208202830111156137be57600080fd5b9250929050565b600082601f8301126137d657600080fd5b81356137e684826020860161367e565b91505092915050565b6000813590506137fe816157f3565b92915050565b6000813590506138138161580a565b92915050565b6000815190506138288161580a565b92915050565b600082601f83011261383f57600080fd5b813561384f8482602086016136ea565b91505092915050565b60008083601f84011261386a57600080fd5b8235905067ffffffffffffffff81111561388357600080fd5b60208301915083600182028301111561389b57600080fd5b9250929050565b600082601f8301126138b357600080fd5b81356138c3848260208601613728565b91505092915050565b6000813590506138db81615821565b92915050565b6000813590506138f081615838565b92915050565b60006020828403121561390857600080fd5b600061391684828501613766565b91505092915050565b6000806040838503121561393257600080fd5b600061394085828601613766565b925050602061395185828601613766565b9150509250929050565b60008060006060848603121561397057600080fd5b600061397e86828701613766565b935050602061398f86828701613766565b92505060406139a0868287016138e1565b9150509250925092565b600080600080608085870312156139c057600080fd5b60006139ce87828801613766565b94505060206139df87828801613766565b93505060406139f0878288016138e1565b925050606085013567ffffffffffffffff811115613a0d57600080fd5b613a198782880161382e565b91505092959194509250565b60008060408385031215613a3857600080fd5b6000613a4685828601613766565b9250506020613a57858286016137ef565b9150509250929050565b60008060408385031215613a7457600080fd5b6000613a8285828601613766565b9250506020613a93858286016138e1565b9150509250929050565b600080600060408486031215613ab257600080fd5b600084013567ffffffffffffffff811115613acc57600080fd5b613ad88682870161377b565b93509350506020613aeb868287016138e1565b9150509250925092565b60008060408385031215613b0857600080fd5b600083013567ffffffffffffffff811115613b2257600080fd5b613b2e858286016137c5565b9250506020613b3f858286016138cc565b9150509250929050565b60008060408385031215613b5c57600080fd5b600083013567ffffffffffffffff811115613b7657600080fd5b613b82858286016137c5565b9250506020613b93858286016138e1565b9150509250929050565b600080600060608486031215613bb257600080fd5b6000613bc0868287016137ef565b9350506020613bd1868287016138e1565b9250506040613be2868287016138e1565b9150509250925092565b600060208284031215613bfe57600080fd5b6000613c0c84828501613804565b91505092915050565b600060208284031215613c2757600080fd5b6000613c3584828501613819565b91505092915050565b600060208284031215613c5057600080fd5b600082013567ffffffffffffffff811115613c6a57600080fd5b613c76848285016138a2565b91505092915050565b600060208284031215613c9157600080fd5b6000613c9f848285016138cc565b91505092915050565b600060208284031215613cba57600080fd5b6000613cc8848285016138e1565b91505092915050565b600080600060408486031215613ce657600080fd5b6000613cf4868287016138e1565b935050602084013567ffffffffffffffff811115613d1157600080fd5b613d1d86828701613858565b92509250509250925092565b6000613d358383613d84565b60208301905092915050565b6000613d4d838361445a565b905092915050565b6000613d6183836144f6565b60208301905092915050565b613d7e613d7982614e63565b615010565b82525050565b613d8d81614e51565b82525050565b613d9c81614e51565b82525050565b613db3613dae82614e51565b614ffe565b82525050565b6000613dc482614bf9565b613dce8185614c57565b9350613dd983614bb4565b8060005b83811015613e0a578151613df18882613d29565b9750613dfc83614c30565b925050600181019050613ddd565b5085935050505092915050565b6000613e2282614c04565b613e2c8185614c68565b935083602082028501613e3e85614bc4565b8060005b85811015613e7a5784840389528151613e5b8582613d41565b9450613e6683614c3d565b925060208a01995050600181019050613e42565b50829750879550505050505092915050565b6000613e9782614c0f565b613ea18185614c79565b9350613eac83614bd4565b8060005b83811015613edd578151613ec48882613d55565b9750613ecf83614c4a565b925050600181019050613eb0565b5085935050505092915050565b613ef381614e75565b82525050565b613f0281614e75565b82525050565b6000613f1382614c1a565b613f1d8185614c8a565b9350613f2d818560208601614ef4565b613f368161512b565b840191505092915050565b6000613f4c82614c25565b613f568185614c9b565b9350613f66818560208601614ef4565b613f6f8161512b565b840191505092915050565b6000613f8582614c25565b613f8f8185614cac565b9350613f9f818560208601614ef4565b613fa88161512b565b840191505092915050565b6000613fbe82614c25565b613fc88185614cbd565b9350613fd8818560208601614ef4565b80840191505092915050565b60008154613ff181614f27565b613ffb8186614cbd565b9450600182166000811461401657600181146140275761405a565b60ff1983168652818601935061405a565b61403085614be4565b60005b8381101561405257815481890152600182019150602081019050614033565b838801955050505b50505092915050565b6000614070601383614cac565b915061407b82615149565b602082019050919050565b6000614093601683614cbd565b915061409e82615172565b601682019050919050565b60006140b6603283614cac565b91506140c18261519b565b604082019050919050565b60006140d9600b83614cac565b91506140e4826151ea565b602082019050919050565b60006140fc602683614cac565b915061410782615213565b604082019050919050565b600061411f601c83614cac565b915061412a82615262565b602082019050919050565b6000614142601083614cac565b915061414d8261528b565b602082019050919050565b6000614165602483614cac565b9150614170826152b4565b604082019050919050565b6000614188601983614cac565b915061419382615303565b602082019050919050565b60006141ab602c83614cac565b91506141b68261532c565b604082019050919050565b60006141ce603783614cac565b91506141d98261537b565b604082019050919050565b60006141f1603883614cac565b91506141fc826153ca565b604082019050919050565b6000614214602a83614cac565b915061421f82615419565b604082019050919050565b6000614237602983614cac565b915061424282615468565b604082019050919050565b600061425a601683614cac565b9150614265826154b7565b602082019050919050565b600061427d602083614cac565b9150614288826154e0565b602082019050919050565b60006142a0602c83614cac565b91506142ab82615509565b604082019050919050565b60006142c3602083614cac565b91506142ce82615558565b602082019050919050565b60006142e6602983614cac565b91506142f182615581565b604082019050919050565b6000614309602f83614cac565b9150614314826155d0565b604082019050919050565b600061432c602083614cac565b91506143378261561f565b602082019050919050565b600061434f601183614cac565b915061435a82615648565b602082019050919050565b6000614372601a83614cac565b915061437d82615671565b602082019050919050565b6000614395602183614cac565b91506143a08261569a565b604082019050919050565b60006143b8601183614cac565b91506143c3826156e9565b602082019050919050565b60006143db602083614cac565b91506143e682615712565b602082019050919050565b60006143fe603183614cac565b91506144098261573b565b604082019050919050565b6000614421601183614cac565b915061442c8261578a565b602082019050919050565b6000614444601583614cac565b915061444f826157b3565b602082019050919050565b60006060830160008301516144726000860182613d84565b506020830151848203602086015261448a8282613f41565b915050604083015161449f60408601826144f6565b508091505092915050565b600060408301600083015184820360008601526144c78282613e17565b91505060208301516144dc6020860182613eea565b508091505092915050565b6144f081614ead565b82525050565b6144ff81614edb565b82525050565b61450e81614edb565b82525050565b61452561452082614edb565b615034565b82525050565b60006145378285613fb3565b91506145438284613fb3565b91508190509392505050565b600061455b8284613fe4565b915061456682614086565b915081905092915050565b600061457d8289614514565b60208201915061458d8288613da2565b60148201915061459d8287613d6d565b6014820191506145ad8286614514565b6020820191506145bd8285614514565b6020820191506145cd8284614514565b602082019150819050979650505050505050565b60006020820190506145f66000830184613d93565b92915050565b60006080820190506146116000830187613d93565b61461e6020830186613d93565b61462b6040830185614505565b818103606083015261463d8184613f08565b905095945050505050565b600060408201905061465d6000830185613d93565b61466a6020830184614505565b9392505050565b6000602082019050818103600083015261468b8184613db9565b905092915050565b600060208201905081810360008301526146ad8184613e8c565b905092915050565b60006020820190506146ca6000830184613ef9565b92915050565b600060208201905081810360008301526146ea8184613f7a565b905092915050565b6000602082019050818103600083015261470b81614063565b9050919050565b6000602082019050818103600083015261472b816140a9565b9050919050565b6000602082019050818103600083015261474b816140cc565b9050919050565b6000602082019050818103600083015261476b816140ef565b9050919050565b6000602082019050818103600083015261478b81614112565b9050919050565b600060208201905081810360008301526147ab81614135565b9050919050565b600060208201905081810360008301526147cb81614158565b9050919050565b600060208201905081810360008301526147eb8161417b565b9050919050565b6000602082019050818103600083015261480b8161419e565b9050919050565b6000602082019050818103600083015261482b816141c1565b9050919050565b6000602082019050818103600083015261484b816141e4565b9050919050565b6000602082019050818103600083015261486b81614207565b9050919050565b6000602082019050818103600083015261488b8161422a565b9050919050565b600060208201905081810360008301526148ab8161424d565b9050919050565b600060208201905081810360008301526148cb81614270565b9050919050565b600060208201905081810360008301526148eb81614293565b9050919050565b6000602082019050818103600083015261490b816142b6565b9050919050565b6000602082019050818103600083015261492b816142d9565b9050919050565b6000602082019050818103600083015261494b816142fc565b9050919050565b6000602082019050818103600083015261496b8161431f565b9050919050565b6000602082019050818103600083015261498b81614342565b9050919050565b600060208201905081810360008301526149ab81614365565b9050919050565b600060208201905081810360008301526149cb81614388565b9050919050565b600060208201905081810360008301526149eb816143ab565b9050919050565b60006020820190508181036000830152614a0b816143ce565b9050919050565b60006020820190508181036000830152614a2b816143f1565b9050919050565b60006020820190508181036000830152614a4b81614414565b9050919050565b60006020820190508181036000830152614a6b81614437565b9050919050565b60006020820190508181036000830152614a8c81846144aa565b905092915050565b6000602082019050614aa960008301846144e7565b92915050565b6000602082019050614ac46000830184614505565b92915050565b6000606082019050614adf6000830186614505565b614aec6020830185614505565b614af96040830184613d93565b949350505050565b6000614b0b614b1c565b9050614b178282614f59565b919050565b6000604051905090565b600067ffffffffffffffff821115614b4157614b406150fc565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b6d57614b6c6150fc565b5b614b768261512b565b9050602081019050919050565b600067ffffffffffffffff821115614b9e57614b9d6150fc565b5b614ba78261512b565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614cd382614ead565b9150614cde83614ead565b92508261ffff03821115614cf557614cf461506f565b5b828201905092915050565b6000614d0b82614edb565b9150614d1683614edb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d4b57614d4a61506f565b5b828201905092915050565b6000614d6182614edb565b9150614d6c83614edb565b925082614d7c57614d7b61509e565b5b828204905092915050565b6000614d9282614ead565b9150614d9d83614ead565b92508161ffff0483118215151615614db857614db761506f565b5b828202905092915050565b6000614dce82614edb565b9150614dd983614edb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e1257614e1161506f565b5b828202905092915050565b6000614e2882614edb565b9150614e3383614edb565b925082821015614e4657614e4561506f565b5b828203905092915050565b6000614e5c82614ebb565b9050919050565b6000614e6e82614ebb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f12578082015181840152602081019050614ef7565b83811115614f21576000848401525b50505050565b60006002820490506001821680614f3f57607f821691505b60208210811415614f5357614f526150cd565b5b50919050565b614f628261512b565b810181811067ffffffffffffffff82111715614f8157614f806150fc565b5b80604052505050565b6000614f9582614ead565b915061ffff821415614faa57614fa961506f565b5b600182019050919050565b6000614fc082614edb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ff357614ff261506f565b5b600182019050919050565b600061500982615022565b9050919050565b600061501b82615022565b9050919050565b600061502d8261513c565b9050919050565b6000819050919050565b600061504982614edb565b915061505483614edb565b9250826150645761506361509e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f7a65726f206d696e696d756d20616d6f756e7400000000000000000000000000600082015250565b7f636f6e74726163742d6d657461646174612e6a736f6e00000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f7a65726f20616d6f756e74000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616d6f756e7420746f6f20736d616c6c00000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f616d6f756e745f206d757374206265206c657373207468616e206f722065717560008201527f616c20746f206164647265737365735f2e6c656e677468000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f7265616368207072652d6f7264657220737570706c7900000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b7f7265616368206f72646572206c696d6974000000000000000000000000000000600082015250565b7f696e636f7272656374207072652d6f7264657220737570706c79000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f75676820737570706c79000000000000000000000000000000600082015250565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6c6f67626f6f6b206973206c6f636b6564000000000000000000000000000000600082015250565b7f7072652d6f72646572206e6f7420737461727465640000000000000000000000600082015250565b6157e581614e51565b81146157f057600080fd5b50565b6157fc81614e75565b811461580757600080fd5b50565b61581381614e81565b811461581e57600080fd5b50565b61582a81614ead565b811461583557600080fd5b50565b61584181614edb565b811461584c57600080fd5b5056fea26469706673582212203939254c8450a9ffa9f755d0ead2696d7e452cf44ad9608ae93ae3c5a7b3692f64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000005dc0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000c54726176656c6f6767657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f4752530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a5a6d7a31737257316d33793168503153433759455a4c70566b624354444a48714c567436423170546d4e742f00000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c806370a082311161012e578063b88d4fde116100ab578063e8a3d4851161006f578063e8a3d48514610876578063e985e9c5146108a1578063f2fde38b146108de578063f631b17114610907578063fa09e6301461093057610230565b8063b88d4fde1461077f578063bf5c2c88146107a8578063c87b56dd146107e5578063cbaa160014610822578063d79e002c1461084d57610230565b806395d89b41116100f257806395d89b411461069c5780639b7d85c8146106c75780639ba2286a14610704578063a22cb4651461072d578063a59fd64e1461075657610230565b806370a08231146105c9578063715018a6146106065780638ae32b411461061d5780638da5cb5b14610648578063923104541461067357610230565b80632b29d52e116101bc578063431a290f11610180578063431a290f146104bc57806354130394146104f957806354d895e5146105365780636352211e14610561578063678984c21461059e57610230565b80632b29d52e146103d95780633947dc6a146104165780633e2cc2061461044157806342842e0e1461046a57806342966c681461049357610230565b80630a9bdca9116102035780630a9bdca9146103035780630f2ee0b11461031f57806318160ddd1461034857806323b872dd146103735780632b234bc01461039c57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613bec565b61094c565b60405161026991906146b5565b60405180910390f35b34801561027e57600080fd5b50610287610a2e565b60405161029491906146d0565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613ca8565b610ac0565b6040516102d191906145e1565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613a61565b610b45565b005b61031d60048036038101906103189190613ca8565b610c5d565b005b34801561032b57600080fd5b5061034660048036038101906103419190613c7f565b610fee565b005b34801561035457600080fd5b5061035d61108a565b60405161036a9190614a94565b60405180910390f35b34801561037f57600080fd5b5061039a6004803603810190610395919061395b565b61109e565b005b3480156103a857600080fd5b506103c360048036038101906103be91906138f6565b6110fe565b6040516103d091906146b5565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb91906138f6565b611149565b60405161040d9190614aaf565b60405180910390f35b34801561042257600080fd5b5061042b611197565b6040516104389190614aaf565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613a9d565b61119d565b005b34801561047657600080fd5b50610491600480360381019061048c919061395b565b6112b1565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613ca8565b6112d1565b005b3480156104c857600080fd5b506104e360048036038101906104de9190613ca8565b61132d565b6040516104f091906146b5565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613b49565b611358565b60405161052d9190614671565b60405180910390f35b34801561054257600080fd5b5061054b611604565b6040516105589190614aaf565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613ca8565b611609565b60405161059591906145e1565b60405180910390f35b3480156105aa57600080fd5b506105b36116bb565b6040516105c09190614aaf565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb91906138f6565b6116c1565b6040516105fd9190614aaf565b60405180910390f35b34801561061257600080fd5b5061061b611779565b005b34801561062957600080fd5b50610632611801565b60405161063f9190614aaf565b60405180910390f35b34801561065457600080fd5b5061065d611812565b60405161066a91906145e1565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190613ca8565b61183c565b005b3480156106a857600080fd5b506106b1611919565b6040516106be91906146d0565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e99190613ca8565b6119ab565b6040516106fb9190614a72565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613c3e565b611b44565b005b34801561073957600080fd5b50610754600480360381019061074f9190613a25565b611bda565b005b34801561076257600080fd5b5061077d60048036038101906107789190613ca8565b611d5b565b005b34801561078b57600080fd5b506107a660048036038101906107a191906139aa565b611de1565b005b3480156107b457600080fd5b506107cf60048036038101906107ca9190613af5565b611e43565b6040516107dc9190614693565b60405180910390f35b3480156107f157600080fd5b5061080c60048036038101906108079190613ca8565b6120db565b60405161081991906146d0565b60405180910390f35b34801561082e57600080fd5b50610837612182565b60405161084491906146b5565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190613cd1565b612195565b005b34801561088257600080fd5b5061088b612415565b60405161089891906146d0565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c3919061391f565b61243d565b6040516108d591906146b5565b60405180910390f35b3480156108ea57600080fd5b50610905600480360381019061090091906138f6565b6124d1565b005b34801561091357600080fd5b5061092e60048036038101906109299190613b9d565b6125c9565b005b61094a600480360381019061094591906138f6565b612747565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a275750610a2682612813565b5b9050919050565b606060008054610a3d90614f27565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6990614f27565b8015610ab65780601f10610a8b57610100808354040283529160200191610ab6565b820191906000526020600020905b815481529060010190602001808311610a9957829003601f168201915b5050505050905090565b6000610acb8261287d565b610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b01906148d2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5082611609565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb8906149b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be06128e9565b73ffffffffffffffffffffffffffffffffffffffff161480610c0f5750610c0e81610c096128e9565b61243d565b5b610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590614832565b60405180910390fd5b610c5883836128f1565b505050565b60011515600d60009054906101000a900460ff16151514610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90614a52565b60405180910390fd5b6000600e5411610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef906146f2565b60405180910390fd5b600081118015610d15575080600e54610d119190614dc3565b3410155b610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90614792565b60405180910390fd5b600f5481610d62600c6129aa565b610d6c9190614d00565b1115610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490614892565b60405180910390fd5b6000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610e81576005811115610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f90614972565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f66565b6005600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482610ece9190614d00565b1115610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690614972565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f5e9190614d00565b925050819055505b60005b81811015610fb157610f7b60076129b8565b610f85600c6129b8565b6000610f9160076129aa565b9050610f9d33826129ce565b508080610fa990614fb5565b915050610f69565b507fe560ed4dd5ff349ae224ed770bdf0c9d68701c85e89fc3141b7a0ce3ec70257a3382604051610fe3929190614648565b60405180910390a150565b610ff66128e9565b73ffffffffffffffffffffffffffffffffffffffff16611014611812565b73ffffffffffffffffffffffffffffffffffffffff161461106a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611061906148f2565b60405180910390fd5b80600860006101000a81548161ffff021916908361ffff16021790555050565b600860009054906101000a900461ffff1681565b6110af6110a96128e9565b826129ec565b6110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590614a12565b60405180910390fd5b6110f9838383612aca565b505050565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080915050919050565b600f5481565b6111a56128e9565b73ffffffffffffffffffffffffffffffffffffffff166111c3611812565b73ffffffffffffffffffffffffffffffffffffffff1614611219576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611210906148f2565b60405180910390fd5b6000611266848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505083611358565b9050611273816001611e43565b507f26462df50377756277d5eb2d3b25fcd597a0914afef7c720cfd21f733191d26a816040516112a39190614671565b60405180910390a150505050565b6112cc83838360405180602001604052806000815250611de1565b505050565b6112e26112dc6128e9565b826129ec565b611321576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611318906149f2565b60405180910390fd5b61132a81612d26565b50565b600a6020528060005260406000206000915090508060010160009054906101000a900460ff16905081565b6060825182111561139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139590614812565b60405180910390fd5b8167ffffffffffffffff8111156113de577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561140c5781602001602082028036833780820191505090505b50905060005b828110156115fd5760008185516114299190614e1d565b82334144454260405160200161144496959493929190614571565b6040516020818303038152906040528051906020012060001c611467919061503e565b90508481815181106114a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518383815181106114e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505084600183875161152d9190614e1d565b6115379190614e1d565b8151811061156e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518582815181106115af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505080806115f590614fb5565b915050611412565b5092915050565b600581565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a990614872565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990614852565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117816128e9565b73ffffffffffffffffffffffffffffffffffffffff1661179f611812565b73ffffffffffffffffffffffffffffffffffffffff16146117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec906148f2565b60405180910390fd5b6117ff6000612e37565b565b600061180d600c6129aa565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118446128e9565b73ffffffffffffffffffffffffffffffffffffffff16611862611812565b73ffffffffffffffffffffffffffffffffffffffff16146118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af906148f2565b60405180910390fd5b600860009054906101000a900461ffff1661ffff1681111561190f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190690614992565b60405180910390fd5b80600f8190555050565b60606001805461192890614f27565b80601f016020809104026020016040519081016040528092919081815260200182805461195490614f27565b80156119a15780601f10611976576101008083540402835291602001916119a1565b820191906000526020600020905b81548152906001019060200180831161198457829003601f168201915b5050505050905090565b6119b36135bf565b600a600083815260200190815260200160002060405180604001604052908160008201805480602002602001604051908101604052809291908181526020016000905b82821015611b1a57838290600052602060002090600302016040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182018054611a7f90614f27565b80601f0160208091040260200160405190810160405280929190818152602001828054611aab90614f27565b8015611af85780601f10611acd57610100808354040283529160200191611af8565b820191906000526020600020905b815481529060010190602001808311611adb57829003601f168201915b50505050508152602001600282015481525050815260200190600101906119f6565b5050505081526020016001820160009054906101000a900460ff1615151515815250509050919050565b611b4c6128e9565b73ffffffffffffffffffffffffffffffffffffffff16611b6a611812565b73ffffffffffffffffffffffffffffffffffffffff1614611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb7906148f2565b60405180910390fd5b8060099080519060200190611bd69291906135db565b5050565b611be26128e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c47906147d2565b60405180910390fd5b8060056000611c5d6128e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d0a6128e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d4f91906146b5565b60405180910390a35050565b611d636128e9565b73ffffffffffffffffffffffffffffffffffffffff16611d81611812565b73ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce906148f2565b60405180910390fd5b80600e8190555050565b611df2611dec6128e9565b836129ec565b611e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2890614a12565b60405180910390fd5b611e3d84848484612efd565b50505050565b6060611e4d6128e9565b73ffffffffffffffffffffffffffffffffffffffff16611e6b611812565b73ffffffffffffffffffffffffffffffffffffffff1614611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb8906148f2565b60405180910390fd5b611ecb60076129aa565b8261ffff168451611edc9190614dc3565b611ee69190614d00565b600860009054906101000a900461ffff1661ffff161015611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f33906149d2565b60405180910390fd5b60008261ffff168451611f4f9190614dc3565b67ffffffffffffffff811115611f8e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611fbc5781602001602082028036833780820191505090505b50905060005b84518161ffff1610156120d05760005b8461ffff168161ffff1610156120bc57611fec60076129b8565b6000611ff860076129aa565b9050612048878461ffff168151811061203a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151826129ce565b80848388866120579190614d87565b6120619190614cc8565b61ffff168151811061209c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505080806120b490614f8a565b915050611fd2565b5080806120c890614f8a565b915050611fc2565b508091505092915050565b60606120e68261287d565b612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90614932565b60405180910390fd5b600061212f612f59565b9050600081511161214f576040518060200160405280600081525061217a565b8061215984612feb565b60405160200161216a92919061452b565b6040516020818303038152906040525b915050919050565b600d60009054906101000a900460ff1681565b6121a66121a06128e9565b846129ec565b6121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614952565b60405180910390fd5b600a600084815260200190815260200160002060010160009054906101000a900460ff1615612249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224090614a32565b60405180910390fd5b600061225484611609565b9050600060405180606001604052808373ffffffffffffffffffffffffffffffffffffffff16815260200185858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508152602001428152509050600a600086815260200190815260200160002060000181908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010190805190602001906123729291906135db565b506040820151816002015550506001600a600087815260200190815260200160002060010160006101000a81548160ff0219169083151502179055507f041be98575cc32bd3a49c705e9d0b525e3e43e2cde3e3fc3900688462c128e2e856001600a6000898152602001908152602001600020600001805490506123f69190614e1d565b8460405161240693929190614aca565b60405180910390a15050505050565b60606009604051602001612429919061454f565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124d96128e9565b73ffffffffffffffffffffffffffffffffffffffff166124f7611812565b73ffffffffffffffffffffffffffffffffffffffff161461254d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612544906148f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b490614752565b60405180910390fd5b6125c681612e37565b50565b6125d16128e9565b73ffffffffffffffffffffffffffffffffffffffff166125ef611812565b73ffffffffffffffffffffffffffffffffffffffff1614612645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263c906148f2565b60405180910390fd5b6001151583151514156127265760008211612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268c90614732565b60405180910390fd5b6000811180156126b95750600860009054906101000a900461ffff1661ffff168111155b6126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef90614992565b60405180910390fd5b81600e8190555080600f819055506001600d60006101000a81548160ff021916908315150217905550612742565b6000600d60006101000a81548160ff0219169083151502179055505b505050565b61274f6128e9565b73ffffffffffffffffffffffffffffffffffffffff1661276d611812565b73ffffffffffffffffffffffffffffffffffffffff16146127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba906148f2565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561280e573d6000803e3d6000fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661296483611609565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6129e8828260405180602001604052806000815250613198565b5050565b60006129f78261287d565b612a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2d906147f2565b60405180910390fd5b6000612a4183611609565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ab057508373ffffffffffffffffffffffffffffffffffffffff16612a9884610ac0565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ac15750612ac0818561243d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612aea82611609565b73ffffffffffffffffffffffffffffffffffffffff1614612b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3790614912565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba7906147b2565b60405180910390fd5b612bbb8383836131f3565b612bc66000826128f1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c169190614e1d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c6d9190614d00565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612d3182611609565b9050612d3f816000846131f3565b612d4a6000836128f1565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d9a9190614e1d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f08848484612aca565b612f1484848484613203565b612f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4a90614712565b60405180910390fd5b50505050565b606060098054612f6890614f27565b80601f0160208091040260200160405190810160405280929190818152602001828054612f9490614f27565b8015612fe15780601f10612fb657610100808354040283529160200191612fe1565b820191906000526020600020905b815481529060010190602001808311612fc457829003601f168201915b5050505050905090565b60606000821415613033576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613193565b600082905060005b6000821461306557808061304e90614fb5565b915050600a8261305e9190614d56565b915061303b565b60008167ffffffffffffffff8111156130a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130d95781602001600182028036833780820191505090505b5090505b6000851461318c576001826130f29190614e1d565b9150600a85613101919061503e565b603061310d9190614d00565b60f81b818381518110613149577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131859190614d56565b94506130dd565b8093505050505b919050565b6131a2838361339a565b6131af6000848484613203565b6131ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e590614712565b60405180910390fd5b505050565b6131fe838383613568565b505050565b60006132248473ffffffffffffffffffffffffffffffffffffffff166135a7565b1561338d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261324d6128e9565b8786866040518563ffffffff1660e01b815260040161326f94939291906145fc565b602060405180830381600087803b15801561328957600080fd5b505af19250505080156132ba57506040513d601f19601f820116820180604052508101906132b79190613c15565b60015b61333d573d80600081146132ea576040519150601f19603f3d011682016040523d82523d6000602084013e6132ef565b606091505b50600081511415613335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332c90614712565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613392565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561340a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613401906148b2565b60405180910390fd5b6134138161287d565b15613453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344a90614772565b60405180910390fd5b61345f600083836131f3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134af9190614d00565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6135738383836135ba565b6000600a600083815260200190815260200160002060010160006101000a81548160ff021916908315150217905550505050565b600080823b905060008111915050919050565b505050565b6040518060400160405280606081526020016000151581525090565b8280546135e790614f27565b90600052602060002090601f0160209004810192826136095760008555613650565b82601f1061362257805160ff1916838001178555613650565b82800160010185558215613650579182015b8281111561364f578251825591602001919060010190613634565b5b50905061365d9190613661565b5090565b5b8082111561367a576000816000905550600101613662565b5090565b600061369161368c84614b26565b614b01565b905080838252602082019050828560208602820111156136b057600080fd5b60005b858110156136e057816136c68882613766565b8452602084019350602083019250506001810190506136b3565b5050509392505050565b60006136fd6136f884614b52565b614b01565b90508281526020810184848401111561371557600080fd5b613720848285614ee5565b509392505050565b600061373b61373684614b83565b614b01565b90508281526020810184848401111561375357600080fd5b61375e848285614ee5565b509392505050565b600081359050613775816157dc565b92915050565b60008083601f84011261378d57600080fd5b8235905067ffffffffffffffff8111156137a657600080fd5b6020830191508360208202830111156137be57600080fd5b9250929050565b600082601f8301126137d657600080fd5b81356137e684826020860161367e565b91505092915050565b6000813590506137fe816157f3565b92915050565b6000813590506138138161580a565b92915050565b6000815190506138288161580a565b92915050565b600082601f83011261383f57600080fd5b813561384f8482602086016136ea565b91505092915050565b60008083601f84011261386a57600080fd5b8235905067ffffffffffffffff81111561388357600080fd5b60208301915083600182028301111561389b57600080fd5b9250929050565b600082601f8301126138b357600080fd5b81356138c3848260208601613728565b91505092915050565b6000813590506138db81615821565b92915050565b6000813590506138f081615838565b92915050565b60006020828403121561390857600080fd5b600061391684828501613766565b91505092915050565b6000806040838503121561393257600080fd5b600061394085828601613766565b925050602061395185828601613766565b9150509250929050565b60008060006060848603121561397057600080fd5b600061397e86828701613766565b935050602061398f86828701613766565b92505060406139a0868287016138e1565b9150509250925092565b600080600080608085870312156139c057600080fd5b60006139ce87828801613766565b94505060206139df87828801613766565b93505060406139f0878288016138e1565b925050606085013567ffffffffffffffff811115613a0d57600080fd5b613a198782880161382e565b91505092959194509250565b60008060408385031215613a3857600080fd5b6000613a4685828601613766565b9250506020613a57858286016137ef565b9150509250929050565b60008060408385031215613a7457600080fd5b6000613a8285828601613766565b9250506020613a93858286016138e1565b9150509250929050565b600080600060408486031215613ab257600080fd5b600084013567ffffffffffffffff811115613acc57600080fd5b613ad88682870161377b565b93509350506020613aeb868287016138e1565b9150509250925092565b60008060408385031215613b0857600080fd5b600083013567ffffffffffffffff811115613b2257600080fd5b613b2e858286016137c5565b9250506020613b3f858286016138cc565b9150509250929050565b60008060408385031215613b5c57600080fd5b600083013567ffffffffffffffff811115613b7657600080fd5b613b82858286016137c5565b9250506020613b93858286016138e1565b9150509250929050565b600080600060608486031215613bb257600080fd5b6000613bc0868287016137ef565b9350506020613bd1868287016138e1565b9250506040613be2868287016138e1565b9150509250925092565b600060208284031215613bfe57600080fd5b6000613c0c84828501613804565b91505092915050565b600060208284031215613c2757600080fd5b6000613c3584828501613819565b91505092915050565b600060208284031215613c5057600080fd5b600082013567ffffffffffffffff811115613c6a57600080fd5b613c76848285016138a2565b91505092915050565b600060208284031215613c9157600080fd5b6000613c9f848285016138cc565b91505092915050565b600060208284031215613cba57600080fd5b6000613cc8848285016138e1565b91505092915050565b600080600060408486031215613ce657600080fd5b6000613cf4868287016138e1565b935050602084013567ffffffffffffffff811115613d1157600080fd5b613d1d86828701613858565b92509250509250925092565b6000613d358383613d84565b60208301905092915050565b6000613d4d838361445a565b905092915050565b6000613d6183836144f6565b60208301905092915050565b613d7e613d7982614e63565b615010565b82525050565b613d8d81614e51565b82525050565b613d9c81614e51565b82525050565b613db3613dae82614e51565b614ffe565b82525050565b6000613dc482614bf9565b613dce8185614c57565b9350613dd983614bb4565b8060005b83811015613e0a578151613df18882613d29565b9750613dfc83614c30565b925050600181019050613ddd565b5085935050505092915050565b6000613e2282614c04565b613e2c8185614c68565b935083602082028501613e3e85614bc4565b8060005b85811015613e7a5784840389528151613e5b8582613d41565b9450613e6683614c3d565b925060208a01995050600181019050613e42565b50829750879550505050505092915050565b6000613e9782614c0f565b613ea18185614c79565b9350613eac83614bd4565b8060005b83811015613edd578151613ec48882613d55565b9750613ecf83614c4a565b925050600181019050613eb0565b5085935050505092915050565b613ef381614e75565b82525050565b613f0281614e75565b82525050565b6000613f1382614c1a565b613f1d8185614c8a565b9350613f2d818560208601614ef4565b613f368161512b565b840191505092915050565b6000613f4c82614c25565b613f568185614c9b565b9350613f66818560208601614ef4565b613f6f8161512b565b840191505092915050565b6000613f8582614c25565b613f8f8185614cac565b9350613f9f818560208601614ef4565b613fa88161512b565b840191505092915050565b6000613fbe82614c25565b613fc88185614cbd565b9350613fd8818560208601614ef4565b80840191505092915050565b60008154613ff181614f27565b613ffb8186614cbd565b9450600182166000811461401657600181146140275761405a565b60ff1983168652818601935061405a565b61403085614be4565b60005b8381101561405257815481890152600182019150602081019050614033565b838801955050505b50505092915050565b6000614070601383614cac565b915061407b82615149565b602082019050919050565b6000614093601683614cbd565b915061409e82615172565b601682019050919050565b60006140b6603283614cac565b91506140c18261519b565b604082019050919050565b60006140d9600b83614cac565b91506140e4826151ea565b602082019050919050565b60006140fc602683614cac565b915061410782615213565b604082019050919050565b600061411f601c83614cac565b915061412a82615262565b602082019050919050565b6000614142601083614cac565b915061414d8261528b565b602082019050919050565b6000614165602483614cac565b9150614170826152b4565b604082019050919050565b6000614188601983614cac565b915061419382615303565b602082019050919050565b60006141ab602c83614cac565b91506141b68261532c565b604082019050919050565b60006141ce603783614cac565b91506141d98261537b565b604082019050919050565b60006141f1603883614cac565b91506141fc826153ca565b604082019050919050565b6000614214602a83614cac565b915061421f82615419565b604082019050919050565b6000614237602983614cac565b915061424282615468565b604082019050919050565b600061425a601683614cac565b9150614265826154b7565b602082019050919050565b600061427d602083614cac565b9150614288826154e0565b602082019050919050565b60006142a0602c83614cac565b91506142ab82615509565b604082019050919050565b60006142c3602083614cac565b91506142ce82615558565b602082019050919050565b60006142e6602983614cac565b91506142f182615581565b604082019050919050565b6000614309602f83614cac565b9150614314826155d0565b604082019050919050565b600061432c602083614cac565b91506143378261561f565b602082019050919050565b600061434f601183614cac565b915061435a82615648565b602082019050919050565b6000614372601a83614cac565b915061437d82615671565b602082019050919050565b6000614395602183614cac565b91506143a08261569a565b604082019050919050565b60006143b8601183614cac565b91506143c3826156e9565b602082019050919050565b60006143db602083614cac565b91506143e682615712565b602082019050919050565b60006143fe603183614cac565b91506144098261573b565b604082019050919050565b6000614421601183614cac565b915061442c8261578a565b602082019050919050565b6000614444601583614cac565b915061444f826157b3565b602082019050919050565b60006060830160008301516144726000860182613d84565b506020830151848203602086015261448a8282613f41565b915050604083015161449f60408601826144f6565b508091505092915050565b600060408301600083015184820360008601526144c78282613e17565b91505060208301516144dc6020860182613eea565b508091505092915050565b6144f081614ead565b82525050565b6144ff81614edb565b82525050565b61450e81614edb565b82525050565b61452561452082614edb565b615034565b82525050565b60006145378285613fb3565b91506145438284613fb3565b91508190509392505050565b600061455b8284613fe4565b915061456682614086565b915081905092915050565b600061457d8289614514565b60208201915061458d8288613da2565b60148201915061459d8287613d6d565b6014820191506145ad8286614514565b6020820191506145bd8285614514565b6020820191506145cd8284614514565b602082019150819050979650505050505050565b60006020820190506145f66000830184613d93565b92915050565b60006080820190506146116000830187613d93565b61461e6020830186613d93565b61462b6040830185614505565b818103606083015261463d8184613f08565b905095945050505050565b600060408201905061465d6000830185613d93565b61466a6020830184614505565b9392505050565b6000602082019050818103600083015261468b8184613db9565b905092915050565b600060208201905081810360008301526146ad8184613e8c565b905092915050565b60006020820190506146ca6000830184613ef9565b92915050565b600060208201905081810360008301526146ea8184613f7a565b905092915050565b6000602082019050818103600083015261470b81614063565b9050919050565b6000602082019050818103600083015261472b816140a9565b9050919050565b6000602082019050818103600083015261474b816140cc565b9050919050565b6000602082019050818103600083015261476b816140ef565b9050919050565b6000602082019050818103600083015261478b81614112565b9050919050565b600060208201905081810360008301526147ab81614135565b9050919050565b600060208201905081810360008301526147cb81614158565b9050919050565b600060208201905081810360008301526147eb8161417b565b9050919050565b6000602082019050818103600083015261480b8161419e565b9050919050565b6000602082019050818103600083015261482b816141c1565b9050919050565b6000602082019050818103600083015261484b816141e4565b9050919050565b6000602082019050818103600083015261486b81614207565b9050919050565b6000602082019050818103600083015261488b8161422a565b9050919050565b600060208201905081810360008301526148ab8161424d565b9050919050565b600060208201905081810360008301526148cb81614270565b9050919050565b600060208201905081810360008301526148eb81614293565b9050919050565b6000602082019050818103600083015261490b816142b6565b9050919050565b6000602082019050818103600083015261492b816142d9565b9050919050565b6000602082019050818103600083015261494b816142fc565b9050919050565b6000602082019050818103600083015261496b8161431f565b9050919050565b6000602082019050818103600083015261498b81614342565b9050919050565b600060208201905081810360008301526149ab81614365565b9050919050565b600060208201905081810360008301526149cb81614388565b9050919050565b600060208201905081810360008301526149eb816143ab565b9050919050565b60006020820190508181036000830152614a0b816143ce565b9050919050565b60006020820190508181036000830152614a2b816143f1565b9050919050565b60006020820190508181036000830152614a4b81614414565b9050919050565b60006020820190508181036000830152614a6b81614437565b9050919050565b60006020820190508181036000830152614a8c81846144aa565b905092915050565b6000602082019050614aa960008301846144e7565b92915050565b6000602082019050614ac46000830184614505565b92915050565b6000606082019050614adf6000830186614505565b614aec6020830185614505565b614af96040830184613d93565b949350505050565b6000614b0b614b1c565b9050614b178282614f59565b919050565b6000604051905090565b600067ffffffffffffffff821115614b4157614b406150fc565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b6d57614b6c6150fc565b5b614b768261512b565b9050602081019050919050565b600067ffffffffffffffff821115614b9e57614b9d6150fc565b5b614ba78261512b565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614cd382614ead565b9150614cde83614ead565b92508261ffff03821115614cf557614cf461506f565b5b828201905092915050565b6000614d0b82614edb565b9150614d1683614edb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d4b57614d4a61506f565b5b828201905092915050565b6000614d6182614edb565b9150614d6c83614edb565b925082614d7c57614d7b61509e565b5b828204905092915050565b6000614d9282614ead565b9150614d9d83614ead565b92508161ffff0483118215151615614db857614db761506f565b5b828202905092915050565b6000614dce82614edb565b9150614dd983614edb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e1257614e1161506f565b5b828202905092915050565b6000614e2882614edb565b9150614e3383614edb565b925082821015614e4657614e4561506f565b5b828203905092915050565b6000614e5c82614ebb565b9050919050565b6000614e6e82614ebb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f12578082015181840152602081019050614ef7565b83811115614f21576000848401525b50505050565b60006002820490506001821680614f3f57607f821691505b60208210811415614f5357614f526150cd565b5b50919050565b614f628261512b565b810181811067ffffffffffffffff82111715614f8157614f806150fc565b5b80604052505050565b6000614f9582614ead565b915061ffff821415614faa57614fa961506f565b5b600182019050919050565b6000614fc082614edb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614ff357614ff261506f565b5b600182019050919050565b600061500982615022565b9050919050565b600061501b82615022565b9050919050565b600061502d8261513c565b9050919050565b6000819050919050565b600061504982614edb565b915061505483614edb565b9250826150645761506361509e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f7a65726f206d696e696d756d20616d6f756e7400000000000000000000000000600082015250565b7f636f6e74726163742d6d657461646174612e6a736f6e00000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f7a65726f20616d6f756e74000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f616d6f756e7420746f6f20736d616c6c00000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f616d6f756e745f206d757374206265206c657373207468616e206f722065717560008201527f616c20746f206164647265737365735f2e6c656e677468000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f7265616368207072652d6f7264657220737570706c7900000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b7f7265616368206f72646572206c696d6974000000000000000000000000000000600082015250565b7f696e636f7272656374207072652d6f7264657220737570706c79000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f75676820737570706c79000000000000000000000000000000600082015250565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6c6f67626f6f6b206973206c6f636b6564000000000000000000000000000000600082015250565b7f7072652d6f72646572206e6f7420737461727465640000000000000000000000600082015250565b6157e581614e51565b81146157f057600080fd5b50565b6157fc81614e75565b811461580757600080fd5b50565b61581381614e81565b811461581e57600080fd5b50565b61582a81614ead565b811461583557600080fd5b50565b61584181614edb565b811461584c57600080fd5b5056fea26469706673582212203939254c8450a9ffa9f755d0ead2696d7e452cf44ad9608ae93ae3c5a7b3692f64736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000005dc0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000c54726176656c6f6767657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c4f4752530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a5a6d7a31737257316d33793168503153433759455a4c70566b624354444a48714c567436423170546d4e742f00000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Traveloggers
Arg [1] : symbol_ (string): LOGRS
Arg [2] : supply_ (uint16): 1500
Arg [3] : sharedBaseURI_ (string): ipfs://QmZZmz1srW1m3y1hP1SC7YEZLpVkbCTDJHqLVt6B1pTmNt/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000005dc
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 54726176656c6f67676572730000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4c4f475253000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d5a5a6d7a31737257316d33793168503153433759455a4c
Arg [10] : 70566b624354444a48714c567436423170546d4e742f00000000000000000000


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.