ETH Price: $3,159.68 (+1.56%)

Token

num8ers (num8ers)
 

Overview

Max Total Supply

529 num8ers

Holders

62

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tatlee.eth
Balance
21 num8ers
0x06c5606ff51ea7c1908f8f88056333dfcedd940c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DropspaceSale

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : DropspaceSale.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;

import "./IDropspaceSale.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract DropspaceSale is IDropspaceSale, ERC721, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public override totalSupply = 0;
    uint256 public override mintLimit;
    uint256 public override mintPrice;
    uint256 public override supplyLimit;

    string public override baseURI;

    bool public override smartContractAllowance = false;
    bool public override saleActive;
    bool public override presaleActive;
    bool public override whitelistSaleActive;

    address payable public override withdrawalWallet;
    address payable public override devWallet;
    address public override ticketAddress;

    bool public override whitelistBuyOnce;

    uint256 devSaleShare;
    uint256 ownerSaleShare;

    mapping(uint256 => bool) public override usedTickets;
    mapping(address => bool) public override whitelist;

    constructor(
        uint256 _supplyLimit, 
        uint256 _mintLimit,
        uint256 _mintPrice,
        uint256 _devSaleShare,
        address payable _withdrawalWallet,
        address payable _devWallet,
        address _ticketAddress,
        string memory _name,
        string memory _ticker,
        string memory _baseURI
    ) ERC721(_name, _ticker) {
        supplyLimit = _supplyLimit;
        mintLimit = _mintLimit;
        mintPrice = _mintPrice;
        withdrawalWallet = _withdrawalWallet;
        devWallet = _devWallet;
        ticketAddress = _ticketAddress;
        baseURI = _baseURI;
        devSaleShare = _devSaleShare;
        ownerSaleShare = uint256(10000).sub(devSaleShare);
    }

    modifier onlyWithdrawalWallet() {
        require(address(withdrawalWallet) == _msgSender(), 
            "DropspaceSale: caller is not the withdrawal wallet");
        _;
    }

    function setWhitelistBuyOnce(bool _whitelistBuyOnce) external onlyOwner override {
        whitelistBuyOnce = _whitelistBuyOnce;
        emit WhitelistBuyOnceChanged(whitelistBuyOnce);
    }

    function emergencyWithdraw() external onlyOwner override {
        payable(owner()).transfer(address(this).balance);
    }

    function changeSupplyLimit(uint256 _supplyLimit) external onlyOwner override {
        supplyLimit = _supplyLimit;
        emit SupplyLimitChanged(_supplyLimit);
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner override {
        mintPrice = _mintPrice;
        emit MintPriceChanged(_mintPrice);
    }

    function setWhitelistStatus(address _user, bool _status) public onlyOwner override {
        whitelist[_user] = _status;
        emit WhitelistStatusChanged(_user, _status);
    }

    function addWhitelist(address[] memory _userList) external onlyOwner override {
        for(uint256 i = 0; i < _userList.length; i++) {
            whitelist[_userList[i]] = true;
            emit WhiteListAdded(_userList[i], true);
        }
    }

    function setDevSaleShare(uint256 _devSaleShare) external override onlyOwner {
        devSaleShare = _devSaleShare;
        ownerSaleShare = uint256(10000).sub(devSaleShare);
        emit DevShareSaleChanged(devSaleShare);
    }

    function toggleSaleActive() external onlyOwner override {
        saleActive = !saleActive;
        emit ToggleSaleState(saleActive);
    }

    function toggleWhitelistSaleActive() external onlyOwner override {
        whitelistSaleActive = !whitelistSaleActive;
        emit ToggleWhitelistSaleState(whitelistSaleActive);
    }

    function setBaseURI(string memory _baseURI) external onlyOwner override {
        baseURI = _baseURI;
        emit BaseURIChanged(baseURI);
    }

    function setSmartContractAllowance(bool _smartContractAllowance) external onlyOwner override {
        smartContractAllowance = _smartContractAllowance;
        emit SmartContractAllowanceChanged(smartContractAllowance);
    }

    function setWithdrawalWallet(address payable _withdrawalWallet) external onlyOwner override {
        withdrawalWallet = _withdrawalWallet;
        emit WithdrawalWalletChanged(withdrawalWallet);
    }

    function setDevWallet(address payable _devWallet) external onlyOwner override {
        devWallet = _devWallet;
        emit DevWalletChanged(devWallet);
    }

    function setMintLimit(uint256 _mintLimit) external onlyOwner override {
        mintLimit = _mintLimit;
        emit MintLimitChanged(mintLimit);
    }

    function withdraw() external onlyOwner override  {
        uint256 contractBalance = address(this).balance;
        devWallet.transfer(contractBalance.mul(devSaleShare).div(10000));
        withdrawalWallet.transfer(contractBalance.mul(ownerSaleShare).div(10000));
    }

    function reserve(uint256 _amount) external onlyOwner override {
        _mint(_amount);
        emit Reserve(_amount);
    }

    function buy(uint256 _amount) external override payable {
        require(saleActive, "Dropspace::buy: Sale is not active.");
        require(_amount <= mintLimit, "Dropspace::buy: Too many tokens for one transaction.");
        require(msg.value >= mintPrice.mul(_amount), "Dropspace::buy: Insufficient payment.");

        if (!smartContractAllowance) {
            require(tx.origin == _msgSender(), "Dropspace::buy: Smart contracts are not allowed to buy.");
        }

        _mint(_amount);
    }

    function _mint(uint256 _amount) internal {
        require(totalSupply.add(_amount) <= supplyLimit, "Not enough tokens left.");

        uint256 newId = totalSupply;
        for(uint i = 0; i < _amount; i++) {
            newId = newId.add(1);
            totalSupply = totalSupply.add(1);

            _safeMint(_msgSender(), newId);
            emit Mint(_msgSender(), newId, tokenURI(newId));
        }
    }

    function tokenURI(uint256 _tokenId) public view override returns(string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

        return bytes(baseURI).length > 0 ? 
            string(abi.encodePacked(baseURI, _tokenId.toString())) : "";
    }

    function togglePresaleActive() external onlyOwner override {
        presaleActive = !presaleActive;
        emit TogglePresaleState(presaleActive);
    }

    function setTicketAddress(address _ticketAddress) external onlyOwner override {
        require(_ticketAddress != address(0), "DropSpaceSale::setTicketAddress: Invalid address.");
        ticketAddress = _ticketAddress;
        emit TicketAddressChanged(_ticketAddress);
    }

    function presaleBuy(uint256 _ticketId, uint _amount) external payable override {
        require(presaleActive, "Dropspace::presaleBuy: Presale is not Active.");
        require(ERC721(ticketAddress).ownerOf(_ticketId) == _msgSender(), "Dropspace::presaleBuy: invalid ticket.");
        require(!usedTickets[_ticketId], "Dropspace::presaleBuy: Ticket already used.");
        require(_amount <= mintLimit, "Dropspace::presaleBuy: Too many tokens for one transaction.");
        require(msg.value >= mintPrice.mul(_amount), "Dropspace::presaleBuy: Insufficient payment.");

        usedTickets[_ticketId] = true;
        _mint(_amount);
        emit PresaleBuy(_msgSender(), _ticketId, _amount);
    }

    function whitelistBuy(uint256 _amount) external payable override {
        require(whitelistSaleActive, "DropSpaceSale::whitelistBuy: Whitelist Buy is not Active.");
        require(_amount <= mintLimit, "Dropspace::presaleBuy: Too many tokens for one transaction.");
        require(msg.value >= mintPrice.mul(_amount), "Dropspace::presaleBuy: Insufficient payment.");
        require(whitelist[_msgSender()], "Dropspace::whitelistBuy: You are not whitelisted."); 

        emit WhitelistBuy(_msgSender(), _amount);
        _mint(_amount);

        if (whitelistBuyOnce) {
            whitelist[_msgSender()] = false;
        }
    }

    function clearTicket(uint256 _ticketId) external override onlyOwner{
        require(usedTickets[_ticketId], "Dropspace::clearTicket: Ticket is not used");
        usedTickets[_ticketId] = false;
        emit TicketCleared(_ticketId);
    }

    receive() external override payable {}
}

File 2 of 13 : IDropspaceSale.sol
// SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.4;

interface IDropspaceSale {
    // OWNER ONLY
    function toggleSaleActive() external;
    function togglePresaleActive() external;
    function setBaseURI(string memory _baseURI) external;
    function setWithdrawalWallet(address payable _withdrawalWallet) external;
    function setDevWallet(address payable _devWallet) external;
    function setDevSaleShare(uint256 _devSaleShare) external;
    function setMintLimit(uint256 _mintLimit) external;
    function setSmartContractAllowance(bool _smartContractAllowance) external;
    function setTicketAddress(address _ticketAddress) external;
    function reserve(uint256 _amount) external;
    function withdraw() external;
    function toggleWhitelistSaleActive() external;
    function setWhitelistStatus(address _user, bool _status) external;
    function addWhitelist(address[] memory _userList) external;
    function clearTicket(uint256 _ticketId) external;
    function changeSupplyLimit(uint256 _supplyLimit) external;
    function emergencyWithdraw() external;
    function setMintPrice(uint256 _mintPrice) external;
    function setWhitelistBuyOnce(bool _whitelistBuyOnce) external;    

    // EXTERNAL
    function buy(uint256 _amount) external payable;
    function presaleBuy(uint256 _ticketId, uint256 _amount) external payable;
    function whitelistBuy(uint256 _amount) external payable;

    // VIEW
    function totalSupply() view external returns(uint256);
    function supplyLimit() view external returns(uint256);
    function mintPrice() view external returns(uint256);
    function mintLimit() view external returns(uint256);
    function baseURI() view external returns(string memory);
    function saleActive() view external returns(bool);
    function presaleActive() view external returns(bool);
    function whitelistSaleActive() view external returns(bool);
    function smartContractAllowance() view external returns(bool);
    function devWallet() view external returns(address payable);
    function withdrawalWallet() view external returns(address payable);
    function ticketAddress() view external returns(address);
    function usedTickets(uint256 _ticketId) view external returns(bool);
    function whitelist(address _user) view external returns(bool);
    function whitelistBuyOnce() view external returns(bool);

    // EVENTS
    event Reserve(uint256 _amount);
    event Mint(address indexed _user, uint256 indexed _tokenId, string _tokenURI);
    event ToggleSaleState(bool _state);
    event BaseURIChanged(string _baseURI);
    event WithdrawalWalletChanged(address payable _newWithdrawalWallet);
    event DevWalletChanged(address payable _newDevWallet);
    event DevShareSaleChanged(uint256 _devSaleShare);
    event MintLimitChanged(uint256 _newMintLimit);
    event MintPriceChanged(uint256 _mintPrice);
    event SmartContractAllowanceChanged(bool _newSmartContractAllowance);
    event TogglePresaleState(bool _preSaleState);
    event TicketAddressChanged(address _ticketAddress);
    event PresaleBuy(address _user, uint256 _ticketId, uint256 _amount);
    event WhitelistBuy(address _user, uint256 _amount);
    event WhitelistStatusChanged(address _user, bool _status);
    event ToggleWhitelistSaleState(bool _whitelistSaleActive);
    event SupplyLimitChanged(uint256 _supplyLimit);
    event TicketCleared(uint256 _ticketId);
    event WhiteListAdded(address _user, bool _status);
    event WhitelistBuyOnceChanged(bool _whitelistBuyOnce);

    receive() external payable;
}

File 3 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

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 {
        _setApprovalForAll(_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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 6 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

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 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 11 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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":"uint256","name":"_supplyLimit","type":"uint256"},{"internalType":"uint256","name":"_mintLimit","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_devSaleShare","type":"uint256"},{"internalType":"address payable","name":"_withdrawalWallet","type":"address"},{"internalType":"address payable","name":"_devWallet","type":"address"},{"internalType":"address","name":"_ticketAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_ticker","type":"string"},{"internalType":"string","name":"_baseURI","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":"string","name":"_baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_devSaleShare","type":"uint256"}],"name":"DevShareSaleChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable","name":"_newDevWallet","type":"address"}],"name":"DevWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_tokenURI","type":"string"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_newMintLimit","type":"uint256"}],"name":"MintLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"MintPriceChanged","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":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_ticketId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"PresaleBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Reserve","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_newSmartContractAllowance","type":"bool"}],"name":"SmartContractAllowanceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"SupplyLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_ticketAddress","type":"address"}],"name":"TicketAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_ticketId","type":"uint256"}],"name":"TicketCleared","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_preSaleState","type":"bool"}],"name":"TogglePresaleState","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"ToggleSaleState","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_whitelistSaleActive","type":"bool"}],"name":"ToggleWhitelistSaleState","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"WhiteListAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"WhitelistBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_whitelistBuyOnce","type":"bool"}],"name":"WhitelistBuyOnceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"WhitelistStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable","name":"_newWithdrawalWallet","type":"address"}],"name":"WithdrawalWalletChanged","type":"event"},{"inputs":[{"internalType":"address[]","name":"_userList","type":"address[]"}],"name":"addWhitelist","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"changeSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ticketId","type":"uint256"}],"name":"clearTicket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ticketId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presaleBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devSaleShare","type":"uint256"}],"name":"setDevSaleShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_devWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_smartContractAllowance","type":"bool"}],"name":"setSmartContractAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ticketAddress","type":"address"}],"name":"setTicketAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whitelistBuyOnce","type":"bool"}],"name":"setWhitelistBuyOnce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_withdrawalWallet","type":"address"}],"name":"setWithdrawalWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"smartContractAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"ticketAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedTickets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"whitelistBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistBuyOnce","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260006007556000600c60006101000a81548160ff0219169083151502179055503480156200003157600080fd5b506040516200660138038062006601833981810160405281019062000057919062000426565b8282816000908051906020019062000071929190620002bf565b5080600190805190602001906200008a929190620002bf565b505050620000ad620000a1620001d960201b60201c565b620001e160201b60201c565b89600a81905550886008819055508760098190555085600c60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b90805190602001906200019d929190620002bf565b5086600f81905550620001c3600f54612710620002a760201b620030541790919060201c565b60108190555050505050505050505050620007db565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183620002b79190620005c0565b905092915050565b828054620002cd9062000683565b90600052602060002090601f016020900481019282620002f157600085556200033d565b82601f106200030c57805160ff19168380011785556200033d565b828001600101855582156200033d579182015b828111156200033c5782518255916020019190600101906200031f565b5b5090506200034c919062000350565b5090565b5b808211156200036b57600081600090555060010162000351565b5090565b60006200038662000380846200058a565b62000561565b9050828152602081018484840111156200039f57600080fd5b620003ac8482856200064d565b509392505050565b600081519050620003c5816200078d565b92915050565b600081519050620003dc81620007a7565b92915050565b600082601f830112620003f457600080fd5b8151620004068482602086016200036f565b91505092915050565b6000815190506200042081620007c1565b92915050565b6000806000806000806000806000806101408b8d0312156200044757600080fd5b6000620004578d828e016200040f565b9a505060206200046a8d828e016200040f565b99505060406200047d8d828e016200040f565b9850506060620004908d828e016200040f565b9750506080620004a38d828e01620003cb565b96505060a0620004b68d828e01620003cb565b95505060c0620004c98d828e01620003b4565b94505060e08b015167ffffffffffffffff811115620004e757600080fd5b620004f58d828e01620003e2565b9350506101008b015167ffffffffffffffff8111156200051457600080fd5b620005228d828e01620003e2565b9250506101208b015167ffffffffffffffff8111156200054157600080fd5b6200054f8d828e01620003e2565b9150509295989b9194979a5092959850565b60006200056d62000580565b90506200057b8282620006b9565b919050565b6000604051905090565b600067ffffffffffffffff821115620005a857620005a76200074d565b5b620005b3826200077c565b9050602081019050919050565b6000620005cd8262000643565b9150620005da8362000643565b925082821015620005f057620005ef620006ef565b5b828203905092915050565b6000620006088262000623565b9050919050565b60006200061c8262000623565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200066d57808201518184015260208101905062000650565b838111156200067d576000848401525b50505050565b600060028204905060018216806200069c57607f821691505b60208210811415620006b357620006b26200071e565b5b50919050565b620006c4826200077c565b810181811067ffffffffffffffff82111715620006e657620006e56200074d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200079881620005fb565b8114620007a457600080fd5b50565b620007b2816200060f565b8114620007be57600080fd5b50565b620007cc8162000643565b8114620007d857600080fd5b50565b615e1680620007eb6000396000f3fe60806040526004361061031e5760003560e01c80636c0360eb116101ab578063a22cb465116100f7578063d96a094a11610095578063ed9a5bbb1161006f578063ed9a5bbb14610b30578063edac985b14610b59578063f2fde38b14610b82578063f4a0a52814610bab57610325565b8063d96a094a14610ac0578063db2e21bc14610adc578063e985e9c514610af357610325565b8063b89fe999116100d1578063b89fe99914610a18578063c87b56dd14610a2f578063d44e357314610a6c578063d7e2875c14610a9557610325565b8063a22cb4651461099d578063ab26320e146109c6578063b88d4fde146109ef57610325565b806389b0649b1161016457806395d89b411161013e57806395d89b41146108e1578063996517cf1461090c5780639b19251a146109375780639e6a1d7d1461097457610325565b806389b0649b146108745780638da5cb5b1461088b5780638ea5220f146108b657610325565b80636c0360eb1461076657806370a0823114610791578063715018a6146107ce57806371efdc21146107e557806375796f7614610822578063819b25ba1461084b57610325565b80633ad7f56c1161026a57806357a8e3fe116102235780636352211e116101fd5780636352211e146106a8578063646d7a7f146106e55780636817c76c1461071057806368428a1b1461073b57610325565b806357a8e3fe1461062b578063591e194b146106565780635c4e7e061461067f57610325565b80633ad7f56c146105415780633ccfd60b1461056c57806342842e0e146105835780634a7d80b3146105ac57806353135ca0146105d757806355f804b31461060257610325565b80630c424284116102d75780631f53ac02116102b15780631f53ac02146104bc57806323b872dd146104e55780632ac7a2b31461050e5780633100a5351461052a57610325565b80630c4242841461043d57806318160ddd1461046657806319d1997a1461049157610325565b806301ffc9a71461032a57806306fdde0314610367578063081812fc1461039257806308e99287146103cf578063095ea7b3146103f85780630983061c1461042157610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c91906143fe565b610bd4565b60405161035e9190614c1d565b60405180910390f35b34801561037357600080fd5b5061037c610cb6565b6040516103899190614c38565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190614491565b610d48565b6040516103c69190614b12565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906143d5565b610dcd565b005b34801561040457600080fd5b5061041f600480360381019061041a9190614358565b610eac565b005b61043b600480360381019061043691906144ba565b610fc4565b005b34801561044957600080fd5b50610464600480360381019061045f919061431c565b6112aa565b005b34801561047257600080fd5b5061047b6113ba565b604051610488919061503c565b60405180910390f35b34801561049d57600080fd5b506104a66113c0565b6040516104b3919061503c565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de91906141ed565b6113c6565b005b3480156104f157600080fd5b5061050c60048036038101906105079190614252565b6114df565b005b61052860048036038101906105239190614491565b61153f565b005b34801561053657600080fd5b5061053f61177e565b005b34801561054d57600080fd5b5061055661186c565b6040516105639190614c1d565b60405180910390f35b34801561057857600080fd5b5061058161187f565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190614252565b611a25565b005b3480156105b857600080fd5b506105c1611a45565b6040516105ce9190614b2d565b60405180910390f35b3480156105e357600080fd5b506105ec611a6b565b6040516105f99190614c1d565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190614450565b611a7e565b005b34801561063757600080fd5b50610640611b4c565b60405161064d9190614b12565b60405180910390f35b34801561066257600080fd5b5061067d600480360381019061067891906143d5565b611b72565b005b34801561068b57600080fd5b506106a660048036038101906106a19190614491565b611c51565b005b3480156106b457600080fd5b506106cf60048036038101906106ca9190614491565b611d2d565b6040516106dc9190614b12565b60405180910390f35b3480156106f157600080fd5b506106fa611ddf565b6040516107079190614c1d565b60405180910390f35b34801561071c57600080fd5b50610725611df2565b604051610732919061503c565b60405180910390f35b34801561074757600080fd5b50610750611df8565b60405161075d9190614c1d565b60405180910390f35b34801561077257600080fd5b5061077b611e0b565b6040516107889190614c38565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b3919061419b565b611e99565b6040516107c5919061503c565b60405180910390f35b3480156107da57600080fd5b506107e3611f51565b005b3480156107f157600080fd5b5061080c60048036038101906108079190614491565b611fd9565b6040516108199190614c1d565b60405180910390f35b34801561082e57600080fd5b50610849600480360381019061084491906141ed565b611ff9565b005b34801561085757600080fd5b50610872600480360381019061086d9190614491565b612112565b005b34801561088057600080fd5b506108896121d1565b005b34801561089757600080fd5b506108a06122bf565b6040516108ad9190614b12565b60405180910390f35b3480156108c257600080fd5b506108cb6122e9565b6040516108d89190614b2d565b60405180910390f35b3480156108ed57600080fd5b506108f661230f565b6040516109039190614c38565b60405180910390f35b34801561091857600080fd5b506109216123a1565b60405161092e919061503c565b60405180910390f35b34801561094357600080fd5b5061095e6004803603810190610959919061419b565b6123a7565b60405161096b9190614c1d565b60405180910390f35b34801561098057600080fd5b5061099b60048036038101906109969190614491565b6123c7565b005b3480156109a957600080fd5b506109c460048036038101906109bf919061431c565b612486565b005b3480156109d257600080fd5b506109ed60048036038101906109e89190614491565b61249c565b005b3480156109fb57600080fd5b50610a166004803603810190610a1191906142a1565b6125de565b005b348015610a2457600080fd5b50610a2d612640565b005b348015610a3b57600080fd5b50610a566004803603810190610a519190614491565b61272e565b604051610a639190614c38565b60405180910390f35b348015610a7857600080fd5b50610a936004803603810190610a8e9190614491565b6127d6565b005b348015610aa157600080fd5b50610aaa612893565b604051610ab79190614c1d565b60405180910390f35b610ada6004803603810190610ad59190614491565b6128a6565b005b348015610ae857600080fd5b50610af1612a27565b005b348015610aff57600080fd5b50610b1a6004803603810190610b159190614216565b612af3565b604051610b279190614c1d565b60405180910390f35b348015610b3c57600080fd5b50610b576004803603810190610b52919061419b565b612b87565b005b348015610b6557600080fd5b50610b806004803603810190610b7b9190614394565b612cee565b005b348015610b8e57600080fd5b50610ba96004803603810190610ba4919061419b565b612e9f565b005b348015610bb757600080fd5b50610bd26004803603810190610bcd9190614491565b612f97565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c9f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610caf5750610cae8261306a565b5b9050919050565b606060008054610cc59061533f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf19061533f565b8015610d3e5780601f10610d1357610100808354040283529160200191610d3e565b820191906000526020600020905b815481529060010190602001808311610d2157829003601f168201915b5050505050905090565b6000610d53826130d4565b610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990614e9c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610dd5613140565b73ffffffffffffffffffffffffffffffffffffffff16610df36122bf565b73ffffffffffffffffffffffffffffffffffffffff1614610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090614ebc565b60405180910390fd5b80600c60006101000a81548160ff0219169083151502179055507f2a5bfbb68782e57b3242e612145304c845af3404e2d328a12dd2e7c078cd0117600c60009054906101000a900460ff16604051610ea19190614c1d565b60405180910390a150565b6000610eb782611d2d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90614f5c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f47613140565b73ffffffffffffffffffffffffffffffffffffffff161480610f765750610f7581610f70613140565b612af3565b5b610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90614ddc565b60405180910390fd5b610fbf8383613148565b505050565b600c60029054906101000a900460ff16611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90614f7c565b60405180910390fd5b61101b613140565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b815260040161108c919061503c565b60206040518083038186803b1580156110a457600080fd5b505afa1580156110b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110dc91906141c4565b73ffffffffffffffffffffffffffffffffffffffff1614611132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112990614c7c565b60405180910390fd5b6011600083815260200190815260200160002060009054906101000a900460ff1615611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a90614e5c565b60405180910390fd5b6008548111156111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90614fdc565b60405180910390fd5b6111ed8160095461320190919063ffffffff16565b34101561122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690614d9c565b60405180910390fd5b60016011600084815260200190815260200160002060006101000a81548160ff02191690831515021790555061126481613217565b7fb77d41b776d1d5cc75b500402614335da616afa8aa95b49325e22db7f1ca86cc61128d613140565b838360405161129e93929190614be6565b60405180910390a15050565b6112b2613140565b73ffffffffffffffffffffffffffffffffffffffff166112d06122bf565b73ffffffffffffffffffffffffffffffffffffffff1614611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90614ebc565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8daaf060c3306c38e068a75c054bf96ecd85a3db1252712c4d93632744c42e0d82826040516113ae929190614b94565b60405180910390a15050565b60075481565b600a5481565b6113ce613140565b73ffffffffffffffffffffffffffffffffffffffff166113ec6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990614ebc565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f268c00f4ec08b34fdde24b52e47a09d62f3f3837eb3b8ac7206cefb3bb5e5345600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516114d49190614b2d565b60405180910390a150565b6114f06114ea613140565b8261333b565b61152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690614fbc565b60405180910390fd5b61153a838383613419565b505050565b600c60039054906101000a900460ff1661158e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158590614ffc565b60405180910390fd5b6008548111156115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90614fdc565b60405180910390fd5b6115e88160095461320190919063ffffffff16565b34101561162a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162190614d9c565b60405180910390fd5b60126000611636613140565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490614efc565b60405180910390fd5b7f8714612a507e7fcd9f26d997e561a61611f4bad945c787b8865dc23823ef037b6116e6613140565b826040516116f5929190614bbd565b60405180910390a161170681613217565b600e60149054906101000a900460ff161561177b57600060126000611729613140565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b611786613140565b73ffffffffffffffffffffffffffffffffffffffff166117a46122bf565b73ffffffffffffffffffffffffffffffffffffffff16146117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190614ebc565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff0219169083151502179055507f5a454f976028c400c4159ac85c61452441fcf06b9888c7c780c5980e3c3123dd600c60019054906101000a900460ff166040516118629190614c1d565b60405180910390a1565b600c60039054906101000a900460ff1681565b611887613140565b73ffffffffffffffffffffffffffffffffffffffff166118a56122bf565b73ffffffffffffffffffffffffffffffffffffffff16146118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290614ebc565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc611965612710611957600f548661320190919063ffffffff16565b61368090919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611990573d6000803e3d6000fd5b50600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6119f66127106119e86010548661320190919063ffffffff16565b61368090919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611a21573d6000803e3d6000fd5b5050565b611a40838383604051806020016040528060008152506125de565b505050565b600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60029054906101000a900460ff1681565b611a86613140565b73ffffffffffffffffffffffffffffffffffffffff16611aa46122bf565b73ffffffffffffffffffffffffffffffffffffffff1614611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190614ebc565b60405180910390fd5b80600b9080519060200190611b10929190613eff565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6600b604051611b419190614c5a565b60405180910390a150565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b7a613140565b73ffffffffffffffffffffffffffffffffffffffff16611b986122bf565b73ffffffffffffffffffffffffffffffffffffffff1614611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be590614ebc565b60405180910390fd5b80600e60146101000a81548160ff0219169083151502179055507fc6e0fb794d60d245727554ed563b17ec5cd901c15ee395b10535ce370b1bdccd600e60149054906101000a900460ff16604051611c469190614c1d565b60405180910390a150565b611c59613140565b73ffffffffffffffffffffffffffffffffffffffff16611c776122bf565b73ffffffffffffffffffffffffffffffffffffffff1614611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490614ebc565b60405180910390fd5b80600f81905550611ceb600f5461271061305490919063ffffffff16565b6010819055507fd20ab7c161b1f8ebfab00e747660c0fa31ae9123063e580b5be0aeab18623db2600f54604051611d22919061503c565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614e1c565b60405180910390fd5b80915050919050565b600c60009054906101000a900460ff1681565b60095481565b600c60019054906101000a900460ff1681565b600b8054611e189061533f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e449061533f565b8015611e915780601f10611e6657610100808354040283529160200191611e91565b820191906000526020600020905b815481529060010190602001808311611e7457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0190614dfc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611f59613140565b73ffffffffffffffffffffffffffffffffffffffff16611f776122bf565b73ffffffffffffffffffffffffffffffffffffffff1614611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc490614ebc565b60405180910390fd5b611fd76000613696565b565b60116020528060005260406000206000915054906101000a900460ff1681565b612001613140565b73ffffffffffffffffffffffffffffffffffffffff1661201f6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206c90614ebc565b60405180910390fd5b80600c60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb470355146314037ce5186813b4b7c65bff2b87f98d44ff063570d0e22d65ba3600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516121079190614b2d565b60405180910390a150565b61211a613140565b73ffffffffffffffffffffffffffffffffffffffff166121386122bf565b73ffffffffffffffffffffffffffffffffffffffff161461218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590614ebc565b60405180910390fd5b61219781613217565b7fdb7b64a879507c32bda4d0cf22dee29ed875c7157ecbbc10fe11bf14fab06d12816040516121c6919061503c565b60405180910390a150565b6121d9613140565b73ffffffffffffffffffffffffffffffffffffffff166121f76122bf565b73ffffffffffffffffffffffffffffffffffffffff161461224d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224490614ebc565b60405180910390fd5b600c60029054906101000a900460ff1615600c60026101000a81548160ff0219169083151502179055507f38822fae85453c65b78e1b7d02e45cae5eb0d7961e34226fb29c49dab9d3a357600c60029054906101000a900460ff166040516122b59190614c1d565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606001805461231e9061533f565b80601f016020809104026020016040519081016040528092919081815260200182805461234a9061533f565b80156123975780601f1061236c57610100808354040283529160200191612397565b820191906000526020600020905b81548152906001019060200180831161237a57829003601f168201915b5050505050905090565b60085481565b60126020528060005260406000206000915054906101000a900460ff1681565b6123cf613140565b73ffffffffffffffffffffffffffffffffffffffff166123ed6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a90614ebc565b60405180910390fd5b806008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab60085460405161247b919061503c565b60405180910390a150565b612498612491613140565b838361375c565b5050565b6124a4613140565b73ffffffffffffffffffffffffffffffffffffffff166124c26122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250f90614ebc565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff16612578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256f90614f9c565b60405180910390fd5b60006011600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f256e63760868166c3f047c49d3e1614c1ca6c620d715c552c54ddb4ba428719c816040516125d3919061503c565b60405180910390a150565b6125ef6125e9613140565b8361333b565b61262e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262590614fbc565b60405180910390fd5b61263a848484846138c9565b50505050565b612648613140565b73ffffffffffffffffffffffffffffffffffffffff166126666122bf565b73ffffffffffffffffffffffffffffffffffffffff16146126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390614ebc565b60405180910390fd5b600c60039054906101000a900460ff1615600c60036101000a81548160ff0219169083151502179055507ffabb6e4b24bd8ac3a08555e569d13590c5006dc61e4aae65e74296d3df6759ed600c60039054906101000a900460ff166040516127249190614c1d565b60405180910390a1565b6060612739826130d4565b612778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276f90614edc565b60405180910390fd5b6000600b80546127879061533f565b9050116127a357604051806020016040528060008152506127cf565b600b6127ae83613925565b6040516020016127bf929190614aee565b6040516020818303038152906040525b9050919050565b6127de613140565b73ffffffffffffffffffffffffffffffffffffffff166127fc6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284990614ebc565b60405180910390fd5b80600a819055507f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d0781604051612888919061503c565b60405180910390a150565b600e60149054906101000a900460ff1681565b600c60019054906101000a900460ff166128f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ec9061501c565b60405180910390fd5b60085481111561293a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293190614e3c565b60405180910390fd5b61294f8160095461320190919063ffffffff16565b341015612991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298890614f3c565b60405180910390fd5b600c60009054906101000a900460ff16612a1b576129ad613140565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1190614cfc565b60405180910390fd5b5b612a2481613217565b50565b612a2f613140565b73ffffffffffffffffffffffffffffffffffffffff16612a4d6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9a90614ebc565b60405180910390fd5b612aab6122bf565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612af0573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b8f613140565b73ffffffffffffffffffffffffffffffffffffffff16612bad6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfa90614ebc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6a90614f1c565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4846b8d14a603fbd3567c63384f41a947d787c004e59ce39ee755d0485ae5ed881604051612ce39190614b12565b60405180910390a150565b612cf6613140565b73ffffffffffffffffffffffffffffffffffffffff16612d146122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6190614ebc565b60405180910390fd5b60005b8151811015612e9b57600160126000848481518110612db5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507faec42ac7f1bb8651906ae6522f50a19429e124e8ea678ef59fd27750759288a2828281518110612e68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001604051612e80929190614b94565b60405180910390a18080612e93906153a2565b915050612d6d565b5050565b612ea7613140565b73ffffffffffffffffffffffffffffffffffffffff16612ec56122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1290614ebc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8290614cbc565b60405180910390fd5b612f9481613696565b50565b612f9f613140565b73ffffffffffffffffffffffffffffffffffffffff16612fbd6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a90614ebc565b60405180910390fd5b806009819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f81604051613049919061503c565b60405180910390a150565b600081836130629190615243565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166131bb83611d2d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818361320f91906151e9565b905092915050565b600a5461322f82600754613ad290919063ffffffff16565b1115613270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326790614d3c565b60405180910390fd5b6000600754905060005b8281101561333657613296600183613ad290919063ffffffff16565b91506132ae6001600754613ad290919063ffffffff16565b6007819055506132c56132bf613140565b83613ae8565b816132ce613140565b73ffffffffffffffffffffffffffffffffffffffff167f85a66b9141978db9980f7e0ce3b468cebf4f7999f32b23091c5c03e798b1ba7a61330e8561272e565b60405161331b9190614c38565b60405180910390a3808061332e906153a2565b91505061327a565b505050565b6000613346826130d4565b613385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337c90614dbc565b60405180910390fd5b600061339083611d2d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806133ff57508373ffffffffffffffffffffffffffffffffffffffff166133e784610d48565b73ffffffffffffffffffffffffffffffffffffffff16145b80613410575061340f8185612af3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661343982611d2d565b73ffffffffffffffffffffffffffffffffffffffff161461348f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348690614cdc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f690614d5c565b60405180910390fd5b61350a838383613b06565b613515600082613148565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135659190615243565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135bc9190615162565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461367b838383613b0b565b505050565b6000818361368e91906151b8565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c290614d7c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516138bc9190614c1d565b60405180910390a3505050565b6138d4848484613419565b6138e084848484613b10565b61391f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391690614c9c565b60405180910390fd5b50505050565b6060600082141561396d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613acd565b600082905060005b6000821461399f578080613988906153a2565b915050600a8261399891906151b8565b9150613975565b60008167ffffffffffffffff8111156139e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613a135781602001600182028036833780820191505090505b5090505b60008514613ac657600182613a2c9190615243565b9150600a85613a3b91906153eb565b6030613a479190615162565b60f81b818381518110613a83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613abf91906151b8565b9450613a17565b8093505050505b919050565b60008183613ae09190615162565b905092915050565b613b02828260405180602001604052806000815250613ca7565b5050565b505050565b505050565b6000613b318473ffffffffffffffffffffffffffffffffffffffff16613d02565b15613c9a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613b5a613140565b8786866040518563ffffffff1660e01b8152600401613b7c9493929190614b48565b602060405180830381600087803b158015613b9657600080fd5b505af1925050508015613bc757506040513d601f19601f82011682018060405250810190613bc49190614427565b60015b613c4a573d8060008114613bf7576040519150601f19603f3d011682016040523d82523d6000602084013e613bfc565b606091505b50600081511415613c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3990614c9c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c9f565b600190505b949350505050565b613cb18383613d25565b613cbe6000848484613b10565b613cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf490614c9c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d8c90614e7c565b60405180910390fd5b613d9e816130d4565b15613dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dd590614d1c565b60405180910390fd5b613dea60008383613b06565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e3a9190615162565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613efb60008383613b0b565b5050565b828054613f0b9061533f565b90600052602060002090601f016020900481019282613f2d5760008555613f74565b82601f10613f4657805160ff1916838001178555613f74565b82800160010185558215613f74579182015b82811115613f73578251825591602001919060010190613f58565b5b509050613f819190613f85565b5090565b5b80821115613f9e576000816000905550600101613f86565b5090565b6000613fb5613fb08461507c565b615057565b90508083825260208201905082856020860282011115613fd457600080fd5b60005b858110156140045781613fea888261408a565b845260208401935060208301925050600181019050613fd7565b5050509392505050565b600061402161401c846150a8565b615057565b90508281526020810184848401111561403957600080fd5b6140448482856152fd565b509392505050565b600061405f61405a846150d9565b615057565b90508281526020810184848401111561407757600080fd5b6140828482856152fd565b509392505050565b60008135905061409981615d6d565b92915050565b6000815190506140ae81615d6d565b92915050565b6000813590506140c381615d84565b92915050565b600082601f8301126140da57600080fd5b81356140ea848260208601613fa2565b91505092915050565b60008135905061410281615d9b565b92915050565b60008135905061411781615db2565b92915050565b60008151905061412c81615db2565b92915050565b600082601f83011261414357600080fd5b813561415384826020860161400e565b91505092915050565b600082601f83011261416d57600080fd5b813561417d84826020860161404c565b91505092915050565b60008135905061419581615dc9565b92915050565b6000602082840312156141ad57600080fd5b60006141bb8482850161408a565b91505092915050565b6000602082840312156141d657600080fd5b60006141e48482850161409f565b91505092915050565b6000602082840312156141ff57600080fd5b600061420d848285016140b4565b91505092915050565b6000806040838503121561422957600080fd5b60006142378582860161408a565b92505060206142488582860161408a565b9150509250929050565b60008060006060848603121561426757600080fd5b60006142758682870161408a565b93505060206142868682870161408a565b925050604061429786828701614186565b9150509250925092565b600080600080608085870312156142b757600080fd5b60006142c58782880161408a565b94505060206142d68782880161408a565b93505060406142e787828801614186565b925050606085013567ffffffffffffffff81111561430457600080fd5b61431087828801614132565b91505092959194509250565b6000806040838503121561432f57600080fd5b600061433d8582860161408a565b925050602061434e858286016140f3565b9150509250929050565b6000806040838503121561436b57600080fd5b60006143798582860161408a565b925050602061438a85828601614186565b9150509250929050565b6000602082840312156143a657600080fd5b600082013567ffffffffffffffff8111156143c057600080fd5b6143cc848285016140c9565b91505092915050565b6000602082840312156143e757600080fd5b60006143f5848285016140f3565b91505092915050565b60006020828403121561441057600080fd5b600061441e84828501614108565b91505092915050565b60006020828403121561443957600080fd5b60006144478482850161411d565b91505092915050565b60006020828403121561446257600080fd5b600082013567ffffffffffffffff81111561447c57600080fd5b6144888482850161415c565b91505092915050565b6000602082840312156144a357600080fd5b60006144b184828501614186565b91505092915050565b600080604083850312156144cd57600080fd5b60006144db85828601614186565b92505060206144ec85828601614186565b9150509250929050565b6144ff81615289565b82525050565b61450e81615277565b82525050565b61451d8161529b565b82525050565b600061452e8261511f565b6145388185615135565b935061454881856020860161530c565b614551816154d8565b840191505092915050565b60006145678261512a565b6145718185615146565b935061458181856020860161530c565b61458a816154d8565b840191505092915050565b60006145a08261512a565b6145aa8185615157565b93506145ba81856020860161530c565b80840191505092915050565b600081546145d38161533f565b6145dd8186615146565b945060018216600081146145f8576001811461460a5761463d565b60ff198316865260208601935061463d565b6146138561510a565b60005b8381101561463557815481890152600182019150602081019050614616565b808801955050505b50505092915050565b600081546146538161533f565b61465d8186615157565b945060018216600081146146785760018114614689576146bc565b60ff198316865281860193506146bc565b6146928561510a565b60005b838110156146b457815481890152600182019150602081019050614695565b838801955050505b50505092915050565b60006146d2602683615146565b91506146dd826154e9565b604082019050919050565b60006146f5603283615146565b915061470082615538565b604082019050919050565b6000614718602683615146565b915061472382615587565b604082019050919050565b600061473b602583615146565b9150614746826155d6565b604082019050919050565b600061475e603783615146565b915061476982615625565b604082019050919050565b6000614781601c83615146565b915061478c82615674565b602082019050919050565b60006147a4601783615146565b91506147af8261569d565b602082019050919050565b60006147c7602483615146565b91506147d2826156c6565b604082019050919050565b60006147ea601983615146565b91506147f582615715565b602082019050919050565b600061480d602c83615146565b91506148188261573e565b604082019050919050565b6000614830602c83615146565b915061483b8261578d565b604082019050919050565b6000614853603883615146565b915061485e826157dc565b604082019050919050565b6000614876602a83615146565b91506148818261582b565b604082019050919050565b6000614899602983615146565b91506148a48261587a565b604082019050919050565b60006148bc603483615146565b91506148c7826158c9565b604082019050919050565b60006148df602b83615146565b91506148ea82615918565b604082019050919050565b6000614902602083615146565b915061490d82615967565b602082019050919050565b6000614925602c83615146565b915061493082615990565b604082019050919050565b6000614948602083615146565b9150614953826159df565b602082019050919050565b600061496b602f83615146565b915061497682615a08565b604082019050919050565b600061498e603183615146565b915061499982615a57565b604082019050919050565b60006149b1603183615146565b91506149bc82615aa6565b604082019050919050565b60006149d4602583615146565b91506149df82615af5565b604082019050919050565b60006149f7602183615146565b9150614a0282615b44565b604082019050919050565b6000614a1a602d83615146565b9150614a2582615b93565b604082019050919050565b6000614a3d602a83615146565b9150614a4882615be2565b604082019050919050565b6000614a60603183615146565b9150614a6b82615c31565b604082019050919050565b6000614a83603b83615146565b9150614a8e82615c80565b604082019050919050565b6000614aa6603983615146565b9150614ab182615ccf565b604082019050919050565b6000614ac9602383615146565b9150614ad482615d1e565b604082019050919050565b614ae8816152f3565b82525050565b6000614afa8285614646565b9150614b068284614595565b91508190509392505050565b6000602082019050614b276000830184614505565b92915050565b6000602082019050614b4260008301846144f6565b92915050565b6000608082019050614b5d6000830187614505565b614b6a6020830186614505565b614b776040830185614adf565b8181036060830152614b898184614523565b905095945050505050565b6000604082019050614ba96000830185614505565b614bb66020830184614514565b9392505050565b6000604082019050614bd26000830185614505565b614bdf6020830184614adf565b9392505050565b6000606082019050614bfb6000830186614505565b614c086020830185614adf565b614c156040830184614adf565b949350505050565b6000602082019050614c326000830184614514565b92915050565b60006020820190508181036000830152614c52818461455c565b905092915050565b60006020820190508181036000830152614c7481846145c6565b905092915050565b60006020820190508181036000830152614c95816146c5565b9050919050565b60006020820190508181036000830152614cb5816146e8565b9050919050565b60006020820190508181036000830152614cd58161470b565b9050919050565b60006020820190508181036000830152614cf58161472e565b9050919050565b60006020820190508181036000830152614d1581614751565b9050919050565b60006020820190508181036000830152614d3581614774565b9050919050565b60006020820190508181036000830152614d5581614797565b9050919050565b60006020820190508181036000830152614d75816147ba565b9050919050565b60006020820190508181036000830152614d95816147dd565b9050919050565b60006020820190508181036000830152614db581614800565b9050919050565b60006020820190508181036000830152614dd581614823565b9050919050565b60006020820190508181036000830152614df581614846565b9050919050565b60006020820190508181036000830152614e1581614869565b9050919050565b60006020820190508181036000830152614e358161488c565b9050919050565b60006020820190508181036000830152614e55816148af565b9050919050565b60006020820190508181036000830152614e75816148d2565b9050919050565b60006020820190508181036000830152614e95816148f5565b9050919050565b60006020820190508181036000830152614eb581614918565b9050919050565b60006020820190508181036000830152614ed58161493b565b9050919050565b60006020820190508181036000830152614ef58161495e565b9050919050565b60006020820190508181036000830152614f1581614981565b9050919050565b60006020820190508181036000830152614f35816149a4565b9050919050565b60006020820190508181036000830152614f55816149c7565b9050919050565b60006020820190508181036000830152614f75816149ea565b9050919050565b60006020820190508181036000830152614f9581614a0d565b9050919050565b60006020820190508181036000830152614fb581614a30565b9050919050565b60006020820190508181036000830152614fd581614a53565b9050919050565b60006020820190508181036000830152614ff581614a76565b9050919050565b6000602082019050818103600083015261501581614a99565b9050919050565b6000602082019050818103600083015261503581614abc565b9050919050565b60006020820190506150516000830184614adf565b92915050565b6000615061615072565b905061506d8282615371565b919050565b6000604051905090565b600067ffffffffffffffff821115615097576150966154a9565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156150c3576150c26154a9565b5b6150cc826154d8565b9050602081019050919050565b600067ffffffffffffffff8211156150f4576150f36154a9565b5b6150fd826154d8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061516d826152f3565b9150615178836152f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151ad576151ac61541c565b5b828201905092915050565b60006151c3826152f3565b91506151ce836152f3565b9250826151de576151dd61544b565b5b828204905092915050565b60006151f4826152f3565b91506151ff836152f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152385761523761541c565b5b828202905092915050565b600061524e826152f3565b9150615259836152f3565b92508282101561526c5761526b61541c565b5b828203905092915050565b6000615282826152d3565b9050919050565b6000615294826152d3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561532a57808201518184015260208101905061530f565b83811115615339576000848401525b50505050565b6000600282049050600182168061535757607f821691505b6020821081141561536b5761536a61547a565b5b50919050565b61537a826154d8565b810181811067ffffffffffffffff82111715615399576153986154a9565b5b80604052505050565b60006153ad826152f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153e0576153df61541c565b5b600182019050919050565b60006153f6826152f3565b9150615401836152f3565b9250826154115761541061544b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f44726f7073706163653a3a70726573616c654275793a20696e76616c6964207460008201527f69636b65742e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20536d61727420636f6e7472616374732060008201527f617265206e6f7420616c6c6f77656420746f206275792e000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44726f7073706163653a3a70726573616c654275793a20496e7375666669636960008201527f656e74207061796d656e742e0000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20546f6f206d616e7920746f6b656e732060008201527f666f72206f6e65207472616e73616374696f6e2e000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a205469636b657420616c60008201527f726561647920757365642e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a77686974656c6973744275793a20596f752061726560008201527f206e6f742077686974656c69737465642e000000000000000000000000000000602082015250565b7f44726f70537061636553616c653a3a7365745469636b6574416464726573733a60008201527f20496e76616c696420616464726573732e000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20496e73756666696369656e742070617960008201527f6d656e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a2050726573616c65206960008201527f73206e6f74204163746976652e00000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a636c6561725469636b65743a205469636b6574206960008201527f73206e6f74207573656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a20546f6f206d616e792060008201527f746f6b656e7320666f72206f6e65207472616e73616374696f6e2e0000000000602082015250565b7f44726f70537061636553616c653a3a77686974656c6973744275793a2057686960008201527f74656c69737420427579206973206e6f74204163746976652e00000000000000602082015250565b7f44726f7073706163653a3a6275793a2053616c65206973206e6f74206163746960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b615d7681615277565b8114615d8157600080fd5b50565b615d8d81615289565b8114615d9857600080fd5b50565b615da48161529b565b8114615daf57600080fd5b50565b615dbb816152a7565b8114615dc657600080fd5b50565b615dd2816152f3565b8114615ddd57600080fd5b5056fea26469706673582212203ecbca102a818a306097baa8b0287df3f4e070971b0d1c97f5cd5c147e1e639e64736f6c634300080400330000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000d529ae9e86000000000000000000000000000000000000000000000000000000000000000009c40000000000000000000000007f9fb82957fa4070f02f4d4d4928e201ffee2f78000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d170000000000000000000000007ba0a79ec30259e2792a43989edd97c6e40bb3360000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000076e756d386572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000076e756d3865727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d57594a52366d537041754651584c5a6464416866664544393974457a596458516661536d324d3865774a466d2f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80636c0360eb116101ab578063a22cb465116100f7578063d96a094a11610095578063ed9a5bbb1161006f578063ed9a5bbb14610b30578063edac985b14610b59578063f2fde38b14610b82578063f4a0a52814610bab57610325565b8063d96a094a14610ac0578063db2e21bc14610adc578063e985e9c514610af357610325565b8063b89fe999116100d1578063b89fe99914610a18578063c87b56dd14610a2f578063d44e357314610a6c578063d7e2875c14610a9557610325565b8063a22cb4651461099d578063ab26320e146109c6578063b88d4fde146109ef57610325565b806389b0649b1161016457806395d89b411161013e57806395d89b41146108e1578063996517cf1461090c5780639b19251a146109375780639e6a1d7d1461097457610325565b806389b0649b146108745780638da5cb5b1461088b5780638ea5220f146108b657610325565b80636c0360eb1461076657806370a0823114610791578063715018a6146107ce57806371efdc21146107e557806375796f7614610822578063819b25ba1461084b57610325565b80633ad7f56c1161026a57806357a8e3fe116102235780636352211e116101fd5780636352211e146106a8578063646d7a7f146106e55780636817c76c1461071057806368428a1b1461073b57610325565b806357a8e3fe1461062b578063591e194b146106565780635c4e7e061461067f57610325565b80633ad7f56c146105415780633ccfd60b1461056c57806342842e0e146105835780634a7d80b3146105ac57806353135ca0146105d757806355f804b31461060257610325565b80630c424284116102d75780631f53ac02116102b15780631f53ac02146104bc57806323b872dd146104e55780632ac7a2b31461050e5780633100a5351461052a57610325565b80630c4242841461043d57806318160ddd1461046657806319d1997a1461049157610325565b806301ffc9a71461032a57806306fdde0314610367578063081812fc1461039257806308e99287146103cf578063095ea7b3146103f85780630983061c1461042157610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c91906143fe565b610bd4565b60405161035e9190614c1d565b60405180910390f35b34801561037357600080fd5b5061037c610cb6565b6040516103899190614c38565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190614491565b610d48565b6040516103c69190614b12565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906143d5565b610dcd565b005b34801561040457600080fd5b5061041f600480360381019061041a9190614358565b610eac565b005b61043b600480360381019061043691906144ba565b610fc4565b005b34801561044957600080fd5b50610464600480360381019061045f919061431c565b6112aa565b005b34801561047257600080fd5b5061047b6113ba565b604051610488919061503c565b60405180910390f35b34801561049d57600080fd5b506104a66113c0565b6040516104b3919061503c565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de91906141ed565b6113c6565b005b3480156104f157600080fd5b5061050c60048036038101906105079190614252565b6114df565b005b61052860048036038101906105239190614491565b61153f565b005b34801561053657600080fd5b5061053f61177e565b005b34801561054d57600080fd5b5061055661186c565b6040516105639190614c1d565b60405180910390f35b34801561057857600080fd5b5061058161187f565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190614252565b611a25565b005b3480156105b857600080fd5b506105c1611a45565b6040516105ce9190614b2d565b60405180910390f35b3480156105e357600080fd5b506105ec611a6b565b6040516105f99190614c1d565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190614450565b611a7e565b005b34801561063757600080fd5b50610640611b4c565b60405161064d9190614b12565b60405180910390f35b34801561066257600080fd5b5061067d600480360381019061067891906143d5565b611b72565b005b34801561068b57600080fd5b506106a660048036038101906106a19190614491565b611c51565b005b3480156106b457600080fd5b506106cf60048036038101906106ca9190614491565b611d2d565b6040516106dc9190614b12565b60405180910390f35b3480156106f157600080fd5b506106fa611ddf565b6040516107079190614c1d565b60405180910390f35b34801561071c57600080fd5b50610725611df2565b604051610732919061503c565b60405180910390f35b34801561074757600080fd5b50610750611df8565b60405161075d9190614c1d565b60405180910390f35b34801561077257600080fd5b5061077b611e0b565b6040516107889190614c38565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b3919061419b565b611e99565b6040516107c5919061503c565b60405180910390f35b3480156107da57600080fd5b506107e3611f51565b005b3480156107f157600080fd5b5061080c60048036038101906108079190614491565b611fd9565b6040516108199190614c1d565b60405180910390f35b34801561082e57600080fd5b50610849600480360381019061084491906141ed565b611ff9565b005b34801561085757600080fd5b50610872600480360381019061086d9190614491565b612112565b005b34801561088057600080fd5b506108896121d1565b005b34801561089757600080fd5b506108a06122bf565b6040516108ad9190614b12565b60405180910390f35b3480156108c257600080fd5b506108cb6122e9565b6040516108d89190614b2d565b60405180910390f35b3480156108ed57600080fd5b506108f661230f565b6040516109039190614c38565b60405180910390f35b34801561091857600080fd5b506109216123a1565b60405161092e919061503c565b60405180910390f35b34801561094357600080fd5b5061095e6004803603810190610959919061419b565b6123a7565b60405161096b9190614c1d565b60405180910390f35b34801561098057600080fd5b5061099b60048036038101906109969190614491565b6123c7565b005b3480156109a957600080fd5b506109c460048036038101906109bf919061431c565b612486565b005b3480156109d257600080fd5b506109ed60048036038101906109e89190614491565b61249c565b005b3480156109fb57600080fd5b50610a166004803603810190610a1191906142a1565b6125de565b005b348015610a2457600080fd5b50610a2d612640565b005b348015610a3b57600080fd5b50610a566004803603810190610a519190614491565b61272e565b604051610a639190614c38565b60405180910390f35b348015610a7857600080fd5b50610a936004803603810190610a8e9190614491565b6127d6565b005b348015610aa157600080fd5b50610aaa612893565b604051610ab79190614c1d565b60405180910390f35b610ada6004803603810190610ad59190614491565b6128a6565b005b348015610ae857600080fd5b50610af1612a27565b005b348015610aff57600080fd5b50610b1a6004803603810190610b159190614216565b612af3565b604051610b279190614c1d565b60405180910390f35b348015610b3c57600080fd5b50610b576004803603810190610b52919061419b565b612b87565b005b348015610b6557600080fd5b50610b806004803603810190610b7b9190614394565b612cee565b005b348015610b8e57600080fd5b50610ba96004803603810190610ba4919061419b565b612e9f565b005b348015610bb757600080fd5b50610bd26004803603810190610bcd9190614491565b612f97565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c9f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610caf5750610cae8261306a565b5b9050919050565b606060008054610cc59061533f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf19061533f565b8015610d3e5780601f10610d1357610100808354040283529160200191610d3e565b820191906000526020600020905b815481529060010190602001808311610d2157829003601f168201915b5050505050905090565b6000610d53826130d4565b610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990614e9c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610dd5613140565b73ffffffffffffffffffffffffffffffffffffffff16610df36122bf565b73ffffffffffffffffffffffffffffffffffffffff1614610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090614ebc565b60405180910390fd5b80600c60006101000a81548160ff0219169083151502179055507f2a5bfbb68782e57b3242e612145304c845af3404e2d328a12dd2e7c078cd0117600c60009054906101000a900460ff16604051610ea19190614c1d565b60405180910390a150565b6000610eb782611d2d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90614f5c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f47613140565b73ffffffffffffffffffffffffffffffffffffffff161480610f765750610f7581610f70613140565b612af3565b5b610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90614ddc565b60405180910390fd5b610fbf8383613148565b505050565b600c60029054906101000a900460ff16611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90614f7c565b60405180910390fd5b61101b613140565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b815260040161108c919061503c565b60206040518083038186803b1580156110a457600080fd5b505afa1580156110b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110dc91906141c4565b73ffffffffffffffffffffffffffffffffffffffff1614611132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112990614c7c565b60405180910390fd5b6011600083815260200190815260200160002060009054906101000a900460ff1615611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a90614e5c565b60405180910390fd5b6008548111156111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90614fdc565b60405180910390fd5b6111ed8160095461320190919063ffffffff16565b34101561122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690614d9c565b60405180910390fd5b60016011600084815260200190815260200160002060006101000a81548160ff02191690831515021790555061126481613217565b7fb77d41b776d1d5cc75b500402614335da616afa8aa95b49325e22db7f1ca86cc61128d613140565b838360405161129e93929190614be6565b60405180910390a15050565b6112b2613140565b73ffffffffffffffffffffffffffffffffffffffff166112d06122bf565b73ffffffffffffffffffffffffffffffffffffffff1614611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d90614ebc565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8daaf060c3306c38e068a75c054bf96ecd85a3db1252712c4d93632744c42e0d82826040516113ae929190614b94565b60405180910390a15050565b60075481565b600a5481565b6113ce613140565b73ffffffffffffffffffffffffffffffffffffffff166113ec6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990614ebc565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f268c00f4ec08b34fdde24b52e47a09d62f3f3837eb3b8ac7206cefb3bb5e5345600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516114d49190614b2d565b60405180910390a150565b6114f06114ea613140565b8261333b565b61152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690614fbc565b60405180910390fd5b61153a838383613419565b505050565b600c60039054906101000a900460ff1661158e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158590614ffc565b60405180910390fd5b6008548111156115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90614fdc565b60405180910390fd5b6115e88160095461320190919063ffffffff16565b34101561162a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162190614d9c565b60405180910390fd5b60126000611636613140565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490614efc565b60405180910390fd5b7f8714612a507e7fcd9f26d997e561a61611f4bad945c787b8865dc23823ef037b6116e6613140565b826040516116f5929190614bbd565b60405180910390a161170681613217565b600e60149054906101000a900460ff161561177b57600060126000611729613140565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b611786613140565b73ffffffffffffffffffffffffffffffffffffffff166117a46122bf565b73ffffffffffffffffffffffffffffffffffffffff16146117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190614ebc565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff0219169083151502179055507f5a454f976028c400c4159ac85c61452441fcf06b9888c7c780c5980e3c3123dd600c60019054906101000a900460ff166040516118629190614c1d565b60405180910390a1565b600c60039054906101000a900460ff1681565b611887613140565b73ffffffffffffffffffffffffffffffffffffffff166118a56122bf565b73ffffffffffffffffffffffffffffffffffffffff16146118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290614ebc565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc611965612710611957600f548661320190919063ffffffff16565b61368090919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611990573d6000803e3d6000fd5b50600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6119f66127106119e86010548661320190919063ffffffff16565b61368090919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611a21573d6000803e3d6000fd5b5050565b611a40838383604051806020016040528060008152506125de565b505050565b600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60029054906101000a900460ff1681565b611a86613140565b73ffffffffffffffffffffffffffffffffffffffff16611aa46122bf565b73ffffffffffffffffffffffffffffffffffffffff1614611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190614ebc565b60405180910390fd5b80600b9080519060200190611b10929190613eff565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6600b604051611b419190614c5a565b60405180910390a150565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b7a613140565b73ffffffffffffffffffffffffffffffffffffffff16611b986122bf565b73ffffffffffffffffffffffffffffffffffffffff1614611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be590614ebc565b60405180910390fd5b80600e60146101000a81548160ff0219169083151502179055507fc6e0fb794d60d245727554ed563b17ec5cd901c15ee395b10535ce370b1bdccd600e60149054906101000a900460ff16604051611c469190614c1d565b60405180910390a150565b611c59613140565b73ffffffffffffffffffffffffffffffffffffffff16611c776122bf565b73ffffffffffffffffffffffffffffffffffffffff1614611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490614ebc565b60405180910390fd5b80600f81905550611ceb600f5461271061305490919063ffffffff16565b6010819055507fd20ab7c161b1f8ebfab00e747660c0fa31ae9123063e580b5be0aeab18623db2600f54604051611d22919061503c565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614e1c565b60405180910390fd5b80915050919050565b600c60009054906101000a900460ff1681565b60095481565b600c60019054906101000a900460ff1681565b600b8054611e189061533f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e449061533f565b8015611e915780601f10611e6657610100808354040283529160200191611e91565b820191906000526020600020905b815481529060010190602001808311611e7457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0190614dfc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611f59613140565b73ffffffffffffffffffffffffffffffffffffffff16611f776122bf565b73ffffffffffffffffffffffffffffffffffffffff1614611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc490614ebc565b60405180910390fd5b611fd76000613696565b565b60116020528060005260406000206000915054906101000a900460ff1681565b612001613140565b73ffffffffffffffffffffffffffffffffffffffff1661201f6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206c90614ebc565b60405180910390fd5b80600c60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb470355146314037ce5186813b4b7c65bff2b87f98d44ff063570d0e22d65ba3600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516121079190614b2d565b60405180910390a150565b61211a613140565b73ffffffffffffffffffffffffffffffffffffffff166121386122bf565b73ffffffffffffffffffffffffffffffffffffffff161461218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590614ebc565b60405180910390fd5b61219781613217565b7fdb7b64a879507c32bda4d0cf22dee29ed875c7157ecbbc10fe11bf14fab06d12816040516121c6919061503c565b60405180910390a150565b6121d9613140565b73ffffffffffffffffffffffffffffffffffffffff166121f76122bf565b73ffffffffffffffffffffffffffffffffffffffff161461224d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224490614ebc565b60405180910390fd5b600c60029054906101000a900460ff1615600c60026101000a81548160ff0219169083151502179055507f38822fae85453c65b78e1b7d02e45cae5eb0d7961e34226fb29c49dab9d3a357600c60029054906101000a900460ff166040516122b59190614c1d565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606001805461231e9061533f565b80601f016020809104026020016040519081016040528092919081815260200182805461234a9061533f565b80156123975780601f1061236c57610100808354040283529160200191612397565b820191906000526020600020905b81548152906001019060200180831161237a57829003601f168201915b5050505050905090565b60085481565b60126020528060005260406000206000915054906101000a900460ff1681565b6123cf613140565b73ffffffffffffffffffffffffffffffffffffffff166123ed6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a90614ebc565b60405180910390fd5b806008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab60085460405161247b919061503c565b60405180910390a150565b612498612491613140565b838361375c565b5050565b6124a4613140565b73ffffffffffffffffffffffffffffffffffffffff166124c26122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250f90614ebc565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff16612578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256f90614f9c565b60405180910390fd5b60006011600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f256e63760868166c3f047c49d3e1614c1ca6c620d715c552c54ddb4ba428719c816040516125d3919061503c565b60405180910390a150565b6125ef6125e9613140565b8361333b565b61262e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262590614fbc565b60405180910390fd5b61263a848484846138c9565b50505050565b612648613140565b73ffffffffffffffffffffffffffffffffffffffff166126666122bf565b73ffffffffffffffffffffffffffffffffffffffff16146126bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b390614ebc565b60405180910390fd5b600c60039054906101000a900460ff1615600c60036101000a81548160ff0219169083151502179055507ffabb6e4b24bd8ac3a08555e569d13590c5006dc61e4aae65e74296d3df6759ed600c60039054906101000a900460ff166040516127249190614c1d565b60405180910390a1565b6060612739826130d4565b612778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276f90614edc565b60405180910390fd5b6000600b80546127879061533f565b9050116127a357604051806020016040528060008152506127cf565b600b6127ae83613925565b6040516020016127bf929190614aee565b6040516020818303038152906040525b9050919050565b6127de613140565b73ffffffffffffffffffffffffffffffffffffffff166127fc6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612852576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284990614ebc565b60405180910390fd5b80600a819055507f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d0781604051612888919061503c565b60405180910390a150565b600e60149054906101000a900460ff1681565b600c60019054906101000a900460ff166128f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ec9061501c565b60405180910390fd5b60085481111561293a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293190614e3c565b60405180910390fd5b61294f8160095461320190919063ffffffff16565b341015612991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298890614f3c565b60405180910390fd5b600c60009054906101000a900460ff16612a1b576129ad613140565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1190614cfc565b60405180910390fd5b5b612a2481613217565b50565b612a2f613140565b73ffffffffffffffffffffffffffffffffffffffff16612a4d6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9a90614ebc565b60405180910390fd5b612aab6122bf565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612af0573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b8f613140565b73ffffffffffffffffffffffffffffffffffffffff16612bad6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfa90614ebc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6a90614f1c565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4846b8d14a603fbd3567c63384f41a947d787c004e59ce39ee755d0485ae5ed881604051612ce39190614b12565b60405180910390a150565b612cf6613140565b73ffffffffffffffffffffffffffffffffffffffff16612d146122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6190614ebc565b60405180910390fd5b60005b8151811015612e9b57600160126000848481518110612db5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507faec42ac7f1bb8651906ae6522f50a19429e124e8ea678ef59fd27750759288a2828281518110612e68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001604051612e80929190614b94565b60405180910390a18080612e93906153a2565b915050612d6d565b5050565b612ea7613140565b73ffffffffffffffffffffffffffffffffffffffff16612ec56122bf565b73ffffffffffffffffffffffffffffffffffffffff1614612f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1290614ebc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8290614cbc565b60405180910390fd5b612f9481613696565b50565b612f9f613140565b73ffffffffffffffffffffffffffffffffffffffff16612fbd6122bf565b73ffffffffffffffffffffffffffffffffffffffff1614613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a90614ebc565b60405180910390fd5b806009819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f81604051613049919061503c565b60405180910390a150565b600081836130629190615243565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166131bb83611d2d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818361320f91906151e9565b905092915050565b600a5461322f82600754613ad290919063ffffffff16565b1115613270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326790614d3c565b60405180910390fd5b6000600754905060005b8281101561333657613296600183613ad290919063ffffffff16565b91506132ae6001600754613ad290919063ffffffff16565b6007819055506132c56132bf613140565b83613ae8565b816132ce613140565b73ffffffffffffffffffffffffffffffffffffffff167f85a66b9141978db9980f7e0ce3b468cebf4f7999f32b23091c5c03e798b1ba7a61330e8561272e565b60405161331b9190614c38565b60405180910390a3808061332e906153a2565b91505061327a565b505050565b6000613346826130d4565b613385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337c90614dbc565b60405180910390fd5b600061339083611d2d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806133ff57508373ffffffffffffffffffffffffffffffffffffffff166133e784610d48565b73ffffffffffffffffffffffffffffffffffffffff16145b80613410575061340f8185612af3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661343982611d2d565b73ffffffffffffffffffffffffffffffffffffffff161461348f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348690614cdc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f690614d5c565b60405180910390fd5b61350a838383613b06565b613515600082613148565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135659190615243565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135bc9190615162565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461367b838383613b0b565b505050565b6000818361368e91906151b8565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c290614d7c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516138bc9190614c1d565b60405180910390a3505050565b6138d4848484613419565b6138e084848484613b10565b61391f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391690614c9c565b60405180910390fd5b50505050565b6060600082141561396d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613acd565b600082905060005b6000821461399f578080613988906153a2565b915050600a8261399891906151b8565b9150613975565b60008167ffffffffffffffff8111156139e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613a135781602001600182028036833780820191505090505b5090505b60008514613ac657600182613a2c9190615243565b9150600a85613a3b91906153eb565b6030613a479190615162565b60f81b818381518110613a83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613abf91906151b8565b9450613a17565b8093505050505b919050565b60008183613ae09190615162565b905092915050565b613b02828260405180602001604052806000815250613ca7565b5050565b505050565b505050565b6000613b318473ffffffffffffffffffffffffffffffffffffffff16613d02565b15613c9a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613b5a613140565b8786866040518563ffffffff1660e01b8152600401613b7c9493929190614b48565b602060405180830381600087803b158015613b9657600080fd5b505af1925050508015613bc757506040513d601f19601f82011682018060405250810190613bc49190614427565b60015b613c4a573d8060008114613bf7576040519150601f19603f3d011682016040523d82523d6000602084013e613bfc565b606091505b50600081511415613c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3990614c9c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c9f565b600190505b949350505050565b613cb18383613d25565b613cbe6000848484613b10565b613cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf490614c9c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d8c90614e7c565b60405180910390fd5b613d9e816130d4565b15613dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dd590614d1c565b60405180910390fd5b613dea60008383613b06565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e3a9190615162565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613efb60008383613b0b565b5050565b828054613f0b9061533f565b90600052602060002090601f016020900481019282613f2d5760008555613f74565b82601f10613f4657805160ff1916838001178555613f74565b82800160010185558215613f74579182015b82811115613f73578251825591602001919060010190613f58565b5b509050613f819190613f85565b5090565b5b80821115613f9e576000816000905550600101613f86565b5090565b6000613fb5613fb08461507c565b615057565b90508083825260208201905082856020860282011115613fd457600080fd5b60005b858110156140045781613fea888261408a565b845260208401935060208301925050600181019050613fd7565b5050509392505050565b600061402161401c846150a8565b615057565b90508281526020810184848401111561403957600080fd5b6140448482856152fd565b509392505050565b600061405f61405a846150d9565b615057565b90508281526020810184848401111561407757600080fd5b6140828482856152fd565b509392505050565b60008135905061409981615d6d565b92915050565b6000815190506140ae81615d6d565b92915050565b6000813590506140c381615d84565b92915050565b600082601f8301126140da57600080fd5b81356140ea848260208601613fa2565b91505092915050565b60008135905061410281615d9b565b92915050565b60008135905061411781615db2565b92915050565b60008151905061412c81615db2565b92915050565b600082601f83011261414357600080fd5b813561415384826020860161400e565b91505092915050565b600082601f83011261416d57600080fd5b813561417d84826020860161404c565b91505092915050565b60008135905061419581615dc9565b92915050565b6000602082840312156141ad57600080fd5b60006141bb8482850161408a565b91505092915050565b6000602082840312156141d657600080fd5b60006141e48482850161409f565b91505092915050565b6000602082840312156141ff57600080fd5b600061420d848285016140b4565b91505092915050565b6000806040838503121561422957600080fd5b60006142378582860161408a565b92505060206142488582860161408a565b9150509250929050565b60008060006060848603121561426757600080fd5b60006142758682870161408a565b93505060206142868682870161408a565b925050604061429786828701614186565b9150509250925092565b600080600080608085870312156142b757600080fd5b60006142c58782880161408a565b94505060206142d68782880161408a565b93505060406142e787828801614186565b925050606085013567ffffffffffffffff81111561430457600080fd5b61431087828801614132565b91505092959194509250565b6000806040838503121561432f57600080fd5b600061433d8582860161408a565b925050602061434e858286016140f3565b9150509250929050565b6000806040838503121561436b57600080fd5b60006143798582860161408a565b925050602061438a85828601614186565b9150509250929050565b6000602082840312156143a657600080fd5b600082013567ffffffffffffffff8111156143c057600080fd5b6143cc848285016140c9565b91505092915050565b6000602082840312156143e757600080fd5b60006143f5848285016140f3565b91505092915050565b60006020828403121561441057600080fd5b600061441e84828501614108565b91505092915050565b60006020828403121561443957600080fd5b60006144478482850161411d565b91505092915050565b60006020828403121561446257600080fd5b600082013567ffffffffffffffff81111561447c57600080fd5b6144888482850161415c565b91505092915050565b6000602082840312156144a357600080fd5b60006144b184828501614186565b91505092915050565b600080604083850312156144cd57600080fd5b60006144db85828601614186565b92505060206144ec85828601614186565b9150509250929050565b6144ff81615289565b82525050565b61450e81615277565b82525050565b61451d8161529b565b82525050565b600061452e8261511f565b6145388185615135565b935061454881856020860161530c565b614551816154d8565b840191505092915050565b60006145678261512a565b6145718185615146565b935061458181856020860161530c565b61458a816154d8565b840191505092915050565b60006145a08261512a565b6145aa8185615157565b93506145ba81856020860161530c565b80840191505092915050565b600081546145d38161533f565b6145dd8186615146565b945060018216600081146145f8576001811461460a5761463d565b60ff198316865260208601935061463d565b6146138561510a565b60005b8381101561463557815481890152600182019150602081019050614616565b808801955050505b50505092915050565b600081546146538161533f565b61465d8186615157565b945060018216600081146146785760018114614689576146bc565b60ff198316865281860193506146bc565b6146928561510a565b60005b838110156146b457815481890152600182019150602081019050614695565b838801955050505b50505092915050565b60006146d2602683615146565b91506146dd826154e9565b604082019050919050565b60006146f5603283615146565b915061470082615538565b604082019050919050565b6000614718602683615146565b915061472382615587565b604082019050919050565b600061473b602583615146565b9150614746826155d6565b604082019050919050565b600061475e603783615146565b915061476982615625565b604082019050919050565b6000614781601c83615146565b915061478c82615674565b602082019050919050565b60006147a4601783615146565b91506147af8261569d565b602082019050919050565b60006147c7602483615146565b91506147d2826156c6565b604082019050919050565b60006147ea601983615146565b91506147f582615715565b602082019050919050565b600061480d602c83615146565b91506148188261573e565b604082019050919050565b6000614830602c83615146565b915061483b8261578d565b604082019050919050565b6000614853603883615146565b915061485e826157dc565b604082019050919050565b6000614876602a83615146565b91506148818261582b565b604082019050919050565b6000614899602983615146565b91506148a48261587a565b604082019050919050565b60006148bc603483615146565b91506148c7826158c9565b604082019050919050565b60006148df602b83615146565b91506148ea82615918565b604082019050919050565b6000614902602083615146565b915061490d82615967565b602082019050919050565b6000614925602c83615146565b915061493082615990565b604082019050919050565b6000614948602083615146565b9150614953826159df565b602082019050919050565b600061496b602f83615146565b915061497682615a08565b604082019050919050565b600061498e603183615146565b915061499982615a57565b604082019050919050565b60006149b1603183615146565b91506149bc82615aa6565b604082019050919050565b60006149d4602583615146565b91506149df82615af5565b604082019050919050565b60006149f7602183615146565b9150614a0282615b44565b604082019050919050565b6000614a1a602d83615146565b9150614a2582615b93565b604082019050919050565b6000614a3d602a83615146565b9150614a4882615be2565b604082019050919050565b6000614a60603183615146565b9150614a6b82615c31565b604082019050919050565b6000614a83603b83615146565b9150614a8e82615c80565b604082019050919050565b6000614aa6603983615146565b9150614ab182615ccf565b604082019050919050565b6000614ac9602383615146565b9150614ad482615d1e565b604082019050919050565b614ae8816152f3565b82525050565b6000614afa8285614646565b9150614b068284614595565b91508190509392505050565b6000602082019050614b276000830184614505565b92915050565b6000602082019050614b4260008301846144f6565b92915050565b6000608082019050614b5d6000830187614505565b614b6a6020830186614505565b614b776040830185614adf565b8181036060830152614b898184614523565b905095945050505050565b6000604082019050614ba96000830185614505565b614bb66020830184614514565b9392505050565b6000604082019050614bd26000830185614505565b614bdf6020830184614adf565b9392505050565b6000606082019050614bfb6000830186614505565b614c086020830185614adf565b614c156040830184614adf565b949350505050565b6000602082019050614c326000830184614514565b92915050565b60006020820190508181036000830152614c52818461455c565b905092915050565b60006020820190508181036000830152614c7481846145c6565b905092915050565b60006020820190508181036000830152614c95816146c5565b9050919050565b60006020820190508181036000830152614cb5816146e8565b9050919050565b60006020820190508181036000830152614cd58161470b565b9050919050565b60006020820190508181036000830152614cf58161472e565b9050919050565b60006020820190508181036000830152614d1581614751565b9050919050565b60006020820190508181036000830152614d3581614774565b9050919050565b60006020820190508181036000830152614d5581614797565b9050919050565b60006020820190508181036000830152614d75816147ba565b9050919050565b60006020820190508181036000830152614d95816147dd565b9050919050565b60006020820190508181036000830152614db581614800565b9050919050565b60006020820190508181036000830152614dd581614823565b9050919050565b60006020820190508181036000830152614df581614846565b9050919050565b60006020820190508181036000830152614e1581614869565b9050919050565b60006020820190508181036000830152614e358161488c565b9050919050565b60006020820190508181036000830152614e55816148af565b9050919050565b60006020820190508181036000830152614e75816148d2565b9050919050565b60006020820190508181036000830152614e95816148f5565b9050919050565b60006020820190508181036000830152614eb581614918565b9050919050565b60006020820190508181036000830152614ed58161493b565b9050919050565b60006020820190508181036000830152614ef58161495e565b9050919050565b60006020820190508181036000830152614f1581614981565b9050919050565b60006020820190508181036000830152614f35816149a4565b9050919050565b60006020820190508181036000830152614f55816149c7565b9050919050565b60006020820190508181036000830152614f75816149ea565b9050919050565b60006020820190508181036000830152614f9581614a0d565b9050919050565b60006020820190508181036000830152614fb581614a30565b9050919050565b60006020820190508181036000830152614fd581614a53565b9050919050565b60006020820190508181036000830152614ff581614a76565b9050919050565b6000602082019050818103600083015261501581614a99565b9050919050565b6000602082019050818103600083015261503581614abc565b9050919050565b60006020820190506150516000830184614adf565b92915050565b6000615061615072565b905061506d8282615371565b919050565b6000604051905090565b600067ffffffffffffffff821115615097576150966154a9565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156150c3576150c26154a9565b5b6150cc826154d8565b9050602081019050919050565b600067ffffffffffffffff8211156150f4576150f36154a9565b5b6150fd826154d8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061516d826152f3565b9150615178836152f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151ad576151ac61541c565b5b828201905092915050565b60006151c3826152f3565b91506151ce836152f3565b9250826151de576151dd61544b565b5b828204905092915050565b60006151f4826152f3565b91506151ff836152f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152385761523761541c565b5b828202905092915050565b600061524e826152f3565b9150615259836152f3565b92508282101561526c5761526b61541c565b5b828203905092915050565b6000615282826152d3565b9050919050565b6000615294826152d3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561532a57808201518184015260208101905061530f565b83811115615339576000848401525b50505050565b6000600282049050600182168061535757607f821691505b6020821081141561536b5761536a61547a565b5b50919050565b61537a826154d8565b810181811067ffffffffffffffff82111715615399576153986154a9565b5b80604052505050565b60006153ad826152f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153e0576153df61541c565b5b600182019050919050565b60006153f6826152f3565b9150615401836152f3565b9250826154115761541061544b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f44726f7073706163653a3a70726573616c654275793a20696e76616c6964207460008201527f69636b65742e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20536d61727420636f6e7472616374732060008201527f617265206e6f7420616c6c6f77656420746f206275792e000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44726f7073706163653a3a70726573616c654275793a20496e7375666669636960008201527f656e74207061796d656e742e0000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20546f6f206d616e7920746f6b656e732060008201527f666f72206f6e65207472616e73616374696f6e2e000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a205469636b657420616c60008201527f726561647920757365642e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a77686974656c6973744275793a20596f752061726560008201527f206e6f742077686974656c69737465642e000000000000000000000000000000602082015250565b7f44726f70537061636553616c653a3a7365745469636b6574416464726573733a60008201527f20496e76616c696420616464726573732e000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20496e73756666696369656e742070617960008201527f6d656e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a2050726573616c65206960008201527f73206e6f74204163746976652e00000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a636c6561725469636b65743a205469636b6574206960008201527f73206e6f74207573656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a20546f6f206d616e792060008201527f746f6b656e7320666f72206f6e65207472616e73616374696f6e2e0000000000602082015250565b7f44726f70537061636553616c653a3a77686974656c6973744275793a2057686960008201527f74656c69737420427579206973206e6f74204163746976652e00000000000000602082015250565b7f44726f7073706163653a3a6275793a2053616c65206973206e6f74206163746960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b615d7681615277565b8114615d8157600080fd5b50565b615d8d81615289565b8114615d9857600080fd5b50565b615da48161529b565b8114615daf57600080fd5b50565b615dbb816152a7565b8114615dc657600080fd5b50565b615dd2816152f3565b8114615ddd57600080fd5b5056fea26469706673582212203ecbca102a818a306097baa8b0287df3f4e070971b0d1c97f5cd5c147e1e639e64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000d529ae9e86000000000000000000000000000000000000000000000000000000000000000009c40000000000000000000000007f9fb82957fa4070f02f4d4d4928e201ffee2f78000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d170000000000000000000000007ba0a79ec30259e2792a43989edd97c6e40bb3360000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000076e756d386572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000076e756d3865727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d57594a52366d537041754651584c5a6464416866664544393974457a596458516661536d324d3865774a466d2f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _supplyLimit (uint256): 10000
Arg [1] : _mintLimit (uint256): 20
Arg [2] : _mintPrice (uint256): 60000000000000000
Arg [3] : _devSaleShare (uint256): 2500
Arg [4] : _withdrawalWallet (address): 0x7f9Fb82957Fa4070F02F4D4D4928E201fFeE2F78
Arg [5] : _devWallet (address): 0x856701083eD11A0D35bAc3B769B4c8efE3330d17
Arg [6] : _ticketAddress (address): 0x7ba0A79eC30259E2792A43989EdD97c6E40Bb336
Arg [7] : _name (string): num8ers
Arg [8] : _ticker (string): num8ers
Arg [9] : _baseURI (string): https://gateway.pinata.cloud/ipfs/QmWYJR6mSpAuFQXLZddAhffED99tEzYdXQfaSm2M8ewJFm/

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [2] : 00000000000000000000000000000000000000000000000000d529ae9e860000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [4] : 0000000000000000000000007f9fb82957fa4070f02f4d4d4928e201ffee2f78
Arg [5] : 000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d17
Arg [6] : 0000000000000000000000007ba0a79ec30259e2792a43989edd97c6e40bb336
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [11] : 6e756d3865727300000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [13] : 6e756d3865727300000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [15] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [16] : 732f516d57594a52366d537041754651584c5a6464416866664544393974457a
Arg [17] : 596458516661536d324d3865774a466d2f000000000000000000000000000000


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.