ETH Price: $3,479.70 (+6.25%)
Gas: 6 Gwei

Token

SANDHELM (HELM)
 

Overview

Max Total Supply

446 HELM

Holders

191

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
epsilonx.eth
Balance
1 HELM
0x42cc305a9204e6eec4f6fa3e5c0e88c1819e6d78
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:
Sandhelm

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

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

/*
 $$$$$$\   $$$$$$\  $$\   $$\ $$$$$$$\  $$\   $$\ $$$$$$$$\ $$\       $$\      $$\ 
$$  __$$\ $$  __$$\ $$$\  $$ |$$  __$$\ $$ |  $$ |$$  _____|$$ |      $$$\    $$$ |
$$ /  \__|$$ /  $$ |$$$$\ $$ |$$ |  $$ |$$ |  $$ |$$ |      $$ |      $$$$\  $$$$ |
\$$$$$$\  $$$$$$$$ |$$ $$\$$ |$$ |  $$ |$$$$$$$$ |$$$$$\    $$ |      $$\$$\$$ $$ |
 \____$$\ $$  __$$ |$$ \$$$$ |$$ |  $$ |$$  __$$ |$$  __|   $$ |      $$ \$$$  $$ |
$$\   $$ |$$ |  $$ |$$ |\$$$ |$$ |  $$ |$$ |  $$ |$$ |      $$ |      $$ |\$  /$$ |
\$$$$$$  |$$ |  $$ |$$ | \$$ |$$$$$$$  |$$ |  $$ |$$$$$$$$\ $$$$$$$$\ $$ | \_/ $$ |
 \______/ \__|  \__|\__|  \__|\_______/ \__|  \__|\________|\________|\__|     \__|
                                                                                  
*/

pragma solidity 0.8.2;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";

contract Sandhelm is Ownable, ERC721Enumerable, PaymentSplitter {

    uint public constant MAX_HELM = 9999;
    uint public constant HELM_PRICE = 0.07 ether;
    uint public constant walletLimit = 12;
    string public PROVENANCE_HASH;
    string private _baseURIExtended;
    string private _contractURI;
    bool public _isSaleLive = false;
    bool private locked;
    bool private PROVENANCE_LOCK = false;
    uint public _reserved;
    uint id = totalSupply();

    //Sandhelm Release Time -
    uint public publicSale = 1637002800; // November 15th, 2021

    struct Account {
        uint nftsReserved;
        uint walletLimit;
        uint mintedNFTs;
        bool isAdmin;
    }

    mapping(address => Account) public accounts;

    event Mint(address indexed sender, uint totalSupply);
    event PermanentURI(string _value, uint256 indexed _id);

    address[] private _distro;
    uint[] private _distro_shares;

    constructor(address[] memory distro, uint[] memory distro_shares, address[] memory teamclaim, address[] memory admins)
        ERC721("SANDHELM", "HELM")
        PaymentSplitter(distro, distro_shares)
    {
        _baseURIExtended = "ipfs://";

        accounts[msg.sender] = Account( 0, 0, 0, true);
        // teamclaimNFT
        accounts[teamclaim[0]] = Account( 80, 0, 0, true); //1
        accounts[teamclaim[1]] = Account( 10, 0, 0, true); //2
        accounts[teamclaim[2]] = Account( 10, 0, 0, true); //3
        accounts[teamclaim[3]] = Account( 25, 0, 0, true); //4
        accounts[teamclaim[4]] = Account( 25, 0, 0, true); //5
        accounts[teamclaim[5]] = Account( 25, 0, 0, true); //6
        accounts[teamclaim[6]] = Account( 25, 0, 0, true); //7

        //admins
        accounts[admins[0]] = Account( 0, 0, 0, true); //1
        accounts[admins[1]] = Account( 0, 0, 0, true); //2
        accounts[admins[2]] = Account( 0, 0, 0, true); //3
        accounts[admins[3]] = Account( 0, 0, 0, true); //4
        accounts[admins[4]] = Account( 0, 0, 0, true); //5

        _reserved = 200;

        _distro = distro;
        _distro_shares = distro_shares;
    }

    // Modifiers

    modifier onlyAdmin() {
        require(accounts[msg.sender].isAdmin == true, "Sorry, You need to be an admin");
        _;
    }

    modifier noReentrant() {
        require(!locked, "No re-entrancy");
        locked = true;
        _;
        locked = false;
    }

    // End Modifier

    // Setters

    function setAdmin(address _addr) external onlyOwner {
        accounts[_addr].isAdmin = !accounts[_addr].isAdmin;
    }

    function setProvenanceHash(string memory _provenanceHash) external onlyOwner {
        require(PROVENANCE_LOCK == false);
        PROVENANCE_HASH = _provenanceHash;
    }

    function lockProvenance() external onlyOwner {
        PROVENANCE_LOCK = true;
    }

    function setBaseURI(string memory _newURI) external onlyOwner {
        _baseURIExtended = _newURI;
    }

    function setContractURI(string memory _newURI) external onlyOwner {
        _contractURI = _newURI;
    }

    function deactivateSale() external onlyOwner {
        _isSaleLive = false;
    }

    function activateSale() external onlyOwner {
        _isSaleLive = true;
    }


    function setNewSaleTime(uint[] memory _newTime) external onlyOwner {
        require(_newTime.length == 1);
        publicSale = _newTime[0];
    }
    
    // End Setters

    // Getters

    // For OpenSea
    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    // For Metadata
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIExtended;
    }

    // End Getter

    // Business Logic

    function adminMint() external onlyAdmin {
        uint _amount = accounts[msg.sender].nftsReserved;
        require(accounts[msg.sender].isAdmin == true,"Sorry, Only an admin can mint");
        require(_amount > 0, 'Need to have reserved supply');
        require(totalSupply() + _amount <= MAX_HELM, "You would exceed the mint limit");

        accounts[msg.sender].nftsReserved -= _amount;
        _reserved = _reserved - _amount;


        for (uint i = 0; i < _amount; i++) {
            id++;
            _safeMint(msg.sender, id);
            emit Mint(msg.sender, totalSupply());
        }
    }

    function airDropNFT(address[] memory _addr) external onlyOwner {
        require(totalSupply() + _addr.length <= (MAX_HELM - _reserved), "You would exceed the airdrop limit");

        // DO MINT

        for (uint i = 0; i < _addr.length; i++) {
            id++;
            _safeMint(_addr[i], id);
            emit Mint(msg.sender, totalSupply());
        }

    }

    function mint(uint _amount) external payable noReentrant {
        // CHECK BASIC SALE CONDITIONS
        require(_isSaleLive, "Sale must be active to mint");
        require(totalSupply() + _amount <= (MAX_HELM - _reserved), "Purchase would exceed max supply of HELM");
        require(msg.value >= (HELM_PRICE * _amount), "Ether value sent is not correct");
        require(!isContract(msg.sender), "Contracts can't mint");
        
        if(block.timestamp >= publicSale) {
            require((_amount + accounts[msg.sender].mintedNFTs) <= walletLimit, "Sorry you can only mint 12 per wallet");
        } 

        // DO MINT

        for (uint i = 0; i < _amount; i++) {
            id++;
            accounts[msg.sender].mintedNFTs++;
            _safeMint(msg.sender, id);
            emit Mint(msg.sender, totalSupply());
        }

    }

    function distributeETH() external onlyAdmin {
        for (uint i = 0; i < _distro.length; i++) {
            release(payable(_distro[i]));
        }
    }
    // helper

    function isContract(address account) internal view returns (bool) {
  
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }    

}

File 2 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 4 of 15 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Address.sol";
import "../utils/Context.sol";
import "../utils/math/SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 5 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 7 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 9 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

File 12 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 13 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 14 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 15 of 15 : SafeMath.sol
// SPDX-License-Identifier: MIT

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 no longer needed starting with Solidity 0.8. 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;
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"distro","type":"address[]"},{"internalType":"uint256[]","name":"distro_shares","type":"uint256[]"},{"internalType":"address[]","name":"teamclaim","type":"address[]"},{"internalType":"address[]","name":"admins","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"HELM_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_HELM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accounts","outputs":[{"internalType":"uint256","name":"nftsReserved","type":"uint256"},{"internalType":"uint256","name":"walletLimit","type":"uint256"},{"internalType":"uint256","name":"mintedNFTs","type":"uint256"},{"internalType":"bool","name":"isAdmin","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"}],"name":"airDropNFT","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributeETH","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":"lockProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_newTime","type":"uint256[]"}],"name":"setNewSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000601360006101000a81548160ff0219169083151502179055506000601360026101000a81548160ff0219169083151502179055506200004a62000eb760201b60201c565b601555636192ae306016553480156200006257600080fd5b5060405162007747380380620077478339818101604052810190620000889190620014cd565b83836040518060400160405280600881526020017f53414e4448454c4d0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f48454c4d00000000000000000000000000000000000000000000000000000000815250620001166200010a62000ec460201b60201c565b62000ecc60201b60201c565b81600190805190602001906200012e929190620011ca565b50806002908051906020019062000147929190620011ca565b505050805182511462000191576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018890620016d1565b60405180910390fd5b6000825111620001d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001cf9062001715565b60405180910390fd5b60005b82518110156200028f576200027983828151811062000223577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183838151811062000265577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015162000f9060201b60201c565b80806200028690620018f8565b915050620001db565b5050506040518060400160405280600781526020017f697066733a2f2f0000000000000000000000000000000000000000000000000081525060119080519060200190620002df929190620011ca565b50604051806080016040528060008152602001600081526020016000815260200160011515815250601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff0219169083151502179055509050506040518060800160405280605081526020016000815260200160008152602001600115158152506017600084600081518110620003ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff0219169083151502179055509050506040518060800160405280600a81526020016000815260200160008152602001600115158152506017600084600181518110620004d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff0219169083151502179055509050506040518060800160405280600a81526020016000815260200160008152602001600115158152506017600084600281518110620005bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff0219169083151502179055509050506040518060800160405280601981526020016000815260200160008152602001600115158152506017600084600381518110620006a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff021916908315150217905550905050604051806080016040528060198152602001600081526020016000815260200160011515815250601760008460048151811062000791577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff02191690831515021790555090505060405180608001604052806019815260200160008152602001600081526020016001151581525060176000846005815181106200087a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff021916908315150217905550905050604051806080016040528060198152602001600081526020016000815260200160011515815250601760008460068151811062000963577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff021916908315150217905550905050604051806080016040528060008152602001600081526020016000815260200160011515815250601760008360008151811062000a4c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff021916908315150217905550905050604051806080016040528060008152602001600081526020016000815260200160011515815250601760008360018151811062000b35577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff021916908315150217905550905050604051806080016040528060008152602001600081526020016000815260200160011515815250601760008360028151811062000c1e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff021916908315150217905550905050604051806080016040528060008152602001600081526020016000815260200160011515815250601760008360038151811062000d07577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff021916908315150217905550905050604051806080016040528060008152602001600081526020016000815260200160011515815250601760008360048151811062000df0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff02191690831515021790555090505060c8601481905550836018908051906020019062000e939291906200125b565b50826019908051906020019062000eac929190620012ea565b505050505062001b57565b6000600980549050905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001003576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ffa90620016af565b60405180910390fd5b6000811162001049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010409062001737565b60405180910390fd5b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414620010ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010c590620016f3565b60405180910390fd5b600f829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b54620011859190620017f1565b600b819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac8282604051620011be92919062001682565b60405180910390a15050565b828054620011d8906200188c565b90600052602060002090601f016020900481019282620011fc576000855562001248565b82601f106200121757805160ff191683800117855562001248565b8280016001018555821562001248579182015b82811115620012475782518255916020019190600101906200122a565b5b5090506200125791906200133c565b5090565b828054828255906000526020600020908101928215620012d7579160200282015b82811115620012d65782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200127c565b5b509050620012e691906200133c565b5090565b82805482825590600052602060002090810192821562001329579160200282015b82811115620013285782518255916020019190600101906200130b565b5b5090506200133891906200133c565b5090565b5b80821115620013575760008160009055506001016200133d565b5090565b6000620013726200136c8462001782565b62001759565b905080838252602082019050828560208602820111156200139257600080fd5b60005b85811015620013c65781620013ab888262001445565b84526020840193506020830192505060018101905062001395565b5050509392505050565b6000620013e7620013e184620017b1565b62001759565b905080838252602082019050828560208602820111156200140757600080fd5b60005b858110156200143b5781620014208882620014b6565b8452602084019350602083019250506001810190506200140a565b5050509392505050565b600081519050620014568162001b23565b92915050565b600082601f8301126200146e57600080fd5b8151620014808482602086016200135b565b91505092915050565b600082601f8301126200149b57600080fd5b8151620014ad848260208601620013d0565b91505092915050565b600081519050620014c78162001b3d565b92915050565b60008060008060808587031215620014e457600080fd5b600085015167ffffffffffffffff811115620014ff57600080fd5b6200150d878288016200145c565b945050602085015167ffffffffffffffff8111156200152b57600080fd5b620015398782880162001489565b935050604085015167ffffffffffffffff8111156200155757600080fd5b62001565878288016200145c565b925050606085015167ffffffffffffffff8111156200158357600080fd5b62001591878288016200145c565b91505092959194509250565b620015a8816200184e565b82525050565b6000620015bd602c83620017e0565b9150620015ca82620019e4565b604082019050919050565b6000620015e4603283620017e0565b9150620015f18262001a33565b604082019050919050565b60006200160b602b83620017e0565b9150620016188262001a82565b604082019050919050565b600062001632601a83620017e0565b91506200163f8262001ad1565b602082019050919050565b600062001659601d83620017e0565b9150620016668262001afa565b602082019050919050565b6200167c8162001882565b82525050565b60006040820190506200169960008301856200159d565b620016a8602083018462001671565b9392505050565b60006020820190508181036000830152620016ca81620015ae565b9050919050565b60006020820190508181036000830152620016ec81620015d5565b9050919050565b600060208201905081810360008301526200170e81620015fc565b9050919050565b60006020820190508181036000830152620017308162001623565b9050919050565b6000602082019050818103600083015262001752816200164a565b9050919050565b60006200176562001778565b9050620017738282620018c2565b919050565b6000604051905090565b600067ffffffffffffffff821115620017a0576200179f620019a4565b5b602082029050602081019050919050565b600067ffffffffffffffff821115620017cf57620017ce620019a4565b5b602082029050602081019050919050565b600082825260208201905092915050565b6000620017fe8262001882565b91506200180b8362001882565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001843576200184262001946565b5b828201905092915050565b60006200185b8262001862565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620018a557607f821691505b60208210811415620018bc57620018bb62001975565b5b50919050565b620018cd82620019d3565b810181811067ffffffffffffffff82111715620018ef57620018ee620019a4565b5b80604052505050565b6000620019058262001882565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200193b576200193a62001946565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b62001b2e816200184e565b811462001b3a57600080fd5b50565b62001b488162001882565b811462001b5457600080fd5b50565b615be08062001b676000396000f3fe6080604052600436106102815760003560e01c8063715018a61161014f578063b8b9b549116100c1578063e8a3d4851161007a578063e8a3d485146109c5578063e985e9c5146109f0578063ea7523ee14610a2d578063f2fde38b14610a44578063fc15ad0614610a6d578063ff1b655614610a96576102c8565b8063b8b9b549146108c7578063c721f08d146108de578063c87b56dd146108f5578063ce7c2ac214610932578063e33b7de31461096f578063e618329b1461099a576102c8565b806395d89b411161011357806395d89b41146107c65780639852595c146107f1578063a0712d681461082e578063a22cb4651461084a578063a8f3201314610873578063b88d4fde1461089e576102c8565b8063715018a614610707578063895fc7881461071e5780638b83209b146107355780638da5cb5b14610772578063938e3d7b1461079d576102c8565b80633a98ef39116101f35780635e5c06e2116101ac5780635e5c06e2146105e2578063616d0dfd146106225780636352211e146106395780636aaa571d14610676578063704b6c02146106a157806370a08231146106ca576102c8565b80633a98ef39146104d25780633c8463a1146104fd57806342842e0e146105285780634f5e0b28146105515780634f6ccce71461057c57806355f804b3146105b9576102c8565b806318160ddd1161024557806318160ddd146103c457806319165587146103ef57806323b872dd1461041857806326d104ec146104415780632f745c591461046a57806333bc1c5c146104a7576102c8565b806301ffc9a7146102cd57806306fdde031461030a578063081812fc14610335578063095ea7b314610372578063109695231461039b576102c8565b366102c8577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102af610ac1565b346040516102be929190614923565b60405180910390a1005b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef9190614219565b610ac9565b604051610301919061494c565b60405180910390f35b34801561031657600080fd5b5061031f610b43565b60405161032c9190614967565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906142ac565b610bd5565b6040516103699190614893565b60405180910390f35b34801561037e57600080fd5b506103996004803603810190610394919061415b565b610c5a565b005b3480156103a757600080fd5b506103c260048036038101906103bd919061426b565b610d72565b005b3480156103d057600080fd5b506103d9610e28565b6040516103e69190614da9565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190613ff0565b610e35565b005b34801561042457600080fd5b5061043f600480360381019061043a9190614055565b61109d565b005b34801561044d57600080fd5b50610468600480360381019061046391906141d8565b6110fd565b005b34801561047657600080fd5b50610491600480360381019061048c919061415b565b6111d2565b60405161049e9190614da9565b60405180910390f35b3480156104b357600080fd5b506104bc611277565b6040516104c99190614da9565b60405180910390f35b3480156104de57600080fd5b506104e761127d565b6040516104f49190614da9565b60405180910390f35b34801561050957600080fd5b50610512611287565b60405161051f9190614da9565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190614055565b61128c565b005b34801561055d57600080fd5b506105666112ac565b604051610573919061494c565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e91906142ac565b6112bf565b6040516105b09190614da9565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db919061426b565b611356565b005b3480156105ee57600080fd5b5061060960048036038101906106049190613fc7565b6113ec565b6040516106199493929190614dc4565b60405180910390f35b34801561062e57600080fd5b50610637611429565b005b34801561064557600080fd5b50610660600480360381019061065b91906142ac565b6114c2565b60405161066d9190614893565b60405180910390f35b34801561068257600080fd5b5061068b611574565b6040516106989190614da9565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190613fc7565b61157a565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190613fc7565b6116a3565b6040516106fe9190614da9565b60405180910390f35b34801561071357600080fd5b5061071c61175b565b005b34801561072a57600080fd5b506107336117e3565b005b34801561074157600080fd5b5061075c600480360381019061075791906142ac565b611af8565b6040516107699190614893565b60405180910390f35b34801561077e57600080fd5b50610787611b66565b6040516107949190614893565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf919061426b565b611b8f565b005b3480156107d257600080fd5b506107db611c25565b6040516107e89190614967565b60405180910390f35b3480156107fd57600080fd5b5061081860048036038101906108139190613fc7565b611cb7565b6040516108259190614da9565b60405180910390f35b610848600480360381019061084391906142ac565b611d00565b005b34801561085657600080fd5b50610871600480360381019061086c919061411f565b612065565b005b34801561087f57600080fd5b506108886121e6565b6040516108959190614da9565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c091906140a4565b6121ec565b005b3480156108d357600080fd5b506108dc61224e565b005b3480156108ea57600080fd5b506108f3612377565b005b34801561090157600080fd5b5061091c600480360381019061091791906142ac565b612410565b6040516109299190614967565b60405180910390f35b34801561093e57600080fd5b5061095960048036038101906109549190613fc7565b6124b7565b6040516109669190614da9565b60405180910390f35b34801561097b57600080fd5b50610984612500565b6040516109919190614da9565b60405180910390f35b3480156109a657600080fd5b506109af61250a565b6040516109bc9190614da9565b60405180910390f35b3480156109d157600080fd5b506109da612515565b6040516109e79190614967565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a129190614019565b6125a7565b604051610a24919061494c565b60405180910390f35b348015610a3957600080fd5b50610a4261263b565b005b348015610a5057600080fd5b50610a6b6004803603810190610a669190613fc7565b6126d4565b005b348015610a7957600080fd5b50610a946004803603810190610a8f9190614197565b6127cc565b005b348015610aa257600080fd5b50610aab612989565b604051610ab89190614967565b60405180910390f35b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3c5750610b3b82612a17565b5b9050919050565b606060018054610b5290615149565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7e90615149565b8015610bcb5780601f10610ba057610100808354040283529160200191610bcb565b820191906000526020600020905b815481529060010190602001808311610bae57829003601f168201915b5050505050905090565b6000610be082612af9565b610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1690614c89565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c65826114c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90614d29565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf5610ac1565b73ffffffffffffffffffffffffffffffffffffffff161480610d245750610d2381610d1e610ac1565b6125a7565b5b610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90614be9565b60405180910390fd5b610d6d8383612b65565b505050565b610d7a610ac1565b73ffffffffffffffffffffffffffffffffffffffff16610d98611b66565b73ffffffffffffffffffffffffffffffffffffffff1614610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590614ca9565b60405180910390fd5b60001515601360029054906101000a900460ff16151514610e0e57600080fd5b8060109080519060200190610e24929190613caa565b5050565b6000600980549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90614aa9565b60405180910390fd5b6000600c5447610ec79190614f36565b90506000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b54600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610f599190614fbd565b610f639190614f8c565b610f6d9190615017565b90506000811415610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90614bc9565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffe9190614f36565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c5461104f9190614f36565b600c8190555061105f8382612c1e565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516110909291906148ae565b60405180910390a1505050565b6110ae6110a8610ac1565b82612d12565b6110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490614d69565b60405180910390fd5b6110f8838383612df0565b505050565b611105610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611123611b66565b73ffffffffffffffffffffffffffffffffffffffff1614611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090614ca9565b60405180910390fd5b600181511461118757600080fd5b806000815181106111c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160168190555050565b60006111dd836116a3565b821061121e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611215906149a9565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60165481565b6000600b54905090565b600c81565b6112a7838383604051806020016040528060008152506121ec565b505050565b601360009054906101000a900460ff1681565b60006112c9610e28565b821061130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190614d89565b60405180910390fd5b60098281548110611344577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61135e610ac1565b73ffffffffffffffffffffffffffffffffffffffff1661137c611b66565b73ffffffffffffffffffffffffffffffffffffffff16146113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990614ca9565b60405180910390fd5b80601190805190602001906113e8929190613caa565b5050565b60176020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900460ff16905084565b611431610ac1565b73ffffffffffffffffffffffffffffffffffffffff1661144f611b66565b73ffffffffffffffffffffffffffffffffffffffff16146114a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149c90614ca9565b60405180910390fd5b6000601360006101000a81548160ff021916908315150217905550565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290614c29565b60405180910390fd5b80915050919050565b60145481565b611582610ac1565b73ffffffffffffffffffffffffffffffffffffffff166115a0611b66565b73ffffffffffffffffffffffffffffffffffffffff16146115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90614ca9565b60405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff1615601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90614c09565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611763610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611781611b66565b73ffffffffffffffffffffffffffffffffffffffff16146117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90614ca9565b60405180910390fd5b6117e1600061304c565b565b60011515601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff16151514611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090614c69565b60405180910390fd5b6000601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154905060011515601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff16151514611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d906149e9565b60405180910390fd5b60008111611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090614d09565b60405180910390fd5b61270f816119a5610e28565b6119af9190614f36565b11156119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790614a09565b60405180910390fd5b80601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000828254611a429190615017565b9250508190555080601454611a579190615017565b60148190555060005b81811015611af45760156000815480929190611a7b906151ac565b9190505550611a8c33601554613110565b3373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885611acc610e28565b604051611ad99190614da9565b60405180910390a28080611aec906151ac565b915050611a60565b5050565b6000600f8281548110611b34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b97610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611bb5611b66565b73ffffffffffffffffffffffffffffffffffffffff1614611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0290614ca9565b60405180910390fd5b8060129080519060200190611c21929190613caa565b5050565b606060028054611c3490615149565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6090615149565b8015611cad5780601f10611c8257610100808354040283529160200191611cad565b820191906000526020600020905b815481529060010190602001808311611c9057829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601360019054906101000a900460ff1615611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790614d49565b60405180910390fd5b6001601360016101000a81548160ff021916908315150217905550601360009054906101000a900460ff16611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190614b69565b60405180910390fd5b60145461270f611dca9190615017565b81611dd3610e28565b611ddd9190614f36565b1115611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590614a89565b60405180910390fd5b8066f8b0a10e470000611e319190614fbd565b341015611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a90614b29565b60405180910390fd5b611e7c3361312e565b15611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb390614989565b60405180910390fd5b6016544210611f5757600c601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015482611f159190614f36565b1115611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d90614a49565b60405180910390fd5b5b60005b818110156120465760156000815480929190611f75906151ac565b9190505550601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002016000815480929190611fcd906151ac565b9190505550611fde33601554613110565b3373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688561201e610e28565b60405161202b9190614da9565b60405180910390a2808061203e906151ac565b915050611f5a565b506000601360016101000a81548160ff02191690831515021790555050565b61206d610ac1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d290614b09565b60405180910390fd5b80600660006120e8610ac1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612195610ac1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121da919061494c565b60405180910390a35050565b61270f81565b6121fd6121f7610ac1565b83612d12565b61223c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223390614d69565b60405180910390fd5b61224884848484613141565b50505050565b60011515601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff161515146122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90614c69565b60405180910390fd5b60005b6018805490508110156123745761236160188281548110612331577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e35565b808061236c906151ac565b9150506122e7565b50565b61237f610ac1565b73ffffffffffffffffffffffffffffffffffffffff1661239d611b66565b73ffffffffffffffffffffffffffffffffffffffff16146123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea90614ca9565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b606061241b82612af9565b61245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190614ce9565b60405180910390fd5b600061246461319d565b9050600081511161248457604051806020016040528060008152506124af565b8061248e8461322f565b60405160200161249f92919061485a565b6040516020818303038152906040525b915050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c54905090565b66f8b0a10e47000081565b60606012805461252490615149565b80601f016020809104026020016040519081016040528092919081815260200182805461255090615149565b801561259d5780601f106125725761010080835404028352916020019161259d565b820191906000526020600020905b81548152906001019060200180831161258057829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612643610ac1565b73ffffffffffffffffffffffffffffffffffffffff16612661611b66565b73ffffffffffffffffffffffffffffffffffffffff16146126b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ae90614ca9565b60405180910390fd5b6001601360026101000a81548160ff021916908315150217905550565b6126dc610ac1565b73ffffffffffffffffffffffffffffffffffffffff166126fa611b66565b73ffffffffffffffffffffffffffffffffffffffff1614612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790614ca9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b790614a29565b60405180910390fd5b6127c98161304c565b50565b6127d4610ac1565b73ffffffffffffffffffffffffffffffffffffffff166127f2611b66565b73ffffffffffffffffffffffffffffffffffffffff1614612848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283f90614ca9565b60405180910390fd5b60145461270f6128589190615017565b8151612862610e28565b61286c9190614f36565b11156128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a490614ac9565b60405180910390fd5b60005b815181101561298557601560008154809291906128cc906151ac565b919050555061291d82828151811061290d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601554613110565b3373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688561295d610e28565b60405161296a9190614da9565b60405180910390a2808061297d906151ac565b9150506128b0565b5050565b6010805461299690615149565b80601f01602080910402602001604051908101604052809291908181526020018280546129c290615149565b8015612a0f5780601f106129e457610100808354040283529160200191612a0f565b820191906000526020600020905b8154815290600101906020018083116129f257829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ae257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612af25750612af1826133dc565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612bd8836114c2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5890614b89565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612c879061487e565b60006040518083038185875af1925050503d8060008114612cc4576040519150601f19603f3d011682016040523d82523d6000602084013e612cc9565b606091505b5050905080612d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0490614b49565b60405180910390fd5b505050565b6000612d1d82612af9565b612d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5390614ba9565b60405180910390fd5b6000612d67836114c2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612dd657508373ffffffffffffffffffffffffffffffffffffffff16612dbe84610bd5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612de75750612de681856125a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e10826114c2565b73ffffffffffffffffffffffffffffffffffffffff1614612e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5d90614cc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ecd90614ae9565b60405180910390fd5b612ee1838383613446565b612eec600082612b65565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f3c9190615017565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f939190614f36565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61312a82826040518060200160405280600081525061355a565b5050565b600080823b905060008111915050919050565b61314c848484612df0565b613158848484846135b5565b613197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318e906149c9565b60405180910390fd5b50505050565b6060601180546131ac90615149565b80601f01602080910402602001604051908101604052809291908181526020018280546131d890615149565b80156132255780601f106131fa57610100808354040283529160200191613225565b820191906000526020600020905b81548152906001019060200180831161320857829003601f168201915b5050505050905090565b60606000821415613277576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133d7565b600082905060005b600082146132a9578080613292906151ac565b915050600a826132a29190614f8c565b915061327f565b60008167ffffffffffffffff8111156132eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561331d5781602001600182028036833780820191505090505b5090505b600085146133d0576001826133369190615017565b9150600a8561334591906151f5565b60306133519190614f36565b60f81b81838151811061338d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133c99190614f8c565b9450613321565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61345183838361374c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134945761348f81613751565b6134d3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134d2576134d1838261379a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135165761351181613907565b613555565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613554576135538282613a4a565b5b5b505050565b6135648383613ac9565b61357160008484846135b5565b6135b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a7906149c9565b60405180910390fd5b505050565b60006135d68473ffffffffffffffffffffffffffffffffffffffff16613c97565b1561373f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135ff610ac1565b8786866040518563ffffffff1660e01b815260040161362194939291906148d7565b602060405180830381600087803b15801561363b57600080fd5b505af192505050801561366c57506040513d601f19601f820116820180604052508101906136699190614242565b60015b6136ef573d806000811461369c576040519150601f19603f3d011682016040523d82523d6000602084013e6136a1565b606091505b506000815114156136e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136de906149c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613744565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016137a7846116a3565b6137b19190615017565b9050600060086000848152602001908152602001600020549050818114613896576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061391b9190615017565b90506000600a6000848152602001908152602001600020549050600060098381548110613971577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600983815481106139b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613a2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613a55836116a3565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b3090614c49565b60405180910390fd5b613b4281612af9565b15613b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b7990614a69565b60405180910390fd5b613b8e60008383613446565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bde9190614f36565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613cb690615149565b90600052602060002090601f016020900481019282613cd85760008555613d1f565b82601f10613cf157805160ff1916838001178555613d1f565b82800160010185558215613d1f579182015b82811115613d1e578251825591602001919060010190613d03565b5b509050613d2c9190613d30565b5090565b5b80821115613d49576000816000905550600101613d31565b5090565b6000613d60613d5b84614e2e565b614e09565b90508083825260208201905082856020860282011115613d7f57600080fd5b60005b85811015613daf5781613d958882613ea1565b845260208401935060208301925050600181019050613d82565b5050509392505050565b6000613dcc613dc784614e5a565b614e09565b90508083825260208201905082856020860282011115613deb57600080fd5b60005b85811015613e1b5781613e018882613fb2565b845260208401935060208301925050600181019050613dee565b5050509392505050565b6000613e38613e3384614e86565b614e09565b905082815260208101848484011115613e5057600080fd5b613e5b848285615107565b509392505050565b6000613e76613e7184614eb7565b614e09565b905082815260208101848484011115613e8e57600080fd5b613e99848285615107565b509392505050565b600081359050613eb081615b37565b92915050565b600081359050613ec581615b4e565b92915050565b600082601f830112613edc57600080fd5b8135613eec848260208601613d4d565b91505092915050565b600082601f830112613f0657600080fd5b8135613f16848260208601613db9565b91505092915050565b600081359050613f2e81615b65565b92915050565b600081359050613f4381615b7c565b92915050565b600081519050613f5881615b7c565b92915050565b600082601f830112613f6f57600080fd5b8135613f7f848260208601613e25565b91505092915050565b600082601f830112613f9957600080fd5b8135613fa9848260208601613e63565b91505092915050565b600081359050613fc181615b93565b92915050565b600060208284031215613fd957600080fd5b6000613fe784828501613ea1565b91505092915050565b60006020828403121561400257600080fd5b600061401084828501613eb6565b91505092915050565b6000806040838503121561402c57600080fd5b600061403a85828601613ea1565b925050602061404b85828601613ea1565b9150509250929050565b60008060006060848603121561406a57600080fd5b600061407886828701613ea1565b935050602061408986828701613ea1565b925050604061409a86828701613fb2565b9150509250925092565b600080600080608085870312156140ba57600080fd5b60006140c887828801613ea1565b94505060206140d987828801613ea1565b93505060406140ea87828801613fb2565b925050606085013567ffffffffffffffff81111561410757600080fd5b61411387828801613f5e565b91505092959194509250565b6000806040838503121561413257600080fd5b600061414085828601613ea1565b925050602061415185828601613f1f565b9150509250929050565b6000806040838503121561416e57600080fd5b600061417c85828601613ea1565b925050602061418d85828601613fb2565b9150509250929050565b6000602082840312156141a957600080fd5b600082013567ffffffffffffffff8111156141c357600080fd5b6141cf84828501613ecb565b91505092915050565b6000602082840312156141ea57600080fd5b600082013567ffffffffffffffff81111561420457600080fd5b61421084828501613ef5565b91505092915050565b60006020828403121561422b57600080fd5b600061423984828501613f34565b91505092915050565b60006020828403121561425457600080fd5b600061426284828501613f49565b91505092915050565b60006020828403121561427d57600080fd5b600082013567ffffffffffffffff81111561429757600080fd5b6142a384828501613f88565b91505092915050565b6000602082840312156142be57600080fd5b60006142cc84828501613fb2565b91505092915050565b6142de816150d1565b82525050565b6142ed8161504b565b82525050565b6142fc8161506f565b82525050565b600061430d82614ee8565b6143178185614efe565b9350614327818560208601615116565b614330816152e2565b840191505092915050565b600061434682614ef3565b6143508185614f1a565b9350614360818560208601615116565b614369816152e2565b840191505092915050565b600061437f82614ef3565b6143898185614f2b565b9350614399818560208601615116565b80840191505092915050565b60006143b2601483614f1a565b91506143bd826152f3565b602082019050919050565b60006143d5602b83614f1a565b91506143e08261531c565b604082019050919050565b60006143f8603283614f1a565b91506144038261536b565b604082019050919050565b600061441b601d83614f1a565b9150614426826153ba565b602082019050919050565b600061443e601f83614f1a565b9150614449826153e3565b602082019050919050565b6000614461602683614f1a565b915061446c8261540c565b604082019050919050565b6000614484602583614f1a565b915061448f8261545b565b604082019050919050565b60006144a7601c83614f1a565b91506144b2826154aa565b602082019050919050565b60006144ca602883614f1a565b91506144d5826154d3565b604082019050919050565b60006144ed602683614f1a565b91506144f882615522565b604082019050919050565b6000614510602283614f1a565b915061451b82615571565b604082019050919050565b6000614533602483614f1a565b915061453e826155c0565b604082019050919050565b6000614556601983614f1a565b91506145618261560f565b602082019050919050565b6000614579601f83614f1a565b915061458482615638565b602082019050919050565b600061459c603a83614f1a565b91506145a782615661565b604082019050919050565b60006145bf601b83614f1a565b91506145ca826156b0565b602082019050919050565b60006145e2601d83614f1a565b91506145ed826156d9565b602082019050919050565b6000614605602c83614f1a565b915061461082615702565b604082019050919050565b6000614628602b83614f1a565b915061463382615751565b604082019050919050565b600061464b603883614f1a565b9150614656826157a0565b604082019050919050565b600061466e602a83614f1a565b9150614679826157ef565b604082019050919050565b6000614691602983614f1a565b915061469c8261583e565b604082019050919050565b60006146b4602083614f1a565b91506146bf8261588d565b602082019050919050565b60006146d7601e83614f1a565b91506146e2826158b6565b602082019050919050565b60006146fa602c83614f1a565b9150614705826158df565b604082019050919050565b600061471d602083614f1a565b91506147288261592e565b602082019050919050565b6000614740602983614f1a565b915061474b82615957565b604082019050919050565b6000614763602f83614f1a565b915061476e826159a6565b604082019050919050565b6000614786601c83614f1a565b9150614791826159f5565b602082019050919050565b60006147a9602183614f1a565b91506147b482615a1e565b604082019050919050565b60006147cc600e83614f1a565b91506147d782615a6d565b602082019050919050565b60006147ef600083614f0f565b91506147fa82615a96565b600082019050919050565b6000614812603183614f1a565b915061481d82615a99565b604082019050919050565b6000614835602c83614f1a565b915061484082615ae8565b604082019050919050565b614854816150c7565b82525050565b60006148668285614374565b91506148728284614374565b91508190509392505050565b6000614889826147e2565b9150819050919050565b60006020820190506148a860008301846142e4565b92915050565b60006040820190506148c360008301856142d5565b6148d0602083018461484b565b9392505050565b60006080820190506148ec60008301876142e4565b6148f960208301866142e4565b614906604083018561484b565b81810360608301526149188184614302565b905095945050505050565b600060408201905061493860008301856142e4565b614945602083018461484b565b9392505050565b600060208201905061496160008301846142f3565b92915050565b60006020820190508181036000830152614981818461433b565b905092915050565b600060208201905081810360008301526149a2816143a5565b9050919050565b600060208201905081810360008301526149c2816143c8565b9050919050565b600060208201905081810360008301526149e2816143eb565b9050919050565b60006020820190508181036000830152614a028161440e565b9050919050565b60006020820190508181036000830152614a2281614431565b9050919050565b60006020820190508181036000830152614a4281614454565b9050919050565b60006020820190508181036000830152614a6281614477565b9050919050565b60006020820190508181036000830152614a828161449a565b9050919050565b60006020820190508181036000830152614aa2816144bd565b9050919050565b60006020820190508181036000830152614ac2816144e0565b9050919050565b60006020820190508181036000830152614ae281614503565b9050919050565b60006020820190508181036000830152614b0281614526565b9050919050565b60006020820190508181036000830152614b2281614549565b9050919050565b60006020820190508181036000830152614b428161456c565b9050919050565b60006020820190508181036000830152614b628161458f565b9050919050565b60006020820190508181036000830152614b82816145b2565b9050919050565b60006020820190508181036000830152614ba2816145d5565b9050919050565b60006020820190508181036000830152614bc2816145f8565b9050919050565b60006020820190508181036000830152614be28161461b565b9050919050565b60006020820190508181036000830152614c028161463e565b9050919050565b60006020820190508181036000830152614c2281614661565b9050919050565b60006020820190508181036000830152614c4281614684565b9050919050565b60006020820190508181036000830152614c62816146a7565b9050919050565b60006020820190508181036000830152614c82816146ca565b9050919050565b60006020820190508181036000830152614ca2816146ed565b9050919050565b60006020820190508181036000830152614cc281614710565b9050919050565b60006020820190508181036000830152614ce281614733565b9050919050565b60006020820190508181036000830152614d0281614756565b9050919050565b60006020820190508181036000830152614d2281614779565b9050919050565b60006020820190508181036000830152614d428161479c565b9050919050565b60006020820190508181036000830152614d62816147bf565b9050919050565b60006020820190508181036000830152614d8281614805565b9050919050565b60006020820190508181036000830152614da281614828565b9050919050565b6000602082019050614dbe600083018461484b565b92915050565b6000608082019050614dd9600083018761484b565b614de6602083018661484b565b614df3604083018561484b565b614e0060608301846142f3565b95945050505050565b6000614e13614e24565b9050614e1f828261517b565b919050565b6000604051905090565b600067ffffffffffffffff821115614e4957614e486152b3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614e7557614e746152b3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ea157614ea06152b3565b5b614eaa826152e2565b9050602081019050919050565b600067ffffffffffffffff821115614ed257614ed16152b3565b5b614edb826152e2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f41826150c7565b9150614f4c836150c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f8157614f80615226565b5b828201905092915050565b6000614f97826150c7565b9150614fa2836150c7565b925082614fb257614fb1615255565b5b828204905092915050565b6000614fc8826150c7565b9150614fd3836150c7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561500c5761500b615226565b5b828202905092915050565b6000615022826150c7565b915061502d836150c7565b9250828210156150405761503f615226565b5b828203905092915050565b6000615056826150a7565b9050919050565b6000615068826150a7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006150dc826150e3565b9050919050565b60006150ee826150f5565b9050919050565b6000615100826150a7565b9050919050565b82818337600083830152505050565b60005b83811015615134578082015181840152602081019050615119565b83811115615143576000848401525b50505050565b6000600282049050600182168061516157607f821691505b6020821081141561517557615174615284565b5b50919050565b615184826152e2565b810181811067ffffffffffffffff821117156151a3576151a26152b3565b5b80604052505050565b60006151b7826150c7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151ea576151e9615226565b5b600182019050919050565b6000615200826150c7565b915061520b836150c7565b92508261521b5761521a615255565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f436f6e7472616374732063616e2774206d696e74000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f536f7272792c204f6e6c7920616e2061646d696e2063616e206d696e74000000600082015250565b7f596f7520776f756c642065786365656420746865206d696e74206c696d697400600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536f72727920796f752063616e206f6e6c79206d696e7420313220706572207760008201527f616c6c6574000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662048454c4d000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f596f7520776f756c6420657863656564207468652061697264726f70206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f536f7272792c20596f75206e65656420746f20626520616e2061646d696e0000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e65656420746f206861766520726573657276656420737570706c7900000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2072652d656e7472616e6379000000000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b615b408161504b565b8114615b4b57600080fd5b50565b615b578161505d565b8114615b6257600080fd5b50565b615b6e8161506f565b8114615b7957600080fd5b50565b615b858161507b565b8114615b9057600080fd5b50565b615b9c816150c7565b8114615ba757600080fd5b5056fea2646970667358221220d9218bf280d758295a5f08ab910d8318fe7c7cfe9d9cf90fd8b3cb8718b4373564736f6c6343000802003300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000003400000000000000000000000000000000000000000000000000000000000000006000000000000000000000000a5a6935e561c5466951ca8d09c96fd6905f845190000000000000000000000004febe70768ed0113d6a1774d24a53c948fec66c9000000000000000000000000f9d08bc5d34f9333ce11e278d8d76cac232016750000000000000000000000003097617cba85a26adc214a1f87b680be4b275cd0000000000000000000000000becd87d454c698b163d4d54359216fa4678cef750000000000000000000000003d05c62857dd644225f125e863a25724c40b4a3100000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000cb20000000000000000000000000000000000000000000000000000000000000cb200000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000005780000000000000000000000000000000000000000000000000000000000000258000000000000000000000000000000000000000000000000000000000000000700000000000000000000000013dbccdcf1c603f0307cfc0abdd10e21be46b5de000000000000000000000000aefa4d708809f5f4e974dab0503961cae09b30b40000000000000000000000009bdfa9cd5ba914ffb2b7d622629719177f7eb8f2000000000000000000000000402905d2aa5d66515d51faf2dfa4e350634dd20a0000000000000000000000000268aa4d120de8b3a209e2336c32350cbaa0a125000000000000000000000000bbea2edb1eb8dba31d69eaeea328b8a59c65da5800000000000000000000000047e2e4aa911a75006076986d09741a48f12c25260000000000000000000000000000000000000000000000000000000000000005000000000000000000000000a5a6935e561c5466951ca8d09c96fd6905f845190000000000000000000000004febe70768ed0113d6a1774d24a53c948fec66c9000000000000000000000000f9d08bc5d34f9333ce11e278d8d76cac23201675000000000000000000000000becd87d454c698b163d4d54359216fa4678cef750000000000000000000000003d05c62857dd644225f125e863a25724c40b4a31

Deployed Bytecode

0x6080604052600436106102815760003560e01c8063715018a61161014f578063b8b9b549116100c1578063e8a3d4851161007a578063e8a3d485146109c5578063e985e9c5146109f0578063ea7523ee14610a2d578063f2fde38b14610a44578063fc15ad0614610a6d578063ff1b655614610a96576102c8565b8063b8b9b549146108c7578063c721f08d146108de578063c87b56dd146108f5578063ce7c2ac214610932578063e33b7de31461096f578063e618329b1461099a576102c8565b806395d89b411161011357806395d89b41146107c65780639852595c146107f1578063a0712d681461082e578063a22cb4651461084a578063a8f3201314610873578063b88d4fde1461089e576102c8565b8063715018a614610707578063895fc7881461071e5780638b83209b146107355780638da5cb5b14610772578063938e3d7b1461079d576102c8565b80633a98ef39116101f35780635e5c06e2116101ac5780635e5c06e2146105e2578063616d0dfd146106225780636352211e146106395780636aaa571d14610676578063704b6c02146106a157806370a08231146106ca576102c8565b80633a98ef39146104d25780633c8463a1146104fd57806342842e0e146105285780634f5e0b28146105515780634f6ccce71461057c57806355f804b3146105b9576102c8565b806318160ddd1161024557806318160ddd146103c457806319165587146103ef57806323b872dd1461041857806326d104ec146104415780632f745c591461046a57806333bc1c5c146104a7576102c8565b806301ffc9a7146102cd57806306fdde031461030a578063081812fc14610335578063095ea7b314610372578063109695231461039b576102c8565b366102c8577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102af610ac1565b346040516102be929190614923565b60405180910390a1005b600080fd5b3480156102d957600080fd5b506102f460048036038101906102ef9190614219565b610ac9565b604051610301919061494c565b60405180910390f35b34801561031657600080fd5b5061031f610b43565b60405161032c9190614967565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906142ac565b610bd5565b6040516103699190614893565b60405180910390f35b34801561037e57600080fd5b506103996004803603810190610394919061415b565b610c5a565b005b3480156103a757600080fd5b506103c260048036038101906103bd919061426b565b610d72565b005b3480156103d057600080fd5b506103d9610e28565b6040516103e69190614da9565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190613ff0565b610e35565b005b34801561042457600080fd5b5061043f600480360381019061043a9190614055565b61109d565b005b34801561044d57600080fd5b50610468600480360381019061046391906141d8565b6110fd565b005b34801561047657600080fd5b50610491600480360381019061048c919061415b565b6111d2565b60405161049e9190614da9565b60405180910390f35b3480156104b357600080fd5b506104bc611277565b6040516104c99190614da9565b60405180910390f35b3480156104de57600080fd5b506104e761127d565b6040516104f49190614da9565b60405180910390f35b34801561050957600080fd5b50610512611287565b60405161051f9190614da9565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190614055565b61128c565b005b34801561055d57600080fd5b506105666112ac565b604051610573919061494c565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e91906142ac565b6112bf565b6040516105b09190614da9565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db919061426b565b611356565b005b3480156105ee57600080fd5b5061060960048036038101906106049190613fc7565b6113ec565b6040516106199493929190614dc4565b60405180910390f35b34801561062e57600080fd5b50610637611429565b005b34801561064557600080fd5b50610660600480360381019061065b91906142ac565b6114c2565b60405161066d9190614893565b60405180910390f35b34801561068257600080fd5b5061068b611574565b6040516106989190614da9565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190613fc7565b61157a565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190613fc7565b6116a3565b6040516106fe9190614da9565b60405180910390f35b34801561071357600080fd5b5061071c61175b565b005b34801561072a57600080fd5b506107336117e3565b005b34801561074157600080fd5b5061075c600480360381019061075791906142ac565b611af8565b6040516107699190614893565b60405180910390f35b34801561077e57600080fd5b50610787611b66565b6040516107949190614893565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf919061426b565b611b8f565b005b3480156107d257600080fd5b506107db611c25565b6040516107e89190614967565b60405180910390f35b3480156107fd57600080fd5b5061081860048036038101906108139190613fc7565b611cb7565b6040516108259190614da9565b60405180910390f35b610848600480360381019061084391906142ac565b611d00565b005b34801561085657600080fd5b50610871600480360381019061086c919061411f565b612065565b005b34801561087f57600080fd5b506108886121e6565b6040516108959190614da9565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c091906140a4565b6121ec565b005b3480156108d357600080fd5b506108dc61224e565b005b3480156108ea57600080fd5b506108f3612377565b005b34801561090157600080fd5b5061091c600480360381019061091791906142ac565b612410565b6040516109299190614967565b60405180910390f35b34801561093e57600080fd5b5061095960048036038101906109549190613fc7565b6124b7565b6040516109669190614da9565b60405180910390f35b34801561097b57600080fd5b50610984612500565b6040516109919190614da9565b60405180910390f35b3480156109a657600080fd5b506109af61250a565b6040516109bc9190614da9565b60405180910390f35b3480156109d157600080fd5b506109da612515565b6040516109e79190614967565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a129190614019565b6125a7565b604051610a24919061494c565b60405180910390f35b348015610a3957600080fd5b50610a4261263b565b005b348015610a5057600080fd5b50610a6b6004803603810190610a669190613fc7565b6126d4565b005b348015610a7957600080fd5b50610a946004803603810190610a8f9190614197565b6127cc565b005b348015610aa257600080fd5b50610aab612989565b604051610ab89190614967565b60405180910390f35b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3c5750610b3b82612a17565b5b9050919050565b606060018054610b5290615149565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7e90615149565b8015610bcb5780601f10610ba057610100808354040283529160200191610bcb565b820191906000526020600020905b815481529060010190602001808311610bae57829003601f168201915b5050505050905090565b6000610be082612af9565b610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1690614c89565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c65826114c2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90614d29565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf5610ac1565b73ffffffffffffffffffffffffffffffffffffffff161480610d245750610d2381610d1e610ac1565b6125a7565b5b610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90614be9565b60405180910390fd5b610d6d8383612b65565b505050565b610d7a610ac1565b73ffffffffffffffffffffffffffffffffffffffff16610d98611b66565b73ffffffffffffffffffffffffffffffffffffffff1614610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590614ca9565b60405180910390fd5b60001515601360029054906101000a900460ff16151514610e0e57600080fd5b8060109080519060200190610e24929190613caa565b5050565b6000600980549050905090565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90614aa9565b60405180910390fd5b6000600c5447610ec79190614f36565b90506000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b54600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610f599190614fbd565b610f639190614f8c565b610f6d9190615017565b90506000811415610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90614bc9565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ffe9190614f36565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c5461104f9190614f36565b600c8190555061105f8382612c1e565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05683826040516110909291906148ae565b60405180910390a1505050565b6110ae6110a8610ac1565b82612d12565b6110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490614d69565b60405180910390fd5b6110f8838383612df0565b505050565b611105610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611123611b66565b73ffffffffffffffffffffffffffffffffffffffff1614611179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117090614ca9565b60405180910390fd5b600181511461118757600080fd5b806000815181106111c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160168190555050565b60006111dd836116a3565b821061121e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611215906149a9565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60165481565b6000600b54905090565b600c81565b6112a7838383604051806020016040528060008152506121ec565b505050565b601360009054906101000a900460ff1681565b60006112c9610e28565b821061130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190614d89565b60405180910390fd5b60098281548110611344577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61135e610ac1565b73ffffffffffffffffffffffffffffffffffffffff1661137c611b66565b73ffffffffffffffffffffffffffffffffffffffff16146113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990614ca9565b60405180910390fd5b80601190805190602001906113e8929190613caa565b5050565b60176020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900460ff16905084565b611431610ac1565b73ffffffffffffffffffffffffffffffffffffffff1661144f611b66565b73ffffffffffffffffffffffffffffffffffffffff16146114a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149c90614ca9565b60405180910390fd5b6000601360006101000a81548160ff021916908315150217905550565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290614c29565b60405180910390fd5b80915050919050565b60145481565b611582610ac1565b73ffffffffffffffffffffffffffffffffffffffff166115a0611b66565b73ffffffffffffffffffffffffffffffffffffffff16146115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90614ca9565b60405180910390fd5b601760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff1615601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b90614c09565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611763610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611781611b66565b73ffffffffffffffffffffffffffffffffffffffff16146117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90614ca9565b60405180910390fd5b6117e1600061304c565b565b60011515601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff16151514611879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187090614c69565b60405180910390fd5b6000601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154905060011515601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff16151514611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d906149e9565b60405180910390fd5b60008111611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090614d09565b60405180910390fd5b61270f816119a5610e28565b6119af9190614f36565b11156119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790614a09565b60405180910390fd5b80601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000016000828254611a429190615017565b9250508190555080601454611a579190615017565b60148190555060005b81811015611af45760156000815480929190611a7b906151ac565b9190505550611a8c33601554613110565b3373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885611acc610e28565b604051611ad99190614da9565b60405180910390a28080611aec906151ac565b915050611a60565b5050565b6000600f8281548110611b34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b97610ac1565b73ffffffffffffffffffffffffffffffffffffffff16611bb5611b66565b73ffffffffffffffffffffffffffffffffffffffff1614611c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0290614ca9565b60405180910390fd5b8060129080519060200190611c21929190613caa565b5050565b606060028054611c3490615149565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6090615149565b8015611cad5780601f10611c8257610100808354040283529160200191611cad565b820191906000526020600020905b815481529060010190602001808311611c9057829003601f168201915b5050505050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601360019054906101000a900460ff1615611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790614d49565b60405180910390fd5b6001601360016101000a81548160ff021916908315150217905550601360009054906101000a900460ff16611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190614b69565b60405180910390fd5b60145461270f611dca9190615017565b81611dd3610e28565b611ddd9190614f36565b1115611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590614a89565b60405180910390fd5b8066f8b0a10e470000611e319190614fbd565b341015611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a90614b29565b60405180910390fd5b611e7c3361312e565b15611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb390614989565b60405180910390fd5b6016544210611f5757600c601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015482611f159190614f36565b1115611f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4d90614a49565b60405180910390fd5b5b60005b818110156120465760156000815480929190611f75906151ac565b9190505550601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002016000815480929190611fcd906151ac565b9190505550611fde33601554613110565b3373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688561201e610e28565b60405161202b9190614da9565b60405180910390a2808061203e906151ac565b915050611f5a565b506000601360016101000a81548160ff02191690831515021790555050565b61206d610ac1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d290614b09565b60405180910390fd5b80600660006120e8610ac1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612195610ac1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121da919061494c565b60405180910390a35050565b61270f81565b6121fd6121f7610ac1565b83612d12565b61223c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223390614d69565b60405180910390fd5b61224884848484613141565b50505050565b60011515601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff161515146122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90614c69565b60405180910390fd5b60005b6018805490508110156123745761236160188281548110612331577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e35565b808061236c906151ac565b9150506122e7565b50565b61237f610ac1565b73ffffffffffffffffffffffffffffffffffffffff1661239d611b66565b73ffffffffffffffffffffffffffffffffffffffff16146123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea90614ca9565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b606061241b82612af9565b61245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190614ce9565b60405180910390fd5b600061246461319d565b9050600081511161248457604051806020016040528060008152506124af565b8061248e8461322f565b60405160200161249f92919061485a565b6040516020818303038152906040525b915050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c54905090565b66f8b0a10e47000081565b60606012805461252490615149565b80601f016020809104026020016040519081016040528092919081815260200182805461255090615149565b801561259d5780601f106125725761010080835404028352916020019161259d565b820191906000526020600020905b81548152906001019060200180831161258057829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612643610ac1565b73ffffffffffffffffffffffffffffffffffffffff16612661611b66565b73ffffffffffffffffffffffffffffffffffffffff16146126b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ae90614ca9565b60405180910390fd5b6001601360026101000a81548160ff021916908315150217905550565b6126dc610ac1565b73ffffffffffffffffffffffffffffffffffffffff166126fa611b66565b73ffffffffffffffffffffffffffffffffffffffff1614612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790614ca9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b790614a29565b60405180910390fd5b6127c98161304c565b50565b6127d4610ac1565b73ffffffffffffffffffffffffffffffffffffffff166127f2611b66565b73ffffffffffffffffffffffffffffffffffffffff1614612848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283f90614ca9565b60405180910390fd5b60145461270f6128589190615017565b8151612862610e28565b61286c9190614f36565b11156128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a490614ac9565b60405180910390fd5b60005b815181101561298557601560008154809291906128cc906151ac565b919050555061291d82828151811061290d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601554613110565b3373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688561295d610e28565b60405161296a9190614da9565b60405180910390a2808061297d906151ac565b9150506128b0565b5050565b6010805461299690615149565b80601f01602080910402602001604051908101604052809291908181526020018280546129c290615149565b8015612a0f5780601f106129e457610100808354040283529160200191612a0f565b820191906000526020600020905b8154815290600101906020018083116129f257829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ae257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612af25750612af1826133dc565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612bd8836114c2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5890614b89565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612c879061487e565b60006040518083038185875af1925050503d8060008114612cc4576040519150601f19603f3d011682016040523d82523d6000602084013e612cc9565b606091505b5050905080612d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0490614b49565b60405180910390fd5b505050565b6000612d1d82612af9565b612d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5390614ba9565b60405180910390fd5b6000612d67836114c2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612dd657508373ffffffffffffffffffffffffffffffffffffffff16612dbe84610bd5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612de75750612de681856125a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e10826114c2565b73ffffffffffffffffffffffffffffffffffffffff1614612e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5d90614cc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ecd90614ae9565b60405180910390fd5b612ee1838383613446565b612eec600082612b65565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f3c9190615017565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f939190614f36565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61312a82826040518060200160405280600081525061355a565b5050565b600080823b905060008111915050919050565b61314c848484612df0565b613158848484846135b5565b613197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318e906149c9565b60405180910390fd5b50505050565b6060601180546131ac90615149565b80601f01602080910402602001604051908101604052809291908181526020018280546131d890615149565b80156132255780601f106131fa57610100808354040283529160200191613225565b820191906000526020600020905b81548152906001019060200180831161320857829003601f168201915b5050505050905090565b60606000821415613277576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133d7565b600082905060005b600082146132a9578080613292906151ac565b915050600a826132a29190614f8c565b915061327f565b60008167ffffffffffffffff8111156132eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561331d5781602001600182028036833780820191505090505b5090505b600085146133d0576001826133369190615017565b9150600a8561334591906151f5565b60306133519190614f36565b60f81b81838151811061338d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133c99190614f8c565b9450613321565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61345183838361374c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134945761348f81613751565b6134d3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146134d2576134d1838261379a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135165761351181613907565b613555565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613554576135538282613a4a565b5b5b505050565b6135648383613ac9565b61357160008484846135b5565b6135b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a7906149c9565b60405180910390fd5b505050565b60006135d68473ffffffffffffffffffffffffffffffffffffffff16613c97565b1561373f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135ff610ac1565b8786866040518563ffffffff1660e01b815260040161362194939291906148d7565b602060405180830381600087803b15801561363b57600080fd5b505af192505050801561366c57506040513d601f19601f820116820180604052508101906136699190614242565b60015b6136ef573d806000811461369c576040519150601f19603f3d011682016040523d82523d6000602084013e6136a1565b606091505b506000815114156136e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136de906149c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613744565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016137a7846116a3565b6137b19190615017565b9050600060086000848152602001908152602001600020549050818114613896576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061391b9190615017565b90506000600a6000848152602001908152602001600020549050600060098381548110613971577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600983815481106139b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613a2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613a55836116a3565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b3090614c49565b60405180910390fd5b613b4281612af9565b15613b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b7990614a69565b60405180910390fd5b613b8e60008383613446565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bde9190614f36565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613cb690615149565b90600052602060002090601f016020900481019282613cd85760008555613d1f565b82601f10613cf157805160ff1916838001178555613d1f565b82800160010185558215613d1f579182015b82811115613d1e578251825591602001919060010190613d03565b5b509050613d2c9190613d30565b5090565b5b80821115613d49576000816000905550600101613d31565b5090565b6000613d60613d5b84614e2e565b614e09565b90508083825260208201905082856020860282011115613d7f57600080fd5b60005b85811015613daf5781613d958882613ea1565b845260208401935060208301925050600181019050613d82565b5050509392505050565b6000613dcc613dc784614e5a565b614e09565b90508083825260208201905082856020860282011115613deb57600080fd5b60005b85811015613e1b5781613e018882613fb2565b845260208401935060208301925050600181019050613dee565b5050509392505050565b6000613e38613e3384614e86565b614e09565b905082815260208101848484011115613e5057600080fd5b613e5b848285615107565b509392505050565b6000613e76613e7184614eb7565b614e09565b905082815260208101848484011115613e8e57600080fd5b613e99848285615107565b509392505050565b600081359050613eb081615b37565b92915050565b600081359050613ec581615b4e565b92915050565b600082601f830112613edc57600080fd5b8135613eec848260208601613d4d565b91505092915050565b600082601f830112613f0657600080fd5b8135613f16848260208601613db9565b91505092915050565b600081359050613f2e81615b65565b92915050565b600081359050613f4381615b7c565b92915050565b600081519050613f5881615b7c565b92915050565b600082601f830112613f6f57600080fd5b8135613f7f848260208601613e25565b91505092915050565b600082601f830112613f9957600080fd5b8135613fa9848260208601613e63565b91505092915050565b600081359050613fc181615b93565b92915050565b600060208284031215613fd957600080fd5b6000613fe784828501613ea1565b91505092915050565b60006020828403121561400257600080fd5b600061401084828501613eb6565b91505092915050565b6000806040838503121561402c57600080fd5b600061403a85828601613ea1565b925050602061404b85828601613ea1565b9150509250929050565b60008060006060848603121561406a57600080fd5b600061407886828701613ea1565b935050602061408986828701613ea1565b925050604061409a86828701613fb2565b9150509250925092565b600080600080608085870312156140ba57600080fd5b60006140c887828801613ea1565b94505060206140d987828801613ea1565b93505060406140ea87828801613fb2565b925050606085013567ffffffffffffffff81111561410757600080fd5b61411387828801613f5e565b91505092959194509250565b6000806040838503121561413257600080fd5b600061414085828601613ea1565b925050602061415185828601613f1f565b9150509250929050565b6000806040838503121561416e57600080fd5b600061417c85828601613ea1565b925050602061418d85828601613fb2565b9150509250929050565b6000602082840312156141a957600080fd5b600082013567ffffffffffffffff8111156141c357600080fd5b6141cf84828501613ecb565b91505092915050565b6000602082840312156141ea57600080fd5b600082013567ffffffffffffffff81111561420457600080fd5b61421084828501613ef5565b91505092915050565b60006020828403121561422b57600080fd5b600061423984828501613f34565b91505092915050565b60006020828403121561425457600080fd5b600061426284828501613f49565b91505092915050565b60006020828403121561427d57600080fd5b600082013567ffffffffffffffff81111561429757600080fd5b6142a384828501613f88565b91505092915050565b6000602082840312156142be57600080fd5b60006142cc84828501613fb2565b91505092915050565b6142de816150d1565b82525050565b6142ed8161504b565b82525050565b6142fc8161506f565b82525050565b600061430d82614ee8565b6143178185614efe565b9350614327818560208601615116565b614330816152e2565b840191505092915050565b600061434682614ef3565b6143508185614f1a565b9350614360818560208601615116565b614369816152e2565b840191505092915050565b600061437f82614ef3565b6143898185614f2b565b9350614399818560208601615116565b80840191505092915050565b60006143b2601483614f1a565b91506143bd826152f3565b602082019050919050565b60006143d5602b83614f1a565b91506143e08261531c565b604082019050919050565b60006143f8603283614f1a565b91506144038261536b565b604082019050919050565b600061441b601d83614f1a565b9150614426826153ba565b602082019050919050565b600061443e601f83614f1a565b9150614449826153e3565b602082019050919050565b6000614461602683614f1a565b915061446c8261540c565b604082019050919050565b6000614484602583614f1a565b915061448f8261545b565b604082019050919050565b60006144a7601c83614f1a565b91506144b2826154aa565b602082019050919050565b60006144ca602883614f1a565b91506144d5826154d3565b604082019050919050565b60006144ed602683614f1a565b91506144f882615522565b604082019050919050565b6000614510602283614f1a565b915061451b82615571565b604082019050919050565b6000614533602483614f1a565b915061453e826155c0565b604082019050919050565b6000614556601983614f1a565b91506145618261560f565b602082019050919050565b6000614579601f83614f1a565b915061458482615638565b602082019050919050565b600061459c603a83614f1a565b91506145a782615661565b604082019050919050565b60006145bf601b83614f1a565b91506145ca826156b0565b602082019050919050565b60006145e2601d83614f1a565b91506145ed826156d9565b602082019050919050565b6000614605602c83614f1a565b915061461082615702565b604082019050919050565b6000614628602b83614f1a565b915061463382615751565b604082019050919050565b600061464b603883614f1a565b9150614656826157a0565b604082019050919050565b600061466e602a83614f1a565b9150614679826157ef565b604082019050919050565b6000614691602983614f1a565b915061469c8261583e565b604082019050919050565b60006146b4602083614f1a565b91506146bf8261588d565b602082019050919050565b60006146d7601e83614f1a565b91506146e2826158b6565b602082019050919050565b60006146fa602c83614f1a565b9150614705826158df565b604082019050919050565b600061471d602083614f1a565b91506147288261592e565b602082019050919050565b6000614740602983614f1a565b915061474b82615957565b604082019050919050565b6000614763602f83614f1a565b915061476e826159a6565b604082019050919050565b6000614786601c83614f1a565b9150614791826159f5565b602082019050919050565b60006147a9602183614f1a565b91506147b482615a1e565b604082019050919050565b60006147cc600e83614f1a565b91506147d782615a6d565b602082019050919050565b60006147ef600083614f0f565b91506147fa82615a96565b600082019050919050565b6000614812603183614f1a565b915061481d82615a99565b604082019050919050565b6000614835602c83614f1a565b915061484082615ae8565b604082019050919050565b614854816150c7565b82525050565b60006148668285614374565b91506148728284614374565b91508190509392505050565b6000614889826147e2565b9150819050919050565b60006020820190506148a860008301846142e4565b92915050565b60006040820190506148c360008301856142d5565b6148d0602083018461484b565b9392505050565b60006080820190506148ec60008301876142e4565b6148f960208301866142e4565b614906604083018561484b565b81810360608301526149188184614302565b905095945050505050565b600060408201905061493860008301856142e4565b614945602083018461484b565b9392505050565b600060208201905061496160008301846142f3565b92915050565b60006020820190508181036000830152614981818461433b565b905092915050565b600060208201905081810360008301526149a2816143a5565b9050919050565b600060208201905081810360008301526149c2816143c8565b9050919050565b600060208201905081810360008301526149e2816143eb565b9050919050565b60006020820190508181036000830152614a028161440e565b9050919050565b60006020820190508181036000830152614a2281614431565b9050919050565b60006020820190508181036000830152614a4281614454565b9050919050565b60006020820190508181036000830152614a6281614477565b9050919050565b60006020820190508181036000830152614a828161449a565b9050919050565b60006020820190508181036000830152614aa2816144bd565b9050919050565b60006020820190508181036000830152614ac2816144e0565b9050919050565b60006020820190508181036000830152614ae281614503565b9050919050565b60006020820190508181036000830152614b0281614526565b9050919050565b60006020820190508181036000830152614b2281614549565b9050919050565b60006020820190508181036000830152614b428161456c565b9050919050565b60006020820190508181036000830152614b628161458f565b9050919050565b60006020820190508181036000830152614b82816145b2565b9050919050565b60006020820190508181036000830152614ba2816145d5565b9050919050565b60006020820190508181036000830152614bc2816145f8565b9050919050565b60006020820190508181036000830152614be28161461b565b9050919050565b60006020820190508181036000830152614c028161463e565b9050919050565b60006020820190508181036000830152614c2281614661565b9050919050565b60006020820190508181036000830152614c4281614684565b9050919050565b60006020820190508181036000830152614c62816146a7565b9050919050565b60006020820190508181036000830152614c82816146ca565b9050919050565b60006020820190508181036000830152614ca2816146ed565b9050919050565b60006020820190508181036000830152614cc281614710565b9050919050565b60006020820190508181036000830152614ce281614733565b9050919050565b60006020820190508181036000830152614d0281614756565b9050919050565b60006020820190508181036000830152614d2281614779565b9050919050565b60006020820190508181036000830152614d428161479c565b9050919050565b60006020820190508181036000830152614d62816147bf565b9050919050565b60006020820190508181036000830152614d8281614805565b9050919050565b60006020820190508181036000830152614da281614828565b9050919050565b6000602082019050614dbe600083018461484b565b92915050565b6000608082019050614dd9600083018761484b565b614de6602083018661484b565b614df3604083018561484b565b614e0060608301846142f3565b95945050505050565b6000614e13614e24565b9050614e1f828261517b565b919050565b6000604051905090565b600067ffffffffffffffff821115614e4957614e486152b3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614e7557614e746152b3565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ea157614ea06152b3565b5b614eaa826152e2565b9050602081019050919050565b600067ffffffffffffffff821115614ed257614ed16152b3565b5b614edb826152e2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f41826150c7565b9150614f4c836150c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f8157614f80615226565b5b828201905092915050565b6000614f97826150c7565b9150614fa2836150c7565b925082614fb257614fb1615255565b5b828204905092915050565b6000614fc8826150c7565b9150614fd3836150c7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561500c5761500b615226565b5b828202905092915050565b6000615022826150c7565b915061502d836150c7565b9250828210156150405761503f615226565b5b828203905092915050565b6000615056826150a7565b9050919050565b6000615068826150a7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006150dc826150e3565b9050919050565b60006150ee826150f5565b9050919050565b6000615100826150a7565b9050919050565b82818337600083830152505050565b60005b83811015615134578082015181840152602081019050615119565b83811115615143576000848401525b50505050565b6000600282049050600182168061516157607f821691505b6020821081141561517557615174615284565b5b50919050565b615184826152e2565b810181811067ffffffffffffffff821117156151a3576151a26152b3565b5b80604052505050565b60006151b7826150c7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151ea576151e9615226565b5b600182019050919050565b6000615200826150c7565b915061520b836150c7565b92508261521b5761521a615255565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f436f6e7472616374732063616e2774206d696e74000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f536f7272792c204f6e6c7920616e2061646d696e2063616e206d696e74000000600082015250565b7f596f7520776f756c642065786365656420746865206d696e74206c696d697400600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536f72727920796f752063616e206f6e6c79206d696e7420313220706572207760008201527f616c6c6574000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662048454c4d000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f596f7520776f756c6420657863656564207468652061697264726f70206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f536f7272792c20596f75206e65656420746f20626520616e2061646d696e0000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e65656420746f206861766520726573657276656420737570706c7900000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2072652d656e7472616e6379000000000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b615b408161504b565b8114615b4b57600080fd5b50565b615b578161505d565b8114615b6257600080fd5b50565b615b6e8161506f565b8114615b7957600080fd5b50565b615b858161507b565b8114615b9057600080fd5b50565b615b9c816150c7565b8114615ba757600080fd5b5056fea2646970667358221220d9218bf280d758295a5f08ab910d8318fe7c7cfe9d9cf90fd8b3cb8718b4373564736f6c63430008020033

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

00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000003400000000000000000000000000000000000000000000000000000000000000006000000000000000000000000a5a6935e561c5466951ca8d09c96fd6905f845190000000000000000000000004febe70768ed0113d6a1774d24a53c948fec66c9000000000000000000000000f9d08bc5d34f9333ce11e278d8d76cac232016750000000000000000000000003097617cba85a26adc214a1f87b680be4b275cd0000000000000000000000000becd87d454c698b163d4d54359216fa4678cef750000000000000000000000003d05c62857dd644225f125e863a25724c40b4a3100000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000cb20000000000000000000000000000000000000000000000000000000000000cb200000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000005780000000000000000000000000000000000000000000000000000000000000258000000000000000000000000000000000000000000000000000000000000000700000000000000000000000013dbccdcf1c603f0307cfc0abdd10e21be46b5de000000000000000000000000aefa4d708809f5f4e974dab0503961cae09b30b40000000000000000000000009bdfa9cd5ba914ffb2b7d622629719177f7eb8f2000000000000000000000000402905d2aa5d66515d51faf2dfa4e350634dd20a0000000000000000000000000268aa4d120de8b3a209e2336c32350cbaa0a125000000000000000000000000bbea2edb1eb8dba31d69eaeea328b8a59c65da5800000000000000000000000047e2e4aa911a75006076986d09741a48f12c25260000000000000000000000000000000000000000000000000000000000000005000000000000000000000000a5a6935e561c5466951ca8d09c96fd6905f845190000000000000000000000004febe70768ed0113d6a1774d24a53c948fec66c9000000000000000000000000f9d08bc5d34f9333ce11e278d8d76cac23201675000000000000000000000000becd87d454c698b163d4d54359216fa4678cef750000000000000000000000003d05c62857dd644225f125e863a25724c40b4a31

-----Decoded View---------------
Arg [0] : distro (address[]): 0xa5A6935e561C5466951ca8d09c96Fd6905F84519,0x4fEbe70768eD0113D6a1774d24a53c948FEC66c9,0xF9D08bC5D34f9333cE11E278D8d76cAc23201675,0x3097617CbA85A26AdC214A1F87B680bE4b275cD0,0xbeCD87D454C698B163D4d54359216Fa4678ceF75,0x3D05c62857DD644225f125e863a25724C40B4a31
Arg [1] : distro_shares (uint256[]): 3250,3250,500,1000,1400,600
Arg [2] : teamclaim (address[]): 0x13dBCCdCf1c603f0307CFc0aBdD10E21bE46b5de,0xaeFA4D708809F5f4e974Dab0503961cAe09B30b4,0x9BDFA9Cd5Ba914Ffb2B7D622629719177F7EB8f2,0x402905d2AA5D66515D51FAF2dFA4e350634dd20A,0x0268Aa4D120DE8b3a209E2336c32350cbAa0A125,0xbbEa2Edb1eB8dbA31d69eAeEa328B8A59c65DA58,0x47E2e4AA911A75006076986D09741a48F12c2526
Arg [3] : admins (address[]): 0xa5A6935e561C5466951ca8d09c96Fd6905F84519,0x4fEbe70768eD0113D6a1774d24a53c948FEC66c9,0xF9D08bC5D34f9333cE11E278D8d76cAc23201675,0xbeCD87D454C698B163D4d54359216Fa4678ceF75,0x3D05c62857DD644225f125e863a25724C40B4a31

-----Encoded View---------------
32 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000340
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 000000000000000000000000a5a6935e561c5466951ca8d09c96fd6905f84519
Arg [6] : 0000000000000000000000004febe70768ed0113d6a1774d24a53c948fec66c9
Arg [7] : 000000000000000000000000f9d08bc5d34f9333ce11e278d8d76cac23201675
Arg [8] : 0000000000000000000000003097617cba85a26adc214a1f87b680be4b275cd0
Arg [9] : 000000000000000000000000becd87d454c698b163d4d54359216fa4678cef75
Arg [10] : 0000000000000000000000003d05c62857dd644225f125e863a25724c40b4a31
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000cb2
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000cb2
Arg [14] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [15] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000578
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000258
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [19] : 00000000000000000000000013dbccdcf1c603f0307cfc0abdd10e21be46b5de
Arg [20] : 000000000000000000000000aefa4d708809f5f4e974dab0503961cae09b30b4
Arg [21] : 0000000000000000000000009bdfa9cd5ba914ffb2b7d622629719177f7eb8f2
Arg [22] : 000000000000000000000000402905d2aa5d66515d51faf2dfa4e350634dd20a
Arg [23] : 0000000000000000000000000268aa4d120de8b3a209e2336c32350cbaa0a125
Arg [24] : 000000000000000000000000bbea2edb1eb8dba31d69eaeea328b8a59c65da58
Arg [25] : 00000000000000000000000047e2e4aa911a75006076986d09741a48f12c2526
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [27] : 000000000000000000000000a5a6935e561c5466951ca8d09c96fd6905f84519
Arg [28] : 0000000000000000000000004febe70768ed0113d6a1774d24a53c948fec66c9
Arg [29] : 000000000000000000000000f9d08bc5d34f9333ce11e278d8d76cac23201675
Arg [30] : 000000000000000000000000becd87d454c698b163d4d54359216fa4678cef75
Arg [31] : 0000000000000000000000003d05c62857dd644225f125e863a25724c40b4a31


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.