ETH Price: $3,301.82 (-3.22%)
Gas: 19 Gwei

Token

GNSS by MGXS (GNSS)
 

Overview

Max Total Supply

301 GNSS

Holders

519

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
espress0.eth
0xaf2ab6d0e8f69656e7c8c967351de32f0d60fe76
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Each GNSS is truly unique, generated over 6 months of curation, with a ready to mint pool of 13333 unique artworks, 133% of the supply.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GNSS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : gnss.sol
// SPDX-License-Identifier: MIT
// Powered by RTFKT Studios

pragma solidity ^0.8.2;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";

abstract contract gnssInterface {
    function mintTransfer(address to, string calldata hash) public virtual returns(uint256);
}

abstract contract ERC721 {
    function ownerOf(uint256 tokenId) public view virtual returns (address);
}

contract GNSS is ERC1155, Ownable, ERC1155Burnable {
    uint256 tokenId = 0;
    uint256 amountMinted = 0;
    uint256 limitAmount = 10000;
    uint256 private tokenPrice = 330000000000000000; // 0.33 ETH

    address gnssContractAddress;

    mapping (address => mapping (uint256 => bool)) usedToken;
    mapping (address => uint256) authorizedContract;

    event priceChanged(uint256 newPrice);
                                
    bool salesStarted = false;
    bool migrationStarted = false;
    
    constructor() ERC1155("ipfs://QmczVPwCRwYuLB7gMf937SWGK6HBF61Wns8rud4AGstZja") {}
    
    // Set authorized contract address for minting the ERC-721 token
    function setGnssContract(address contractAddress) public onlyOwner {
        gnssContractAddress = contractAddress;
    }

    // Authorize specific smart contract to be used for minting an ERC-1155 token
    function toggleSales() public onlyOwner {
        salesStarted = !salesStarted;
    }

    // Authorize specific smart contract to be used for minting an ERC-1155 token
    function toggleMigration() public onlyOwner {
        migrationStarted = !migrationStarted;
    }
    
    // Authorize specific smart contract to be used for minting an ERC-1155 token
    function toggleContractAuthorization(address contractAddress, uint256 typeOfContract) public onlyOwner {
        authorizedContract[contractAddress] = typeOfContract;
    }

    // Check if a specific address is an authorized mintpass
    function isContractAuthorized(address contractAddress) view public returns(uint256) {
        return authorizedContract[contractAddress];
    }

    // Mint function
    function mint(uint256 amountToMint) public payable returns(uint256) {
        require(tx.origin == msg.sender, "The caller is another contract");
        require(salesStarted == true, "Sales have not started");
        require(amountToMint <= 10, "You can't mint more than 10 per transaction!");
        uint256 amount = amountToMint;

        // Add verification on ether required to pay
        require(msg.value >= tokenPrice * amount, "Not enough money");
        
        uint256 prevTokenId = tokenId;
        tokenId++;
        require(amount + amountMinted <= limitAmount, "Limit reached");
        amountMinted = amountMinted + amount;
        _mint(msg.sender, tokenId, amount, "");
        return prevTokenId;
    }
    
    // Allowing direct drop for gievaway
    function airdropGiveaway(address[] calldata to, uint256[] calldata amountToMint) public onlyOwner {
        for(uint256 i = 0; i < to.length; i++) {
            tokenId++;
            require(amountToMint[i] + amountMinted <= limitAmount, "Limit reached");
            amountMinted = amountMinted + amountToMint[i];
            _mint(to[i], tokenId, amountToMint[i], "");
        }
    }
    
    // Allow to use the ERC-1155 to get the GNSS ERC-721 final token
    function migrateToken(uint256 id, string calldata hash) public returns(uint256) {
        require(migrationStarted == true, "Migration has not started");
        require(balanceOf(msg.sender, id) > 0, "Doesn't own the token"); // Check if the user own one of the ERC-1155
        burn(msg.sender, id, 1); // Burn one the ERC-1155 token
        gnssInterface gnssContract = gnssInterface(gnssContractAddress);
        uint256 mintedId = gnssContract.mintTransfer(msg.sender, hash); // Mint the ERC-721 token
        return mintedId; // Return the minted ID
    }
    
    // Check if the mintpass has been used to mint an ERC-1155
    function checkIfRedeemed(address _contractAddress, uint256 _tokenId) view public returns(bool) {
        return usedToken[_contractAddress][_tokenId];
    }
    
    // Get the price of the token (as changing during presale and public sale)
    function getPrice() view public returns(uint256) { 
        return tokenPrice;
    }
    
    // Get amount of 1155 minted
    function getAmountMinted() view public returns(uint256) {
        return amountMinted;
    }
    
    // Used for manual activation on dutch auction
    function setPrice(uint256 _newPrice) public onlyOwner {
        tokenPrice = _newPrice;
        emit priceChanged(tokenPrice);
    }
    
    // Basic withdrawal of funds function in order to transfert ETH out of the smart contract
    function withdrawFunds() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
	}
}

File 2 of 11 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 11 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 5 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

File 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 11 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 9 of 11 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 11 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 11 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"priceChanged","type":"event"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"amountToMint","type":"uint256[]"}],"name":"airdropGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"checkIfRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"isContractAuthorized","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"hash","type":"string"}],"name":"migrateToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setGnssContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"uint256","name":"typeOfContract","type":"uint256"}],"name":"toggleContractAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMigration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006004556000600555612710600655670494654067e100006007556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055503480156200006357600080fd5b5060405180606001604052806035815260200162004afb603591396200008f81620000b660201b60201c565b50620000b0620000a4620000d260201b60201c565b620000da60201b60201c565b620002b5565b8060029080519060200190620000ce929190620001a0565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ae9062000250565b90600052602060002090601f016020900481019282620001d257600085556200021e565b82601f10620001ed57805160ff19168380011785556200021e565b828001600101855582156200021e579182015b828111156200021d57825182559160200191906001019062000200565b5b5090506200022d919062000231565b5090565b5b808211156200024c57600081600090555060010162000232565b5090565b600060028204905060018216806200026957607f821691505b6020821081141562000280576200027f62000286565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61483680620002c56000396000f3fe6080604052600436106101805760003560e01c80638da5cb5b116100d1578063cdc077ab1161008a578063e985e9c511610064578063e985e9c51461055c578063f242432a14610599578063f2fde38b146105c2578063f5298aca146105eb57610180565b8063cdc077ab146104f1578063dbd30ae01461051a578063e777df201461053157610180565b80638da5cb5b146103dc57806391b7f5ed1461040757806398d5fdca14610430578063a0712d681461045b578063a22cb4651461048b578063c850376c146104b457610180565b806324600fc31161013e578063465737d411610118578063465737d4146103225780634e1273f41461035f5780636b20c4541461039c578063715018a6146103c557610180565b806324600fc3146102b95780632eb2c2d6146102d057806346555465146102f957610180565b8062fdd58e1461018557806301ffc9a7146101c25780630e89341c146101ff578063103aeda71461023c57806312af44bb1461027957806321fec36c146102a2575b600080fd5b34801561019157600080fd5b506101ac60048036038101906101a79190613167565b610614565b6040516101b99190613cbf565b60405180910390f35b3480156101ce57600080fd5b506101e960048036038101906101e491906132f3565b6106dd565b6040516101f691906139c2565b60405180910390f35b34801561020b57600080fd5b506102266004803603810190610221919061334d565b6107bf565b60405161023391906139dd565b60405180910390f35b34801561024857600080fd5b50610263600480360381019061025e9190612ec9565b610853565b6040516102709190613cbf565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190613167565b61089c565b005b3480156102ae57600080fd5b506102b7610960565b005b3480156102c557600080fd5b506102ce610a08565b005b3480156102dc57600080fd5b506102f760048036038101906102f29190612f36565b610acd565b005b34801561030557600080fd5b50610320600480360381019061031b91906131fa565b610b6e565b005b34801561032e57600080fd5b5061034960048036038101906103449190613167565b610d1f565b60405161035691906139c2565b60405180910390f35b34801561036b57600080fd5b506103866004803603810190610381919061327b565b610d87565b6040516103939190613969565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be919061309c565b610ea0565b005b3480156103d157600080fd5b506103da610f3d565b005b3480156103e857600080fd5b506103f1610fc5565b6040516103fe919061385a565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061334d565b610fef565b005b34801561043c57600080fd5b506104456110ae565b6040516104529190613cbf565b60405180910390f35b6104756004803603810190610470919061334d565b6110b8565b6040516104829190613cbf565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190613127565b6112c3565b005b3480156104c057600080fd5b506104db60048036038101906104d691906133a7565b6112d9565b6040516104e89190613cbf565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190612ec9565b61144f565b005b34801561052657600080fd5b5061052f61150f565b005b34801561053d57600080fd5b506105466115b7565b6040516105539190613cbf565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190612ef6565b6115c1565b60405161059091906139c2565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190613005565b611655565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612ec9565b6116f6565b005b3480156105f757600080fd5b50610612600480360381019061060d91906131a7565b6117ee565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c90613a7f565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b857506107b78261188b565b5b9050919050565b6060600280546107ce90613f88565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa90613f88565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b50505050509050919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108a46118f5565b73ffffffffffffffffffffffffffffffffffffffff166108c2610fc5565b73ffffffffffffffffffffffffffffffffffffffff1614610918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090f90613bff565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6109686118f5565b73ffffffffffffffffffffffffffffffffffffffff16610986610fc5565b73ffffffffffffffffffffffffffffffffffffffff16146109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d390613bff565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b610a106118f5565b73ffffffffffffffffffffffffffffffffffffffff16610a2e610fc5565b73ffffffffffffffffffffffffffffffffffffffff1614610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b90613bff565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610aca573d6000803e3d6000fd5b50565b610ad56118f5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b1b5750610b1a85610b156118f5565b6115c1565b5b610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190613b9f565b60405180910390fd5b610b6785858585856118fd565b5050505050565b610b766118f5565b73ffffffffffffffffffffffffffffffffffffffff16610b94610fc5565b73ffffffffffffffffffffffffffffffffffffffff1614610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190613bff565b60405180910390fd5b60005b84849050811015610d185760046000815480929190610c0b90613feb565b9190505550600654600554848484818110610c2957610c28614092565b5b90506020020135610c3a9190613e22565b1115610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613b1f565b60405180910390fd5b828282818110610c8e57610c8d614092565b5b90506020020135600554610ca29190613e22565b600581905550610d05858583818110610cbe57610cbd614092565b5b9050602002016020810190610cd39190612ec9565b600454858585818110610ce957610ce8614092565b5b9050602002013560405180602001604052806000815250611c11565b8080610d1090613feb565b915050610bed565b5050505050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff16905092915050565b60608151835114610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490613c5f565b60405180910390fd5b6000835167ffffffffffffffff811115610dea57610de96140c1565b5b604051908082528060200260200182016040528015610e185781602001602082028036833780820191505090505b50905060005b8451811015610e9557610e65858281518110610e3d57610e3c614092565b5b6020026020010151858381518110610e5857610e57614092565b5b6020026020010151610614565b828281518110610e7857610e77614092565b5b60200260200101818152505080610e8e90613feb565b9050610e1e565b508091505092915050565b610ea86118f5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610eee5750610eed83610ee86118f5565b6115c1565b5b610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490613aff565b60405180910390fd5b610f38838383611da7565b505050565b610f456118f5565b73ffffffffffffffffffffffffffffffffffffffff16610f63610fc5565b73ffffffffffffffffffffffffffffffffffffffff1614610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090613bff565b60405180910390fd5b610fc36000612058565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ff76118f5565b73ffffffffffffffffffffffffffffffffffffffff16611015610fc5565b73ffffffffffffffffffffffffffffffffffffffff161461106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290613bff565b60405180910390fd5b806007819055507ff5fdf7223faf019b846dd0f35f25876f2b97118d4f6e9d6787ea6d85a55c21436007546040516110a39190613cbf565b60405180910390a150565b6000600754905090565b60003373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90613b5f565b60405180910390fd5b60011515600b60009054906101000a900460ff1615151461117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613b3f565b60405180910390fd5b600a8211156111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990613c1f565b60405180910390fd5b6000829050806007546111d59190613e78565b341015611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e90613a3f565b60405180910390fd5b600060045490506004600081548092919061123190613feb565b9190505550600654600554836112479190613e22565b1115611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90613b1f565b60405180910390fd5b816005546112969190613e22565b6005819055506112b9336004548460405180602001604052806000815250611c11565b8092505050919050565b6112d56112ce6118f5565b838361211e565b5050565b600060011515600b60019054906101000a900460ff16151514611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890613a5f565b60405180910390fd5b600061133d3386610614565b1161137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613abf565b60405180910390fd5b611389338560016117ee565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1663f31ac2293387876040518463ffffffff1660e01b81526004016113ef93929190613937565b602060405180830381600087803b15801561140957600080fd5b505af115801561141d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611441919061337a565b905080925050509392505050565b6114576118f5565b73ffffffffffffffffffffffffffffffffffffffff16611475610fc5565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613bff565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6115176118f5565b73ffffffffffffffffffffffffffffffffffffffff16611535610fc5565b73ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290613bff565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600554905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61165d6118f5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806116a357506116a28561169d6118f5565b6115c1565b5b6116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613aff565b60405180910390fd5b6116ef858585858561228b565b5050505050565b6116fe6118f5565b73ffffffffffffffffffffffffffffffffffffffff1661171c610fc5565b73ffffffffffffffffffffffffffffffffffffffff1614611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613bff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613a9f565b60405180910390fd5b6117eb81612058565b50565b6117f66118f5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061183c575061183b836118366118f5565b6115c1565b5b61187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290613aff565b60405180910390fd5b61188683838361250d565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890613c7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613b7f565b60405180910390fd5b60006119bb6118f5565b90506119cb81878787878761272a565b60005b8451811015611b7c5760008582815181106119ec576119eb614092565b5b602002602001015190506000858381518110611a0b57611a0a614092565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613bdf565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b619190613e22565b9250508190555050505080611b7590613feb565b90506119ce565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611bf392919061398b565b60405180910390a4611c09818787878787612732565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7890613c9f565b60405180910390fd5b6000611c8b6118f5565b9050611cac81600087611c9d88612919565b611ca688612919565b8761272a565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0b9190613e22565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d89929190613cda565b60405180910390a4611da081600087878787612993565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e90613bbf565b60405180910390fd5b8051825114611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290613c7f565b60405180910390fd5b6000611e656118f5565b9050611e858185600086866040518060200160405280600081525061272a565b60005b8351811015611fd2576000848281518110611ea657611ea5614092565b5b602002602001015190506000848381518110611ec557611ec4614092565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90613adf565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611fca90613feb565b915050611e88565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161204a92919061398b565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490613c3f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161227e91906139c2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f290613b7f565b60405180910390fd5b60006123056118f5565b905061232581878761231688612919565b61231f88612919565b8761272a565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156123bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b390613bdf565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124719190613e22565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516124ee929190613cda565b60405180910390a4612504828888888888612993565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561257d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257490613bbf565b60405180910390fd5b60006125876118f5565b90506125b78185600061259987612919565b6125a287612919565b6040518060200160405280600081525061272a565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561264e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264590613adf565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161271b929190613cda565b60405180910390a45050505050565b505050505050565b6127518473ffffffffffffffffffffffffffffffffffffffff16612b7a565b15612911578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612797959493929190613875565b602060405180830381600087803b1580156127b157600080fd5b505af19250505080156127e257506040513d601f19601f820116820180604052508101906127df9190613320565b60015b612888576127ee6140f0565b806308c379a0141561284b575061280361470e565b8061280e575061284d565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284291906139dd565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287f906139ff565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690613a1f565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612938576129376140c1565b5b6040519080825280602002602001820160405280156129665781602001602082028036833780820191505090505b509050828160008151811061297e5761297d614092565b5b60200260200101818152505080915050919050565b6129b28473ffffffffffffffffffffffffffffffffffffffff16612b7a565b15612b72578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016129f89594939291906138dd565b602060405180830381600087803b158015612a1257600080fd5b505af1925050508015612a4357506040513d601f19601f82011682018060405250810190612a409190613320565b60015b612ae957612a4f6140f0565b806308c379a01415612aac5750612a6461470e565b80612a6f5750612aae565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa391906139dd565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae0906139ff565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6790613a1f565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000612bb0612bab84613d28565b613d03565b90508083825260208201905082856020860282011115612bd357612bd261411c565b5b60005b85811015612c035781612be98882612cbf565b845260208401935060208301925050600181019050612bd6565b5050509392505050565b6000612c20612c1b84613d54565b613d03565b90508083825260208201905082856020860282011115612c4357612c4261411c565b5b60005b85811015612c735781612c598882612e9f565b845260208401935060208301925050600181019050612c46565b5050509392505050565b6000612c90612c8b84613d80565b613d03565b905082815260208101848484011115612cac57612cab614121565b5b612cb7848285613f46565b509392505050565b600081359050612cce816147a4565b92915050565b60008083601f840112612cea57612ce9614117565b5b8235905067ffffffffffffffff811115612d0757612d06614112565b5b602083019150836020820283011115612d2357612d2261411c565b5b9250929050565b600082601f830112612d3f57612d3e614117565b5b8135612d4f848260208601612b9d565b91505092915050565b60008083601f840112612d6e57612d6d614117565b5b8235905067ffffffffffffffff811115612d8b57612d8a614112565b5b602083019150836020820283011115612da757612da661411c565b5b9250929050565b600082601f830112612dc357612dc2614117565b5b8135612dd3848260208601612c0d565b91505092915050565b600081359050612deb816147bb565b92915050565b600081359050612e00816147d2565b92915050565b600081519050612e15816147d2565b92915050565b600082601f830112612e3057612e2f614117565b5b8135612e40848260208601612c7d565b91505092915050565b60008083601f840112612e5f57612e5e614117565b5b8235905067ffffffffffffffff811115612e7c57612e7b614112565b5b602083019150836001820283011115612e9857612e9761411c565b5b9250929050565b600081359050612eae816147e9565b92915050565b600081519050612ec3816147e9565b92915050565b600060208284031215612edf57612ede61412b565b5b6000612eed84828501612cbf565b91505092915050565b60008060408385031215612f0d57612f0c61412b565b5b6000612f1b85828601612cbf565b9250506020612f2c85828601612cbf565b9150509250929050565b600080600080600060a08688031215612f5257612f5161412b565b5b6000612f6088828901612cbf565b9550506020612f7188828901612cbf565b945050604086013567ffffffffffffffff811115612f9257612f91614126565b5b612f9e88828901612dae565b935050606086013567ffffffffffffffff811115612fbf57612fbe614126565b5b612fcb88828901612dae565b925050608086013567ffffffffffffffff811115612fec57612feb614126565b5b612ff888828901612e1b565b9150509295509295909350565b600080600080600060a086880312156130215761302061412b565b5b600061302f88828901612cbf565b955050602061304088828901612cbf565b945050604061305188828901612e9f565b935050606061306288828901612e9f565b925050608086013567ffffffffffffffff81111561308357613082614126565b5b61308f88828901612e1b565b9150509295509295909350565b6000806000606084860312156130b5576130b461412b565b5b60006130c386828701612cbf565b935050602084013567ffffffffffffffff8111156130e4576130e3614126565b5b6130f086828701612dae565b925050604084013567ffffffffffffffff81111561311157613110614126565b5b61311d86828701612dae565b9150509250925092565b6000806040838503121561313e5761313d61412b565b5b600061314c85828601612cbf565b925050602061315d85828601612ddc565b9150509250929050565b6000806040838503121561317e5761317d61412b565b5b600061318c85828601612cbf565b925050602061319d85828601612e9f565b9150509250929050565b6000806000606084860312156131c0576131bf61412b565b5b60006131ce86828701612cbf565b93505060206131df86828701612e9f565b92505060406131f086828701612e9f565b9150509250925092565b600080600080604085870312156132145761321361412b565b5b600085013567ffffffffffffffff81111561323257613231614126565b5b61323e87828801612cd4565b9450945050602085013567ffffffffffffffff81111561326157613260614126565b5b61326d87828801612d58565b925092505092959194509250565b600080604083850312156132925761329161412b565b5b600083013567ffffffffffffffff8111156132b0576132af614126565b5b6132bc85828601612d2a565b925050602083013567ffffffffffffffff8111156132dd576132dc614126565b5b6132e985828601612dae565b9150509250929050565b6000602082840312156133095761330861412b565b5b600061331784828501612df1565b91505092915050565b6000602082840312156133365761333561412b565b5b600061334484828501612e06565b91505092915050565b6000602082840312156133635761336261412b565b5b600061337184828501612e9f565b91505092915050565b6000602082840312156133905761338f61412b565b5b600061339e84828501612eb4565b91505092915050565b6000806000604084860312156133c0576133bf61412b565b5b60006133ce86828701612e9f565b935050602084013567ffffffffffffffff8111156133ef576133ee614126565b5b6133fb86828701612e49565b92509250509250925092565b6000613413838361383c565b60208301905092915050565b61342881613ed2565b82525050565b600061343982613dc1565b6134438185613def565b935061344e83613db1565b8060005b8381101561347f5781516134668882613407565b975061347183613de2565b925050600181019050613452565b5085935050505092915050565b61349581613ee4565b82525050565b60006134a682613dcc565b6134b08185613e00565b93506134c0818560208601613f55565b6134c981614130565b840191505092915050565b60006134e08385613e11565b93506134ed838584613f46565b6134f683614130565b840190509392505050565b600061350c82613dd7565b6135168185613e11565b9350613526818560208601613f55565b61352f81614130565b840191505092915050565b6000613547603483613e11565b91506135528261414e565b604082019050919050565b600061356a602883613e11565b91506135758261419d565b604082019050919050565b600061358d601083613e11565b9150613598826141ec565b602082019050919050565b60006135b0601983613e11565b91506135bb82614215565b602082019050919050565b60006135d3602b83613e11565b91506135de8261423e565b604082019050919050565b60006135f6602683613e11565b91506136018261428d565b604082019050919050565b6000613619601583613e11565b9150613624826142dc565b602082019050919050565b600061363c602483613e11565b915061364782614305565b604082019050919050565b600061365f602983613e11565b915061366a82614354565b604082019050919050565b6000613682600d83613e11565b915061368d826143a3565b602082019050919050565b60006136a5601683613e11565b91506136b0826143cc565b602082019050919050565b60006136c8601e83613e11565b91506136d3826143f5565b602082019050919050565b60006136eb602583613e11565b91506136f68261441e565b604082019050919050565b600061370e603283613e11565b91506137198261446d565b604082019050919050565b6000613731602383613e11565b915061373c826144bc565b604082019050919050565b6000613754602a83613e11565b915061375f8261450b565b604082019050919050565b6000613777602083613e11565b91506137828261455a565b602082019050919050565b600061379a602c83613e11565b91506137a582614583565b604082019050919050565b60006137bd602983613e11565b91506137c8826145d2565b604082019050919050565b60006137e0602983613e11565b91506137eb82614621565b604082019050919050565b6000613803602883613e11565b915061380e82614670565b604082019050919050565b6000613826602183613e11565b9150613831826146bf565b604082019050919050565b61384581613f3c565b82525050565b61385481613f3c565b82525050565b600060208201905061386f600083018461341f565b92915050565b600060a08201905061388a600083018861341f565b613897602083018761341f565b81810360408301526138a9818661342e565b905081810360608301526138bd818561342e565b905081810360808301526138d1818461349b565b90509695505050505050565b600060a0820190506138f2600083018861341f565b6138ff602083018761341f565b61390c604083018661384b565b613919606083018561384b565b818103608083015261392b818461349b565b90509695505050505050565b600060408201905061394c600083018661341f565b818103602083015261395f8184866134d4565b9050949350505050565b60006020820190508181036000830152613983818461342e565b905092915050565b600060408201905081810360008301526139a5818561342e565b905081810360208301526139b9818461342e565b90509392505050565b60006020820190506139d7600083018461348c565b92915050565b600060208201905081810360008301526139f78184613501565b905092915050565b60006020820190508181036000830152613a188161353a565b9050919050565b60006020820190508181036000830152613a388161355d565b9050919050565b60006020820190508181036000830152613a5881613580565b9050919050565b60006020820190508181036000830152613a78816135a3565b9050919050565b60006020820190508181036000830152613a98816135c6565b9050919050565b60006020820190508181036000830152613ab8816135e9565b9050919050565b60006020820190508181036000830152613ad88161360c565b9050919050565b60006020820190508181036000830152613af88161362f565b9050919050565b60006020820190508181036000830152613b1881613652565b9050919050565b60006020820190508181036000830152613b3881613675565b9050919050565b60006020820190508181036000830152613b5881613698565b9050919050565b60006020820190508181036000830152613b78816136bb565b9050919050565b60006020820190508181036000830152613b98816136de565b9050919050565b60006020820190508181036000830152613bb881613701565b9050919050565b60006020820190508181036000830152613bd881613724565b9050919050565b60006020820190508181036000830152613bf881613747565b9050919050565b60006020820190508181036000830152613c188161376a565b9050919050565b60006020820190508181036000830152613c388161378d565b9050919050565b60006020820190508181036000830152613c58816137b0565b9050919050565b60006020820190508181036000830152613c78816137d3565b9050919050565b60006020820190508181036000830152613c98816137f6565b9050919050565b60006020820190508181036000830152613cb881613819565b9050919050565b6000602082019050613cd4600083018461384b565b92915050565b6000604082019050613cef600083018561384b565b613cfc602083018461384b565b9392505050565b6000613d0d613d1e565b9050613d198282613fba565b919050565b6000604051905090565b600067ffffffffffffffff821115613d4357613d426140c1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d6f57613d6e6140c1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d9b57613d9a6140c1565b5b613da482614130565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613e2d82613f3c565b9150613e3883613f3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e6d57613e6c614034565b5b828201905092915050565b6000613e8382613f3c565b9150613e8e83613f3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ec757613ec6614034565b5b828202905092915050565b6000613edd82613f1c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f73578082015181840152602081019050613f58565b83811115613f82576000848401525b50505050565b60006002820490506001821680613fa057607f821691505b60208210811415613fb457613fb3614063565b5b50919050565b613fc382614130565b810181811067ffffffffffffffff82111715613fe257613fe16140c1565b5b80604052505050565b6000613ff682613f3c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561402957614028614034565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561410f5760046000803e61410c600051614141565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d6f6e657900000000000000000000000000000000600082015250565b7f4d6967726174696f6e20686173206e6f74207374617274656400000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f446f65736e2774206f776e2074686520746f6b656e0000000000000000000000600082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4c696d6974207265616368656400000000000000000000000000000000000000600082015250565b7f53616c65732068617665206e6f74207374617274656400000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e2774206d696e74206d6f7265207468616e203130207065722060008201527f7472616e73616374696f6e210000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101561471e576147a1565b614726613d1e565b60043d036004823e80513d602482011167ffffffffffffffff8211171561474e5750506147a1565b808201805167ffffffffffffffff81111561476c57505050506147a1565b80602083010160043d0385018111156147895750505050506147a1565b61479882602001850186613fba565b82955050505050505b90565b6147ad81613ed2565b81146147b857600080fd5b50565b6147c481613ee4565b81146147cf57600080fd5b50565b6147db81613ef0565b81146147e657600080fd5b50565b6147f281613f3c565b81146147fd57600080fd5b5056fea26469706673582212200a0e0ccabcb8f17787fe1279f577838e1127bbc1744d5b631976664d9d0dbb9664736f6c63430008070033697066733a2f2f516d637a56507743527759754c4237674d663933375357474b364842463631576e733872756434414773745a6a61

Deployed Bytecode

0x6080604052600436106101805760003560e01c80638da5cb5b116100d1578063cdc077ab1161008a578063e985e9c511610064578063e985e9c51461055c578063f242432a14610599578063f2fde38b146105c2578063f5298aca146105eb57610180565b8063cdc077ab146104f1578063dbd30ae01461051a578063e777df201461053157610180565b80638da5cb5b146103dc57806391b7f5ed1461040757806398d5fdca14610430578063a0712d681461045b578063a22cb4651461048b578063c850376c146104b457610180565b806324600fc31161013e578063465737d411610118578063465737d4146103225780634e1273f41461035f5780636b20c4541461039c578063715018a6146103c557610180565b806324600fc3146102b95780632eb2c2d6146102d057806346555465146102f957610180565b8062fdd58e1461018557806301ffc9a7146101c25780630e89341c146101ff578063103aeda71461023c57806312af44bb1461027957806321fec36c146102a2575b600080fd5b34801561019157600080fd5b506101ac60048036038101906101a79190613167565b610614565b6040516101b99190613cbf565b60405180910390f35b3480156101ce57600080fd5b506101e960048036038101906101e491906132f3565b6106dd565b6040516101f691906139c2565b60405180910390f35b34801561020b57600080fd5b506102266004803603810190610221919061334d565b6107bf565b60405161023391906139dd565b60405180910390f35b34801561024857600080fd5b50610263600480360381019061025e9190612ec9565b610853565b6040516102709190613cbf565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190613167565b61089c565b005b3480156102ae57600080fd5b506102b7610960565b005b3480156102c557600080fd5b506102ce610a08565b005b3480156102dc57600080fd5b506102f760048036038101906102f29190612f36565b610acd565b005b34801561030557600080fd5b50610320600480360381019061031b91906131fa565b610b6e565b005b34801561032e57600080fd5b5061034960048036038101906103449190613167565b610d1f565b60405161035691906139c2565b60405180910390f35b34801561036b57600080fd5b506103866004803603810190610381919061327b565b610d87565b6040516103939190613969565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be919061309c565b610ea0565b005b3480156103d157600080fd5b506103da610f3d565b005b3480156103e857600080fd5b506103f1610fc5565b6040516103fe919061385a565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061334d565b610fef565b005b34801561043c57600080fd5b506104456110ae565b6040516104529190613cbf565b60405180910390f35b6104756004803603810190610470919061334d565b6110b8565b6040516104829190613cbf565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190613127565b6112c3565b005b3480156104c057600080fd5b506104db60048036038101906104d691906133a7565b6112d9565b6040516104e89190613cbf565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190612ec9565b61144f565b005b34801561052657600080fd5b5061052f61150f565b005b34801561053d57600080fd5b506105466115b7565b6040516105539190613cbf565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190612ef6565b6115c1565b60405161059091906139c2565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190613005565b611655565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612ec9565b6116f6565b005b3480156105f757600080fd5b50610612600480360381019061060d91906131a7565b6117ee565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c90613a7f565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b857506107b78261188b565b5b9050919050565b6060600280546107ce90613f88565b80601f01602080910402602001604051908101604052809291908181526020018280546107fa90613f88565b80156108475780601f1061081c57610100808354040283529160200191610847565b820191906000526020600020905b81548152906001019060200180831161082a57829003601f168201915b50505050509050919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108a46118f5565b73ffffffffffffffffffffffffffffffffffffffff166108c2610fc5565b73ffffffffffffffffffffffffffffffffffffffff1614610918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090f90613bff565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6109686118f5565b73ffffffffffffffffffffffffffffffffffffffff16610986610fc5565b73ffffffffffffffffffffffffffffffffffffffff16146109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d390613bff565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b610a106118f5565b73ffffffffffffffffffffffffffffffffffffffff16610a2e610fc5565b73ffffffffffffffffffffffffffffffffffffffff1614610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b90613bff565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610aca573d6000803e3d6000fd5b50565b610ad56118f5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b1b5750610b1a85610b156118f5565b6115c1565b5b610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190613b9f565b60405180910390fd5b610b6785858585856118fd565b5050505050565b610b766118f5565b73ffffffffffffffffffffffffffffffffffffffff16610b94610fc5565b73ffffffffffffffffffffffffffffffffffffffff1614610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190613bff565b60405180910390fd5b60005b84849050811015610d185760046000815480929190610c0b90613feb565b9190505550600654600554848484818110610c2957610c28614092565b5b90506020020135610c3a9190613e22565b1115610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613b1f565b60405180910390fd5b828282818110610c8e57610c8d614092565b5b90506020020135600554610ca29190613e22565b600581905550610d05858583818110610cbe57610cbd614092565b5b9050602002016020810190610cd39190612ec9565b600454858585818110610ce957610ce8614092565b5b9050602002013560405180602001604052806000815250611c11565b8080610d1090613feb565b915050610bed565b5050505050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff16905092915050565b60608151835114610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490613c5f565b60405180910390fd5b6000835167ffffffffffffffff811115610dea57610de96140c1565b5b604051908082528060200260200182016040528015610e185781602001602082028036833780820191505090505b50905060005b8451811015610e9557610e65858281518110610e3d57610e3c614092565b5b6020026020010151858381518110610e5857610e57614092565b5b6020026020010151610614565b828281518110610e7857610e77614092565b5b60200260200101818152505080610e8e90613feb565b9050610e1e565b508091505092915050565b610ea86118f5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610eee5750610eed83610ee86118f5565b6115c1565b5b610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490613aff565b60405180910390fd5b610f38838383611da7565b505050565b610f456118f5565b73ffffffffffffffffffffffffffffffffffffffff16610f63610fc5565b73ffffffffffffffffffffffffffffffffffffffff1614610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090613bff565b60405180910390fd5b610fc36000612058565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ff76118f5565b73ffffffffffffffffffffffffffffffffffffffff16611015610fc5565b73ffffffffffffffffffffffffffffffffffffffff161461106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290613bff565b60405180910390fd5b806007819055507ff5fdf7223faf019b846dd0f35f25876f2b97118d4f6e9d6787ea6d85a55c21436007546040516110a39190613cbf565b60405180910390a150565b6000600754905090565b60003373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f90613b5f565b60405180910390fd5b60011515600b60009054906101000a900460ff1615151461117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613b3f565b60405180910390fd5b600a8211156111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990613c1f565b60405180910390fd5b6000829050806007546111d59190613e78565b341015611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e90613a3f565b60405180910390fd5b600060045490506004600081548092919061123190613feb565b9190505550600654600554836112479190613e22565b1115611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90613b1f565b60405180910390fd5b816005546112969190613e22565b6005819055506112b9336004548460405180602001604052806000815250611c11565b8092505050919050565b6112d56112ce6118f5565b838361211e565b5050565b600060011515600b60019054906101000a900460ff16151514611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890613a5f565b60405180910390fd5b600061133d3386610614565b1161137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613abf565b60405180910390fd5b611389338560016117ee565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1663f31ac2293387876040518463ffffffff1660e01b81526004016113ef93929190613937565b602060405180830381600087803b15801561140957600080fd5b505af115801561141d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611441919061337a565b905080925050509392505050565b6114576118f5565b73ffffffffffffffffffffffffffffffffffffffff16611475610fc5565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613bff565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6115176118f5565b73ffffffffffffffffffffffffffffffffffffffff16611535610fc5565b73ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290613bff565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600554905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61165d6118f5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806116a357506116a28561169d6118f5565b6115c1565b5b6116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613aff565b60405180910390fd5b6116ef858585858561228b565b5050505050565b6116fe6118f5565b73ffffffffffffffffffffffffffffffffffffffff1661171c610fc5565b73ffffffffffffffffffffffffffffffffffffffff1614611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613bff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613a9f565b60405180910390fd5b6117eb81612058565b50565b6117f66118f5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061183c575061183b836118366118f5565b6115c1565b5b61187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290613aff565b60405180910390fd5b61188683838361250d565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890613c7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613b7f565b60405180910390fd5b60006119bb6118f5565b90506119cb81878787878761272a565b60005b8451811015611b7c5760008582815181106119ec576119eb614092565b5b602002602001015190506000858381518110611a0b57611a0a614092565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa390613bdf565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b619190613e22565b9250508190555050505080611b7590613feb565b90506119ce565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611bf392919061398b565b60405180910390a4611c09818787878787612732565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7890613c9f565b60405180910390fd5b6000611c8b6118f5565b9050611cac81600087611c9d88612919565b611ca688612919565b8761272a565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0b9190613e22565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611d89929190613cda565b60405180910390a4611da081600087878787612993565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e90613bbf565b60405180910390fd5b8051825114611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290613c7f565b60405180910390fd5b6000611e656118f5565b9050611e858185600086866040518060200160405280600081525061272a565b60005b8351811015611fd2576000848281518110611ea657611ea5614092565b5b602002602001015190506000848381518110611ec557611ec4614092565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90613adf565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611fca90613feb565b915050611e88565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161204a92919061398b565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490613c3f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161227e91906139c2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f290613b7f565b60405180910390fd5b60006123056118f5565b905061232581878761231688612919565b61231f88612919565b8761272a565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156123bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b390613bdf565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124719190613e22565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516124ee929190613cda565b60405180910390a4612504828888888888612993565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561257d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257490613bbf565b60405180910390fd5b60006125876118f5565b90506125b78185600061259987612919565b6125a287612919565b6040518060200160405280600081525061272a565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561264e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264590613adf565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161271b929190613cda565b60405180910390a45050505050565b505050505050565b6127518473ffffffffffffffffffffffffffffffffffffffff16612b7a565b15612911578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612797959493929190613875565b602060405180830381600087803b1580156127b157600080fd5b505af19250505080156127e257506040513d601f19601f820116820180604052508101906127df9190613320565b60015b612888576127ee6140f0565b806308c379a0141561284b575061280361470e565b8061280e575061284d565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284291906139dd565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287f906139ff565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690613a1f565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612938576129376140c1565b5b6040519080825280602002602001820160405280156129665781602001602082028036833780820191505090505b509050828160008151811061297e5761297d614092565b5b60200260200101818152505080915050919050565b6129b28473ffffffffffffffffffffffffffffffffffffffff16612b7a565b15612b72578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016129f89594939291906138dd565b602060405180830381600087803b158015612a1257600080fd5b505af1925050508015612a4357506040513d601f19601f82011682018060405250810190612a409190613320565b60015b612ae957612a4f6140f0565b806308c379a01415612aac5750612a6461470e565b80612a6f5750612aae565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa391906139dd565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae0906139ff565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6790613a1f565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000612bb0612bab84613d28565b613d03565b90508083825260208201905082856020860282011115612bd357612bd261411c565b5b60005b85811015612c035781612be98882612cbf565b845260208401935060208301925050600181019050612bd6565b5050509392505050565b6000612c20612c1b84613d54565b613d03565b90508083825260208201905082856020860282011115612c4357612c4261411c565b5b60005b85811015612c735781612c598882612e9f565b845260208401935060208301925050600181019050612c46565b5050509392505050565b6000612c90612c8b84613d80565b613d03565b905082815260208101848484011115612cac57612cab614121565b5b612cb7848285613f46565b509392505050565b600081359050612cce816147a4565b92915050565b60008083601f840112612cea57612ce9614117565b5b8235905067ffffffffffffffff811115612d0757612d06614112565b5b602083019150836020820283011115612d2357612d2261411c565b5b9250929050565b600082601f830112612d3f57612d3e614117565b5b8135612d4f848260208601612b9d565b91505092915050565b60008083601f840112612d6e57612d6d614117565b5b8235905067ffffffffffffffff811115612d8b57612d8a614112565b5b602083019150836020820283011115612da757612da661411c565b5b9250929050565b600082601f830112612dc357612dc2614117565b5b8135612dd3848260208601612c0d565b91505092915050565b600081359050612deb816147bb565b92915050565b600081359050612e00816147d2565b92915050565b600081519050612e15816147d2565b92915050565b600082601f830112612e3057612e2f614117565b5b8135612e40848260208601612c7d565b91505092915050565b60008083601f840112612e5f57612e5e614117565b5b8235905067ffffffffffffffff811115612e7c57612e7b614112565b5b602083019150836001820283011115612e9857612e9761411c565b5b9250929050565b600081359050612eae816147e9565b92915050565b600081519050612ec3816147e9565b92915050565b600060208284031215612edf57612ede61412b565b5b6000612eed84828501612cbf565b91505092915050565b60008060408385031215612f0d57612f0c61412b565b5b6000612f1b85828601612cbf565b9250506020612f2c85828601612cbf565b9150509250929050565b600080600080600060a08688031215612f5257612f5161412b565b5b6000612f6088828901612cbf565b9550506020612f7188828901612cbf565b945050604086013567ffffffffffffffff811115612f9257612f91614126565b5b612f9e88828901612dae565b935050606086013567ffffffffffffffff811115612fbf57612fbe614126565b5b612fcb88828901612dae565b925050608086013567ffffffffffffffff811115612fec57612feb614126565b5b612ff888828901612e1b565b9150509295509295909350565b600080600080600060a086880312156130215761302061412b565b5b600061302f88828901612cbf565b955050602061304088828901612cbf565b945050604061305188828901612e9f565b935050606061306288828901612e9f565b925050608086013567ffffffffffffffff81111561308357613082614126565b5b61308f88828901612e1b565b9150509295509295909350565b6000806000606084860312156130b5576130b461412b565b5b60006130c386828701612cbf565b935050602084013567ffffffffffffffff8111156130e4576130e3614126565b5b6130f086828701612dae565b925050604084013567ffffffffffffffff81111561311157613110614126565b5b61311d86828701612dae565b9150509250925092565b6000806040838503121561313e5761313d61412b565b5b600061314c85828601612cbf565b925050602061315d85828601612ddc565b9150509250929050565b6000806040838503121561317e5761317d61412b565b5b600061318c85828601612cbf565b925050602061319d85828601612e9f565b9150509250929050565b6000806000606084860312156131c0576131bf61412b565b5b60006131ce86828701612cbf565b93505060206131df86828701612e9f565b92505060406131f086828701612e9f565b9150509250925092565b600080600080604085870312156132145761321361412b565b5b600085013567ffffffffffffffff81111561323257613231614126565b5b61323e87828801612cd4565b9450945050602085013567ffffffffffffffff81111561326157613260614126565b5b61326d87828801612d58565b925092505092959194509250565b600080604083850312156132925761329161412b565b5b600083013567ffffffffffffffff8111156132b0576132af614126565b5b6132bc85828601612d2a565b925050602083013567ffffffffffffffff8111156132dd576132dc614126565b5b6132e985828601612dae565b9150509250929050565b6000602082840312156133095761330861412b565b5b600061331784828501612df1565b91505092915050565b6000602082840312156133365761333561412b565b5b600061334484828501612e06565b91505092915050565b6000602082840312156133635761336261412b565b5b600061337184828501612e9f565b91505092915050565b6000602082840312156133905761338f61412b565b5b600061339e84828501612eb4565b91505092915050565b6000806000604084860312156133c0576133bf61412b565b5b60006133ce86828701612e9f565b935050602084013567ffffffffffffffff8111156133ef576133ee614126565b5b6133fb86828701612e49565b92509250509250925092565b6000613413838361383c565b60208301905092915050565b61342881613ed2565b82525050565b600061343982613dc1565b6134438185613def565b935061344e83613db1565b8060005b8381101561347f5781516134668882613407565b975061347183613de2565b925050600181019050613452565b5085935050505092915050565b61349581613ee4565b82525050565b60006134a682613dcc565b6134b08185613e00565b93506134c0818560208601613f55565b6134c981614130565b840191505092915050565b60006134e08385613e11565b93506134ed838584613f46565b6134f683614130565b840190509392505050565b600061350c82613dd7565b6135168185613e11565b9350613526818560208601613f55565b61352f81614130565b840191505092915050565b6000613547603483613e11565b91506135528261414e565b604082019050919050565b600061356a602883613e11565b91506135758261419d565b604082019050919050565b600061358d601083613e11565b9150613598826141ec565b602082019050919050565b60006135b0601983613e11565b91506135bb82614215565b602082019050919050565b60006135d3602b83613e11565b91506135de8261423e565b604082019050919050565b60006135f6602683613e11565b91506136018261428d565b604082019050919050565b6000613619601583613e11565b9150613624826142dc565b602082019050919050565b600061363c602483613e11565b915061364782614305565b604082019050919050565b600061365f602983613e11565b915061366a82614354565b604082019050919050565b6000613682600d83613e11565b915061368d826143a3565b602082019050919050565b60006136a5601683613e11565b91506136b0826143cc565b602082019050919050565b60006136c8601e83613e11565b91506136d3826143f5565b602082019050919050565b60006136eb602583613e11565b91506136f68261441e565b604082019050919050565b600061370e603283613e11565b91506137198261446d565b604082019050919050565b6000613731602383613e11565b915061373c826144bc565b604082019050919050565b6000613754602a83613e11565b915061375f8261450b565b604082019050919050565b6000613777602083613e11565b91506137828261455a565b602082019050919050565b600061379a602c83613e11565b91506137a582614583565b604082019050919050565b60006137bd602983613e11565b91506137c8826145d2565b604082019050919050565b60006137e0602983613e11565b91506137eb82614621565b604082019050919050565b6000613803602883613e11565b915061380e82614670565b604082019050919050565b6000613826602183613e11565b9150613831826146bf565b604082019050919050565b61384581613f3c565b82525050565b61385481613f3c565b82525050565b600060208201905061386f600083018461341f565b92915050565b600060a08201905061388a600083018861341f565b613897602083018761341f565b81810360408301526138a9818661342e565b905081810360608301526138bd818561342e565b905081810360808301526138d1818461349b565b90509695505050505050565b600060a0820190506138f2600083018861341f565b6138ff602083018761341f565b61390c604083018661384b565b613919606083018561384b565b818103608083015261392b818461349b565b90509695505050505050565b600060408201905061394c600083018661341f565b818103602083015261395f8184866134d4565b9050949350505050565b60006020820190508181036000830152613983818461342e565b905092915050565b600060408201905081810360008301526139a5818561342e565b905081810360208301526139b9818461342e565b90509392505050565b60006020820190506139d7600083018461348c565b92915050565b600060208201905081810360008301526139f78184613501565b905092915050565b60006020820190508181036000830152613a188161353a565b9050919050565b60006020820190508181036000830152613a388161355d565b9050919050565b60006020820190508181036000830152613a5881613580565b9050919050565b60006020820190508181036000830152613a78816135a3565b9050919050565b60006020820190508181036000830152613a98816135c6565b9050919050565b60006020820190508181036000830152613ab8816135e9565b9050919050565b60006020820190508181036000830152613ad88161360c565b9050919050565b60006020820190508181036000830152613af88161362f565b9050919050565b60006020820190508181036000830152613b1881613652565b9050919050565b60006020820190508181036000830152613b3881613675565b9050919050565b60006020820190508181036000830152613b5881613698565b9050919050565b60006020820190508181036000830152613b78816136bb565b9050919050565b60006020820190508181036000830152613b98816136de565b9050919050565b60006020820190508181036000830152613bb881613701565b9050919050565b60006020820190508181036000830152613bd881613724565b9050919050565b60006020820190508181036000830152613bf881613747565b9050919050565b60006020820190508181036000830152613c188161376a565b9050919050565b60006020820190508181036000830152613c388161378d565b9050919050565b60006020820190508181036000830152613c58816137b0565b9050919050565b60006020820190508181036000830152613c78816137d3565b9050919050565b60006020820190508181036000830152613c98816137f6565b9050919050565b60006020820190508181036000830152613cb881613819565b9050919050565b6000602082019050613cd4600083018461384b565b92915050565b6000604082019050613cef600083018561384b565b613cfc602083018461384b565b9392505050565b6000613d0d613d1e565b9050613d198282613fba565b919050565b6000604051905090565b600067ffffffffffffffff821115613d4357613d426140c1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d6f57613d6e6140c1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d9b57613d9a6140c1565b5b613da482614130565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000613e2d82613f3c565b9150613e3883613f3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e6d57613e6c614034565b5b828201905092915050565b6000613e8382613f3c565b9150613e8e83613f3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ec757613ec6614034565b5b828202905092915050565b6000613edd82613f1c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f73578082015181840152602081019050613f58565b83811115613f82576000848401525b50505050565b60006002820490506001821680613fa057607f821691505b60208210811415613fb457613fb3614063565b5b50919050565b613fc382614130565b810181811067ffffffffffffffff82111715613fe257613fe16140c1565b5b80604052505050565b6000613ff682613f3c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561402957614028614034565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561410f5760046000803e61410c600051614141565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d6f6e657900000000000000000000000000000000600082015250565b7f4d6967726174696f6e20686173206e6f74207374617274656400000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f446f65736e2774206f776e2074686520746f6b656e0000000000000000000000600082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4c696d6974207265616368656400000000000000000000000000000000000000600082015250565b7f53616c65732068617665206e6f74207374617274656400000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e2774206d696e74206d6f7265207468616e203130207065722060008201527f7472616e73616374696f6e210000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101561471e576147a1565b614726613d1e565b60043d036004823e80513d602482011167ffffffffffffffff8211171561474e5750506147a1565b808201805167ffffffffffffffff81111561476c57505050506147a1565b80602083010160043d0385018111156147895750505050506147a1565b61479882602001850186613fba565b82955050505050505b90565b6147ad81613ed2565b81146147b857600080fd5b50565b6147c481613ee4565b81146147cf57600080fd5b50565b6147db81613ef0565b81146147e657600080fd5b50565b6147f281613f3c565b81146147fd57600080fd5b5056fea26469706673582212200a0e0ccabcb8f17787fe1279f577838e1127bbc1744d5b631976664d9d0dbb9664736f6c63430008070033

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.