ETH Price: $2,286.56 (+0.95%)

Token

Entropy by Nahiko (ENTROPY)
 

Overview

Max Total Supply

0 ENTROPY

Holders

244

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
arnoldcns.eth
Balance
1 ENTROPY
0x1afe8a03214bf47300c2b3b7918ffda98fb359c8
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Entropy

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : entropy.sol
// SPDX-License-Identifier:Unlicensed
pragma solidity >= 0.8.16;

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



contract Entropy is ERC721, Ownable {
    
    // Block data to be stored in structs
    struct Block {
    uint blockNumber;
    bytes32 blockHash;
    }

    // init a bunch of variables
    Block[] public blockDB;
    mapping(address => bool) public frameHolders;
    bool public isPublicMintingEnabled;

    address public zeroRendererAddress;
    address public streamRendererAddress;
    bool public isPrivateMintingEnabled;

    string public wsProvider;
    
    constructor(
        address zeroRendererAddress_,
        address streamRendererAddress_,
        address[] memory frameHolders_,
        string memory wsProvider_
    ) ERC721("Entropy by Nahiko", "ENTROPY") { 

        // the renderer addresses
        zeroRendererAddress = zeroRendererAddress_;
        streamRendererAddress = streamRendererAddress_;

        wsProvider = wsProvider_;

        // init the frame holders mapping
        for(uint i = 0; i < frameHolders_.length;i++){
            frameHolders[frameHolders_[i]] = true;
        }

        // mint the 12 curation tokens, sent to nahiko
        // filling the db with 0s until curation
        for(uint i=0; i < 12; i++){
            blockDB.push(Block({ blockNumber : 0 , blockHash : 0}));
            _mint(msg.sender,i);
        }

        isPrivateMintingEnabled = false;
        isPublicMintingEnabled = false;
    }

    //_________________________________________________________________________________
    //functions that are utils for the ERC721

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {

        bytes memory uriString;
        string memory rendered;
        
        if(tokenId == 0){
            return ICaller(streamRendererAddress).render("0","0" , wsProvider);
        }

        else{
            return ICaller(zeroRendererAddress).render( Strings.toString(blockDB[tokenId].blockNumber) , blockDB[tokenId].blockHash  , wsProvider);
        }
    }
    
    
    function contractURI() public view returns (string memory) {
        //concat data and return the json as a string
        bytes memory contractJson = abi.encodePacked('data:application/json;utf8,{"description":"Entropy is a visual representation of Entropy increasing on the blockchain.","name": "Entropy","image": "https://arweave.net/dGUeg1273m1qiHf4YAbIPUxRyChgtFE9BYw6AuiMr9U","external_link": "","seller_fee_basis_points": 500,"fee_recipient": "',Strings.toHexString(uint256(uint160(owner())), 20),'"}');
        return string(contractJson);
    }
    
    function setZeroRendererAddress(address _zeroRendererAddress) public onlyOwner {
        zeroRendererAddress = _zeroRendererAddress;
    }

    function setStreamRendererAddress(address _streamRendererAddress) public onlyOwner {
        streamRendererAddress = _streamRendererAddress;
    }

    function setNewProvider(string memory newProvider) public onlyOwner {
        wsProvider = newProvider;
    }

    function enablePrivateMinting() public onlyOwner {
        isPrivateMintingEnabled = true;
    }

    function disableMinting() public onlyOwner {
        isPrivateMintingEnabled = false;
        isPublicMintingEnabled = false;
    }
    
    function enablePublicMinting() public onlyOwner {
        isPrivateMintingEnabled = true; // when Public Minting is allowed, private should be allowed by default too
        isPublicMintingEnabled = true;
    }
    
    function curate(uint _idToUpdate , uint newBlock , bytes32 newHash ) public onlyOwner {
        require(_idToUpdate > 0 && _idToUpdate < 12); // id needs to be one of the curation tokens

        blockDB[_idToUpdate] = Block({ blockNumber : newBlock , blockHash : newHash});
    }

    function mint() public payable{
        
        require(msg.value >= 0.1 ether,"minimum mint price not reached");
        require(blockDB.length < 512, "The maximum number of mints is 512");
        require(isPrivateMintingEnabled, "No minting is currently possible");

        if(!isPublicMintingEnabled){
            // check if in frame holder list, otherwise revert
            require(frameHolders[msg.sender],"Minting is currently not open to the public");
        }

        uint lastMintedBlock = blockDB[blockDB.length - 1].blockNumber;
        require(lastMintedBlock + 1 < block.number, " no more blocks available right now, wait for the next block to be processed");

        uint blockToMint = block.number - 256; // we initialize the block to mint at the max range
        
        if(blockToMint <= lastMintedBlock){ // if the last minted block is inside our range, we just increment
            blockToMint = lastMintedBlock + 1;
        }
        
        // pushing the data to the new blockDB entry
        blockDB.push(Block({ blockNumber : blockToMint , blockHash : blockhash(blockToMint) }));

        _mint(msg.sender,blockDB.length - 1); // mint the actual token

        // once we hit 256 mint we turn minting off, only nahiko can turn it back on
        if(blockDB.length % 256 == 0){
            isPublicMintingEnabled = false;
            isPrivateMintingEnabled = false;
        }
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

interface ICaller{
    function render(string memory blockNumber, bytes32 blockHash , string memory wsProvider) external view returns(string memory);
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 3 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

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

File 4 of 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 5 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 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.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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":[{"internalType":"address","name":"zeroRendererAddress_","type":"address"},{"internalType":"address","name":"streamRendererAddress_","type":"address"},{"internalType":"address[]","name":"frameHolders_","type":"address[]"},{"internalType":"string","name":"wsProvider_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"blockDB","outputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"bytes32","name":"blockHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_idToUpdate","type":"uint256"},{"internalType":"uint256","name":"newBlock","type":"uint256"},{"internalType":"bytes32","name":"newHash","type":"bytes32"}],"name":"curate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePrivateMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"frameHolders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPrivateMintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newProvider","type":"string"}],"name":"setNewProvider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_streamRendererAddress","type":"address"}],"name":"setStreamRendererAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_zeroRendererAddress","type":"address"}],"name":"setZeroRendererAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"streamRendererAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wsProvider","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"zeroRendererAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162005092380380620050928339818101604052810190620000379190620008f6565b6040518060400160405280601181526020017f456e74726f7079206279204e6168696b6f0000000000000000000000000000008152506040518060400160405280600781526020017f454e54524f5059000000000000000000000000000000000000000000000000008152508160009081620000b4919062000bf1565b508060019081620000c6919062000bf1565b505050620000e9620000dd620002e660201b60201c565b620002ee60201b60201c565b83600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b90816200017c919062000bf1565b5060005b82518110156200021557600160086000858481518110620001a657620001a562000cd8565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806200020c9062000d36565b91505062000180565b5060005b600c811015620002a55760076040518060400160405280600081526020016000801b8152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550506200028f3382620003b460201b60201c565b80806200029c9062000d36565b91505062000219565b506000600a60146101000a81548160ff0219169083151502179055506000600960006101000a81548160ff0219169083151502179055505050505062000eb3565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000426576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041d9062000de4565b60405180910390fd5b6200043781620005ad60201b60201c565b156200047a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004719062000e56565b60405180910390fd5b6200048e600083836200061960201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004e0919062000e78565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005a9600083836200061e60201b60201c565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006648262000637565b9050919050565b620006768162000657565b81146200068257600080fd5b50565b60008151905062000696816200066b565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620006ec82620006a1565b810181811067ffffffffffffffff821117156200070e576200070d620006b2565b5b80604052505050565b60006200072362000623565b9050620007318282620006e1565b919050565b600067ffffffffffffffff821115620007545762000753620006b2565b5b602082029050602081019050919050565b600080fd5b6000620007816200077b8462000736565b62000717565b90508083825260208201905060208402830185811115620007a757620007a662000765565b5b835b81811015620007d45780620007bf888262000685565b845260208401935050602081019050620007a9565b5050509392505050565b600082601f830112620007f657620007f56200069c565b5b8151620008088482602086016200076a565b91505092915050565b600080fd5b600067ffffffffffffffff821115620008345762000833620006b2565b5b6200083f82620006a1565b9050602081019050919050565b60005b838110156200086c5780820151818401526020810190506200084f565b60008484015250505050565b60006200088f620008898462000816565b62000717565b905082815260208101848484011115620008ae57620008ad62000811565b5b620008bb8482856200084c565b509392505050565b600082601f830112620008db57620008da6200069c565b5b8151620008ed84826020860162000878565b91505092915050565b600080600080608085870312156200091357620009126200062d565b5b6000620009238782880162000685565b9450506020620009368782880162000685565b935050604085015167ffffffffffffffff8111156200095a576200095962000632565b5b6200096887828801620007de565b925050606085015167ffffffffffffffff8111156200098c576200098b62000632565b5b6200099a87828801620008c3565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009f957607f821691505b60208210810362000a0f5762000a0e620009b1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a3a565b62000a85868362000a3a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ad262000acc62000ac68462000a9d565b62000aa7565b62000a9d565b9050919050565b6000819050919050565b62000aee8362000ab1565b62000b0662000afd8262000ad9565b84845462000a47565b825550505050565b600090565b62000b1d62000b0e565b62000b2a81848462000ae3565b505050565b5b8181101562000b525762000b4660008262000b13565b60018101905062000b30565b5050565b601f82111562000ba15762000b6b8162000a15565b62000b768462000a2a565b8101602085101562000b86578190505b62000b9e62000b958562000a2a565b83018262000b2f565b50505b505050565b600082821c905092915050565b600062000bc66000198460080262000ba6565b1980831691505092915050565b600062000be1838362000bb3565b9150826002028217905092915050565b62000bfc82620009a6565b67ffffffffffffffff81111562000c185762000c17620006b2565b5b62000c248254620009e0565b62000c3182828562000b56565b600060209050601f83116001811462000c69576000841562000c54578287015190505b62000c60858262000bd3565b86555062000cd0565b601f19841662000c798662000a15565b60005b8281101562000ca35784890151825560018201915060208501945060208101905062000c7c565b8683101562000cc3578489015162000cbf601f89168262000bb3565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d438262000a9d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000d785762000d7762000d07565b5b600182019050919050565b600082825260208201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000dcc60208362000d83565b915062000dd98262000d94565b602082019050919050565b6000602082019050818103600083015262000dff8162000dbd565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000e3e601c8362000d83565b915062000e4b8262000e06565b602082019050919050565b6000602082019050818103600083015262000e718162000e2f565b9050919050565b600062000e858262000a9d565b915062000e928362000a9d565b925082820190508082111562000ead5762000eac62000d07565b5b92915050565b6141cf8062000ec36000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063bc262b63116100a0578063e8a3d4851161006f578063e8a3d485146106a3578063e985e9c5146106ce578063f2fde38b1461070b578063f7beb98a14610734578063ffe53cfe1461074b576101ee565b8063bc262b63146105e9578063c034eea614610626578063c87b56dd1461063d578063cfc205a51461067a576101ee565b80638da5cb5b116100dc5780638da5cb5b1461054157806395d89b411461056c578063a22cb46514610597578063b88d4fde146105c0576101ee565b806370a08231146104ab578063715018a6146104e8578063726d6a10146104ff5780637e5cd5c11461052a576101ee565b80632e94901f11610185578063441f06ac11610154578063441f06ac146103ef5780634cbf54691461041a5780636352211e14610443578063659b70c814610480576101ee565b80632e94901f1461035b57806333e7caeb146103845780633ccfd60b146103af57806342842e0e146103c6576101ee565b80631249c58b116101c15780631249c58b146102c15780631935693a146102cb57806323b872dd146102f45780632d8e58911461031d576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612688565b610776565b60405161022791906126d0565b60405180910390f35b34801561023c57600080fd5b50610245610858565b604051610252919061277b565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906127d3565b6108ea565b60405161028f9190612841565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612888565b610930565b005b6102c9610a47565b005b3480156102d757600080fd5b506102f260048036038101906102ed91906129fd565b610d44565b005b34801561030057600080fd5b5061031b60048036038101906103169190612a46565b610d5f565b005b34801561032957600080fd5b50610344600480360381019061033f91906127d3565b610dbf565b604051610352929190612ac1565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d9190612aea565b610df3565b005b34801561039057600080fd5b50610399610e3f565b6040516103a69190612841565b60405180910390f35b3480156103bb57600080fd5b506103c4610e65565b005b3480156103d257600080fd5b506103ed60048036038101906103e89190612a46565b610eb6565b005b3480156103fb57600080fd5b50610404610ed6565b60405161041191906126d0565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612b43565b610ee9565b005b34801561044f57600080fd5b5061046a600480360381019061046591906127d3565b610f5d565b6040516104779190612841565b60405180910390f35b34801561048c57600080fd5b5061049561100e565b6040516104a2919061277b565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190612aea565b61109c565b6040516104df9190612b96565b60405180910390f35b3480156104f457600080fd5b506104fd611153565b005b34801561050b57600080fd5b50610514611167565b6040516105219190612841565b60405180910390f35b34801561053657600080fd5b5061053f61118d565b005b34801561054d57600080fd5b506105566111cd565b6040516105639190612841565b60405180910390f35b34801561057857600080fd5b506105816111f7565b60405161058e919061277b565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190612bdd565b611289565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612cbe565b61129f565b005b3480156105f557600080fd5b50610610600480360381019061060b9190612aea565b611301565b60405161061d91906126d0565b60405180910390f35b34801561063257600080fd5b5061063b611321565b005b34801561064957600080fd5b50610664600480360381019061065f91906127d3565b611346565b604051610671919061277b565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c9190612aea565b611500565b005b3480156106af57600080fd5b506106b861154c565b6040516106c5919061277b565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190612d41565b6115a0565b60405161070291906126d0565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d9190612aea565b611634565b005b34801561074057600080fd5b506107496116b7565b005b34801561075757600080fd5b506107606116f7565b60405161076d91906126d0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085157506108508261170a565b5b9050919050565b60606000805461086790612db0565b80601f016020809104026020016040519081016040528092919081815260200182805461089390612db0565b80156108e05780601f106108b5576101008083540402835291602001916108e0565b820191906000526020600020905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b60006108f582611774565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093b82610f5d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a290612e53565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ca6117bf565b73ffffffffffffffffffffffffffffffffffffffff1614806109f957506109f8816109f36117bf565b6115a0565b5b610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90612ee5565b60405180910390fd5b610a4283836117c7565b505050565b67016345785d8a0000341015610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990612f51565b60405180910390fd5b61020060078054905010610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad290612fe3565b60405180910390fd5b600a60149054906101000a900460ff16610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b219061304f565b60405180910390fd5b600960009054906101000a900460ff16610bcb57600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc1906130e1565b60405180910390fd5b5b600060076001600780549050610be19190613130565b81548110610bf257610bf1613164565b5b906000526020600020906002020160000154905043600182610c149190613193565b10610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b9061325f565b60405180910390fd5b600061010043610c649190613130565b9050818111610c7d57600182610c7a9190613193565b90505b600760405180604001604052808381526020018340815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050610cef336001600780549050610cea9190613130565b611880565b6000610100600780549050610d0491906132ae565b03610d40576000600960006101000a81548160ff0219169083151502179055506000600a60146101000a81548160ff0219169083151502179055505b5050565b610d4c611a59565b80600b9081610d5b919061348b565b5050565b610d70610d6a6117bf565b82611ad7565b610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906135cf565b60405180910390fd5b610dba838383611b6c565b505050565b60078181548110610dcf57600080fd5b90600052602060002090600202016000915090508060000154908060010154905082565b610dfb611a59565b80600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e6d611a59565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610eb3573d6000803e3d6000fd5b50565b610ed18383836040518060200160405280600081525061129f565b505050565b600960009054906101000a900460ff1681565b610ef1611a59565b600083118015610f015750600c83105b610f0a57600080fd5b60405180604001604052808381526020018281525060078481548110610f3357610f32613164565b5b90600052602060002090600202016000820151816000015560208201518160010155905050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc9061363b565b60405180910390fd5b80915050919050565b600b805461101b90612db0565b80601f016020809104026020016040519081016040528092919081815260200182805461104790612db0565b80156110945780601f1061106957610100808354040283529160200191611094565b820191906000526020600020905b81548152906001019060200180831161107757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611103906136cd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61115b611a59565b6111656000611dd2565b565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611195611a59565b6000600a60146101000a81548160ff0219169083151502179055506000600960006101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461120690612db0565b80601f016020809104026020016040519081016040528092919081815260200182805461123290612db0565b801561127f5780601f106112545761010080835404028352916020019161127f565b820191906000526020600020905b81548152906001019060200180831161126257829003601f168201915b5050505050905090565b61129b6112946117bf565b8383611e98565b5050565b6112b06112aa6117bf565b83611ad7565b6112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e6906135cf565b60405180910390fd5b6112fb84848484612004565b50505050565b60086020528060005260406000206000915054906101000a900460ff1681565b611329611a59565b6001600a60146101000a81548160ff021916908315150217905550565b6060806060600084036113fe57600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bf3c908a600b6040518263ffffffff1660e01b81526004016113af91906137e3565b600060405180830381865afa1580156113cc573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906113f59190613894565b925050506114fb565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bf3c908a61146a6007878154811061145357611452613164565b5b906000526020600020906002020160000154612060565b6007878154811061147e5761147d613164565b5b906000526020600020906002020160010154600b6040518463ffffffff1660e01b81526004016114b0939291906138dd565b600060405180830381865afa1580156114cd573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906114f69190613894565b925050505b919050565b611508611a59565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600061157861155b6111cd565b73ffffffffffffffffffffffffffffffffffffffff1660146121c0565b6040516020016115889190613b29565b60405160208183030381529060405290508091505090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61163c611a59565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613bc8565b60405180910390fd5b6116b481611dd2565b50565b6116bf611a59565b6001600a60146101000a81548160ff0219169083151502179055506001600960006101000a81548160ff021916908315150217905550565b600a60149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61177d816123fc565b6117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b39061363b565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661183a83610f5d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690613c34565b60405180910390fd5b6118f8816123fc565b15611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90613ca0565b60405180910390fd5b61194460008383612468565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119949190613193565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a556000838361246d565b5050565b611a616117bf565b73ffffffffffffffffffffffffffffffffffffffff16611a7f6111cd565b73ffffffffffffffffffffffffffffffffffffffff1614611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90613d0c565b60405180910390fd5b565b600080611ae383610f5d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b255750611b2481856115a0565b5b80611b6357508373ffffffffffffffffffffffffffffffffffffffff16611b4b846108ea565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b8c82610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990613d9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890613e30565b60405180910390fd5b611c5c838383612468565b611c676000826117c7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb79190613130565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0e9190613193565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dcd83838361246d565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613e9c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ff791906126d0565b60405180910390a3505050565b61200f848484611b6c565b61201b84848484612472565b61205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190613f2e565b60405180910390fd5b50505050565b6060600082036120a7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121bb565b600082905060005b600082146120d95780806120c290613f4e565b915050600a826120d29190613f96565b91506120af565b60008167ffffffffffffffff8111156120f5576120f46128d2565b5b6040519080825280601f01601f1916602001820160405280156121275781602001600182028036833780820191505090505b5090505b600085146121b4576001826121409190613130565b9150600a8561214f91906132ae565b603061215b9190613193565b60f81b81838151811061217157612170613164565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121ad9190613f96565b945061212b565b8093505050505b919050565b6060600060028360026121d39190613fc7565b6121dd9190613193565b67ffffffffffffffff8111156121f6576121f56128d2565b5b6040519080825280601f01601f1916602001820160405280156122285781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106122605761225f613164565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106122c4576122c3613164565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026123049190613fc7565b61230e9190613193565b90505b60018111156123ae577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106123505761234f613164565b5b1a60f81b82828151811061236757612366613164565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806123a790614021565b9050612311565b50600084146123f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e990614096565b60405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b60006124938473ffffffffffffffffffffffffffffffffffffffff166125f9565b156125ec578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124bc6117bf565b8786866040518563ffffffff1660e01b81526004016124de949392919061410b565b6020604051808303816000875af192505050801561251a57506040513d601f19601f82011682018060405250810190612517919061416c565b60015b61259c573d806000811461254a576040519150601f19603f3d011682016040523d82523d6000602084013e61254f565b606091505b506000815103612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90613f2e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125f1565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61266581612630565b811461267057600080fd5b50565b6000813590506126828161265c565b92915050565b60006020828403121561269e5761269d612626565b5b60006126ac84828501612673565b91505092915050565b60008115159050919050565b6126ca816126b5565b82525050565b60006020820190506126e560008301846126c1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561272557808201518184015260208101905061270a565b60008484015250505050565b6000601f19601f8301169050919050565b600061274d826126eb565b61275781856126f6565b9350612767818560208601612707565b61277081612731565b840191505092915050565b600060208201905081810360008301526127958184612742565b905092915050565b6000819050919050565b6127b08161279d565b81146127bb57600080fd5b50565b6000813590506127cd816127a7565b92915050565b6000602082840312156127e9576127e8612626565b5b60006127f7848285016127be565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061282b82612800565b9050919050565b61283b81612820565b82525050565b60006020820190506128566000830184612832565b92915050565b61286581612820565b811461287057600080fd5b50565b6000813590506128828161285c565b92915050565b6000806040838503121561289f5761289e612626565b5b60006128ad85828601612873565b92505060206128be858286016127be565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61290a82612731565b810181811067ffffffffffffffff82111715612929576129286128d2565b5b80604052505050565b600061293c61261c565b90506129488282612901565b919050565b600067ffffffffffffffff821115612968576129676128d2565b5b61297182612731565b9050602081019050919050565b82818337600083830152505050565b60006129a061299b8461294d565b612932565b9050828152602081018484840111156129bc576129bb6128cd565b5b6129c784828561297e565b509392505050565b600082601f8301126129e4576129e36128c8565b5b81356129f484826020860161298d565b91505092915050565b600060208284031215612a1357612a12612626565b5b600082013567ffffffffffffffff811115612a3157612a3061262b565b5b612a3d848285016129cf565b91505092915050565b600080600060608486031215612a5f57612a5e612626565b5b6000612a6d86828701612873565b9350506020612a7e86828701612873565b9250506040612a8f868287016127be565b9150509250925092565b612aa28161279d565b82525050565b6000819050919050565b612abb81612aa8565b82525050565b6000604082019050612ad66000830185612a99565b612ae36020830184612ab2565b9392505050565b600060208284031215612b0057612aff612626565b5b6000612b0e84828501612873565b91505092915050565b612b2081612aa8565b8114612b2b57600080fd5b50565b600081359050612b3d81612b17565b92915050565b600080600060608486031215612b5c57612b5b612626565b5b6000612b6a868287016127be565b9350506020612b7b868287016127be565b9250506040612b8c86828701612b2e565b9150509250925092565b6000602082019050612bab6000830184612a99565b92915050565b612bba816126b5565b8114612bc557600080fd5b50565b600081359050612bd781612bb1565b92915050565b60008060408385031215612bf457612bf3612626565b5b6000612c0285828601612873565b9250506020612c1385828601612bc8565b9150509250929050565b600067ffffffffffffffff821115612c3857612c376128d2565b5b612c4182612731565b9050602081019050919050565b6000612c61612c5c84612c1d565b612932565b905082815260208101848484011115612c7d57612c7c6128cd565b5b612c8884828561297e565b509392505050565b600082601f830112612ca557612ca46128c8565b5b8135612cb5848260208601612c4e565b91505092915050565b60008060008060808587031215612cd857612cd7612626565b5b6000612ce687828801612873565b9450506020612cf787828801612873565b9350506040612d08878288016127be565b925050606085013567ffffffffffffffff811115612d2957612d2861262b565b5b612d3587828801612c90565b91505092959194509250565b60008060408385031215612d5857612d57612626565b5b6000612d6685828601612873565b9250506020612d7785828601612873565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dc857607f821691505b602082108103612ddb57612dda612d81565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e3d6021836126f6565b9150612e4882612de1565b604082019050919050565b60006020820190508181036000830152612e6c81612e30565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612ecf603e836126f6565b9150612eda82612e73565b604082019050919050565b60006020820190508181036000830152612efe81612ec2565b9050919050565b7f6d696e696d756d206d696e74207072696365206e6f7420726561636865640000600082015250565b6000612f3b601e836126f6565b9150612f4682612f05565b602082019050919050565b60006020820190508181036000830152612f6a81612f2e565b9050919050565b7f546865206d6178696d756d206e756d626572206f66206d696e7473206973203560008201527f3132000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fcd6022836126f6565b9150612fd882612f71565b604082019050919050565b60006020820190508181036000830152612ffc81612fc0565b9050919050565b7f4e6f206d696e74696e672069732063757272656e746c7920706f737369626c65600082015250565b60006130396020836126f6565b915061304482613003565b602082019050919050565b600060208201905081810360008301526130688161302c565b9050919050565b7f4d696e74696e672069732063757272656e746c79206e6f74206f70656e20746f60008201527f20746865207075626c6963000000000000000000000000000000000000000000602082015250565b60006130cb602b836126f6565b91506130d68261306f565b604082019050919050565b600060208201905081810360008301526130fa816130be565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061313b8261279d565b91506131468361279d565b925082820390508181111561315e5761315d613101565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061319e8261279d565b91506131a98361279d565b92508282019050808211156131c1576131c0613101565b5b92915050565b7f206e6f206d6f726520626c6f636b7320617661696c61626c652072696768742060008201527f6e6f772c207761697420666f7220746865206e65787420626c6f636b20746f2060208201527f62652070726f6365737365640000000000000000000000000000000000000000604082015250565b6000613249604c836126f6565b9150613254826131c7565b606082019050919050565b600060208201905081810360008301526132788161323c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132b98261279d565b91506132c48361279d565b9250826132d4576132d361327f565b5b828206905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026133417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613304565b61334b8683613304565b95508019841693508086168417925050509392505050565b6000819050919050565b600061338861338361337e8461279d565b613363565b61279d565b9050919050565b6000819050919050565b6133a28361336d565b6133b66133ae8261338f565b848454613311565b825550505050565b600090565b6133cb6133be565b6133d6818484613399565b505050565b5b818110156133fa576133ef6000826133c3565b6001810190506133dc565b5050565b601f82111561343f57613410816132df565b613419846132f4565b81016020851015613428578190505b61343c613434856132f4565b8301826133db565b50505b505050565b600082821c905092915050565b600061346260001984600802613444565b1980831691505092915050565b600061347b8383613451565b9150826002028217905092915050565b613494826126eb565b67ffffffffffffffff8111156134ad576134ac6128d2565b5b6134b78254612db0565b6134c28282856133fe565b600060209050601f8311600181146134f557600084156134e3578287015190505b6134ed858261346f565b865550613555565b601f198416613503866132df565b60005b8281101561352b57848901518255600182019150602085019450602081019050613506565b868310156135485784890151613544601f891682613451565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006135b9602e836126f6565b91506135c48261355d565b604082019050919050565b600060208201905081810360008301526135e8816135ac565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006136256018836126f6565b9150613630826135ef565b602082019050919050565b6000602082019050818103600083015261365481613618565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006136b76029836126f6565b91506136c28261365b565b604082019050919050565b600060208201905081810360008301526136e6816136aa565b9050919050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b60006137236001836126f6565b915061372e826136ed565b602082019050919050565b7f3000000000000000000000000000000000000000000000000000000000000000815250565b6000815461376c81612db0565b61377681866126f6565b9450600182166000811461379157600181146137a7576137da565b60ff1983168652811515602002860193506137da565b6137b0856132df565b60005b838110156137d2578154818901526001820191506020810190506137b3565b808801955050505b50505092915050565b600060608201905081810360008301526137fc81613716565b905061380a60208301613739565b818103604083015261381c818461375f565b905092915050565b60006138376138328461294d565b612932565b905082815260208101848484011115613853576138526128cd565b5b61385e848285612707565b509392505050565b600082601f83011261387b5761387a6128c8565b5b815161388b848260208601613824565b91505092915050565b6000602082840312156138aa576138a9612626565b5b600082015167ffffffffffffffff8111156138c8576138c761262b565b5b6138d484828501613866565b91505092915050565b600060608201905081810360008301526138f78186612742565b90506139066020830185612ab2565b8181036040830152613918818461375f565b9050949350505050565b600081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c7b2264657360008201527f6372697074696f6e223a22456e74726f707920697320612076697375616c207260208201527f6570726573656e746174696f6e206f6620456e74726f707920696e637265617360408201527f696e67206f6e2074686520626c6f636b636861696e2e222c226e616d65223a2060608201527f22456e74726f7079222c22696d616765223a202268747470733a2f2f6172776560808201527f6176652e6e65742f6447556567313237336d317169486634594162495055785260a08201527f7943686774464539425977364175694d723955222c2265787465726e616c5f6c60c08201527f696e6b223a2022222c2273656c6c65725f6665655f62617369735f706f696e7460e08201527f73223a203530302c226665655f726563697069656e74223a202200000000000061010082015250565b6000613a9561011a83613922565b9150613aa08261392d565b61011a82019050919050565b6000613ab7826126eb565b613ac18185613922565b9350613ad1818560208601612707565b80840191505092915050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b6000613b13600283613922565b9150613b1e82613add565b600282019050919050565b6000613b3482613a87565b9150613b408284613aac565b9150613b4b82613b06565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bb26026836126f6565b9150613bbd82613b56565b604082019050919050565b60006020820190508181036000830152613be181613ba5565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613c1e6020836126f6565b9150613c2982613be8565b602082019050919050565b60006020820190508181036000830152613c4d81613c11565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613c8a601c836126f6565b9150613c9582613c54565b602082019050919050565b60006020820190508181036000830152613cb981613c7d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cf66020836126f6565b9150613d0182613cc0565b602082019050919050565b60006020820190508181036000830152613d2581613ce9565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613d886025836126f6565b9150613d9382613d2c565b604082019050919050565b60006020820190508181036000830152613db781613d7b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e1a6024836126f6565b9150613e2582613dbe565b604082019050919050565b60006020820190508181036000830152613e4981613e0d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e866019836126f6565b9150613e9182613e50565b602082019050919050565b60006020820190508181036000830152613eb581613e79565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f186032836126f6565b9150613f2382613ebc565b604082019050919050565b60006020820190508181036000830152613f4781613f0b565b9050919050565b6000613f598261279d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f8b57613f8a613101565b5b600182019050919050565b6000613fa18261279d565b9150613fac8361279d565b925082613fbc57613fbb61327f565b5b828204905092915050565b6000613fd28261279d565b9150613fdd8361279d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561401657614015613101565b5b828202905092915050565b600061402c8261279d565b91506000820361403f5761403e613101565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006140806020836126f6565b915061408b8261404a565b602082019050919050565b600060208201905081810360008301526140af81614073565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006140dd826140b6565b6140e781856140c1565b93506140f7818560208601612707565b61410081612731565b840191505092915050565b60006080820190506141206000830187612832565b61412d6020830186612832565b61413a6040830185612a99565b818103606083015261414c81846140d2565b905095945050505050565b6000815190506141668161265c565b92915050565b60006020828403121561418257614181612626565b5b600061419084828501614157565b9150509291505056fea2646970667358221220f39d5b4cbbe49f15ee4905f8f78f8fe4d77886f29612be63a6dbd8a6d91df59464736f6c63430008100033000000000000000000000000f892f321ffaf3b6fb69a0049ac6c165701b1e4fe0000000000000000000000009eeff11be65ccd7711e6565b95162ea2f66bb4d200000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000f4000000000000000000000000000000000000000000000000000000000000000750000000000000000000000005810c4be53bc8a052c2ae7ee82f52d5cc8b0d5f0000000000000000000000000c1980a8cf3b17788e71e542e6eec73930cfa291000000000000000000000000005bd8f2f46a7f4f020419e7ab037694d3f64dbf000000000000000000000000012709eba6f4db2df2faf25bae08a2fb1de01be6d0000000000000000000000001979e183cb163f6b57561cf2dd02e5411c3a187a0000000000000000000000002e4558b70c0b07c643bcb3f94059f811f478012d00000000000000000000000034a32ad4ba1ea1eb02ccd3ed5b9af9a8d8ea07a8000000000000000000000000464c3ac1a6a3ef9a9e22f99877d4b3640b10510c0000000000000000000000004eebcd8fe44b9a78b6bd8c8c9179884ae4e4798200000000000000000000000053fad1623bc32399dcabcc2164e57e1bc549593d00000000000000000000000069a55d7dd72178077b2f781fd1b29036d1f1322f0000000000000000000000006aa4ae7d21db2c50f026615d1ff42e8447aaa46e0000000000000000000000006d5b0bc61c26b8ab6312627f19b55ca29367948400000000000000000000000077d38e690a35b376dd99bf9b3ae8cb0d9e9fd2e600000000000000000000000085fe8c837115322425de9c92b1db621a4b0f67c3000000000000000000000000a3d83ca657170c10f50c81cf49b1e86a81f0e815000000000000000000000000a551b27aeb7e6cb6a8ee60a0774eec8ba14a47d8000000000000000000000000a75747d5bd207d4cdb5d403502f39257a10804ea000000000000000000000000a95fac243ff531ccb3e0f4bfbb2505e7305361a3000000000000000000000000c29bac5c55885cdec09df981ed440dd039b17d41000000000000000000000000c6ce3202b4c5da7db2736e92383f6405afb57715000000000000000000000000c9df79fe514b75cc9f372cd32c8ee6ebda699bb4000000000000000000000000d1eddfcc4596cc8bd0bd7495beab9b979fc50336000000000000000000000000d901f610fe9f499805205533c3639921962991f5000000000000000000000000d91dc7c83bd01b91cb25019dfc4e35bc6faab814000000000000000000000000dcdb88f3754b2841093d9348a2d02df8cf06314c000000000000000000000000e2c11fea6f41383743683a873fcf61473e662594000000000000000000000000f4985abefd0cd9c55a1af367ba696255f350f28a0000000000000000000000001fd6d74f990a0cb491542e42a1526f13a14495100000000000000000000000002cb3cd0b3338479a59da6b55e05a751bf0da93470000000000000000000000002fa9e3da421962ee6f66de60e66cc0cafb37c72100000000000000000000000051e6f5560c7ac0ab63fa4e0f77375172d6775ab5000000000000000000000000d96e4f06ecf50cb3be57138b1560a92b9337281900000000000000000000000014e9e4f62a085750b874863c7ece73b2c89cd1c200000000000000000000000025a5617267cd2866ccb5d475ddcbfcf7a7ae3a7a00000000000000000000000046fe447c4d5b3f65e4854fe5ef6af6315087c7c20000000000000000000000004afbfb0a64bbe9837f78fb2b262cf105076715cf000000000000000000000000568022ee46ed6f338e16153e51ee1a0d603e639e00000000000000000000000057ae265eab27498113b6d0bd3e63ad9ce36512b000000000000000000000000078773a9977bdc34e3034d5f0247490e602392a1b000000000000000000000000d94ad07955fa0d02f8c466820643b609c3734f5b000000000000000000000000ec4133064ca105406d560865a1cf8080b97b6f3f000000000000000000000000f777af5cfa7a0f242b3e0cf7fff4823c15dde70f0000000000000000000000009fb42f1a18c054b983b736eab5974df1aa7b284e000000000000000000000000d83a1d8bd37545f235832bac088c24a3662f6526000000000000000000000000f6f7a57598a11419385df885ff8ea8f1da885dc0000000000000000000000000f930a731f1d22fcbea9d18f82a2154547d85a83b00000000000000000000000020ff7e19c8ff23109eb1661df3b3c4f36ddadf1f0000000000000000000000003db2b10e1e63c52971946de058ff46e0b82ca31c00000000000000000000000046e992299fb47c7ae51af7f0e7984a3f7d44a4000000000000000000000000007956775d58b0420d6962f15a8a4a26711ddce0d2000000000000000000000000921d203a38243e96b90a3d8d326b5bc6e405de87000000000000000000000000d5297395795b65bb8e3198da39d746f408470944000000000000000000000000e5895a0595f13e7f37844c29cad892f5d87f4141000000000000000000000000119f1e0e8afc97f6926cd93372592555cc0801f3000000000000000000000000330bce303d27df0eb1b856da3464278db1db1ac500000000000000000000000036183992fbbb7d759bb4a20e0437cc9725a35b2200000000000000000000000037b7458c5f14822bf423965aed077a20269011c50000000000000000000000007221c13756c635ab806e797ffac94b23e9ef190b00000000000000000000000080212d1d03cb6a12b61cf5e98ca98d30c293127c0000000000000000000000008600bfd5d4af01178e7fed1a26027f6c669c923b000000000000000000000000928733c15891fe359d664658bdd878175cfd6a65000000000000000000000000a5b96927e16652578a756e907b7969aa85d66093000000000000000000000000aa4d086908b0b372124410c484608aa4d40d1902000000000000000000000000c714906d1c65975d312e07389c397ebe42fc16cf000000000000000000000000cafb98282f5ae4aa9083e031981e980cff1d9a79000000000000000000000000dcfc6c486b95e8bf698e04b1ba3a55fbb4b59f3e000000000000000000000000de8899f8cd79f8ffdd38bb38c7c62297dd9e85e9000000000000000000000000000000005e2f9f4a3056c1540b5235475bd1787100000000000000000000000003c402888ae76df943e863e5a9c534ad88f096690000000000000000000000000871e6872f0cdeb32eb013648a76575b4d2dba8000000000000000000000000009c67aaeb8a1ad31f9fe32f962eb878114ad035e0000000000000000000000000a1c6f1638adbe3873c7e8dad6c0e3b08285ba070000000000000000000000000b8912ca14e5687bb297b8056404f8305b2f0b3e0000000000000000000000000e69e89719506fa670a7e2394b9a9f028697ebe50000000000000000000000000ea59c05be4b7149aaed26be764b618ac025564300000000000000000000000015ec3b93ea4cf3beaec81d48590114e75fe355670000000000000000000000001b48611bf4b2e220b0ea743316f88e3ed49c9d5d0000000000000000000000001c83ea2820ebd0b9686ca6c8046ee1c4b2fb916f000000000000000000000000213f6b2680dce3e4d0924acff3e4e34520ef9ba100000000000000000000000029a0f9e047b5cbe49d725a52f5f6a96f56bcbe8f0000000000000000000000002b26f3866dc9a2ecc376dd29398d1d9b639a9a210000000000000000000000003df687694c2bb3b735d1670e98d6e89bb965c94e00000000000000000000000046131b1b4f4470ca4ee8d8b59a29123ea808fd920000000000000000000000004981e6ada1d4695c66912afd21d1b13c4a16373f000000000000000000000000504898f6b355ce3c110a02193726485b1066cbee00000000000000000000000055bc8f5b007b29c5ac09c01796879987f6b55f260000000000000000000000006453ffdcf4ba6393e82897c6cd020b5e12dc5bac00000000000000000000000068ca5862e86a235b7c89a8c1cbf82bc91e8528b10000000000000000000000007106e9b712fa396941a023186011ebbd7d0c201e0000000000000000000000007424c2f6a6080ee56c5a0cb37540c424217de5b100000000000000000000000076ef45f256587238ae279e957cc5e84bb3b3aaf10000000000000000000000007704b95d00e01016be164a32ad37a20ae8234b8900000000000000000000000077285532db978b1b53e35c06d2dacd622f55cc310000000000000000000000007cd74f426caa3492fcaabfa8db9db2bf4eb5cb540000000000000000000000007e3b9e461d1ccd4d0ec4cf09fc1de9d6d4e335ac000000000000000000000000805394f229fff1a1465ada6134e4a789576f961b000000000000000000000000861364d1c3e7b43655abd9a913f6a8b4a1e32a7d0000000000000000000000008fb60a67b67f3b5462bafb208713660dba622be900000000000000000000000093880130c79953e5d63d44a61bd9675243524a0800000000000000000000000096e32dd09ff875fac038d41181cfbb2224a4573a000000000000000000000000977c585acb0400ec97bc758ebe6c8e697c3464ec000000000000000000000000983b0bf79af51df81e4e7da165d0b6f6335dc5b20000000000000000000000009e57a685f5843090a79a01ce6947a82eada9edf10000000000000000000000009e9cd841844c804a5a389c2b6ff4224178599aee0000000000000000000000009ee5e3ff06425cf972e77c195f70ecb18ac23d7f000000000000000000000000a30eb1520cfa84f31f2021621d5ae27857d5bbf6000000000000000000000000a531c38692193b8f454e756d550384118662ef95000000000000000000000000c2a886a097159e6f818f456816c049719e74118a000000000000000000000000c532d0121275f906b98e12575de11c5ccfafcfff000000000000000000000000cf673998596705f7c79d9771399fde2cc27f3b62000000000000000000000000de9a3a648b9804a5d649cf32bf08e64e4ef4416f000000000000000000000000eaf03cd48f9b6b5b9c776c1517ff5fdb958dc94e000000000000000000000000ef355176ef1a8d63fc781b138bd3c0ff8d2e9d35000000000000000000000000ef7b628068e6bc8605461f4f512355cd149e41aa000000000000000000000000f5ab6a09729232b1d5d0e44a69879cf531eb449a000000000000000000000000fc58ab0c3d7810b05af4b347653dab8187e22c1b00000000000000000000000000000000000000000000000000000000000000237773733a2f2f6d61696e2d6c696768742e6574682e6c696e6b706f6f6c2e696f2f77730000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063bc262b63116100a0578063e8a3d4851161006f578063e8a3d485146106a3578063e985e9c5146106ce578063f2fde38b1461070b578063f7beb98a14610734578063ffe53cfe1461074b576101ee565b8063bc262b63146105e9578063c034eea614610626578063c87b56dd1461063d578063cfc205a51461067a576101ee565b80638da5cb5b116100dc5780638da5cb5b1461054157806395d89b411461056c578063a22cb46514610597578063b88d4fde146105c0576101ee565b806370a08231146104ab578063715018a6146104e8578063726d6a10146104ff5780637e5cd5c11461052a576101ee565b80632e94901f11610185578063441f06ac11610154578063441f06ac146103ef5780634cbf54691461041a5780636352211e14610443578063659b70c814610480576101ee565b80632e94901f1461035b57806333e7caeb146103845780633ccfd60b146103af57806342842e0e146103c6576101ee565b80631249c58b116101c15780631249c58b146102c15780631935693a146102cb57806323b872dd146102f45780632d8e58911461031d576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612688565b610776565b60405161022791906126d0565b60405180910390f35b34801561023c57600080fd5b50610245610858565b604051610252919061277b565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906127d3565b6108ea565b60405161028f9190612841565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612888565b610930565b005b6102c9610a47565b005b3480156102d757600080fd5b506102f260048036038101906102ed91906129fd565b610d44565b005b34801561030057600080fd5b5061031b60048036038101906103169190612a46565b610d5f565b005b34801561032957600080fd5b50610344600480360381019061033f91906127d3565b610dbf565b604051610352929190612ac1565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d9190612aea565b610df3565b005b34801561039057600080fd5b50610399610e3f565b6040516103a69190612841565b60405180910390f35b3480156103bb57600080fd5b506103c4610e65565b005b3480156103d257600080fd5b506103ed60048036038101906103e89190612a46565b610eb6565b005b3480156103fb57600080fd5b50610404610ed6565b60405161041191906126d0565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190612b43565b610ee9565b005b34801561044f57600080fd5b5061046a600480360381019061046591906127d3565b610f5d565b6040516104779190612841565b60405180910390f35b34801561048c57600080fd5b5061049561100e565b6040516104a2919061277b565b60405180910390f35b3480156104b757600080fd5b506104d260048036038101906104cd9190612aea565b61109c565b6040516104df9190612b96565b60405180910390f35b3480156104f457600080fd5b506104fd611153565b005b34801561050b57600080fd5b50610514611167565b6040516105219190612841565b60405180910390f35b34801561053657600080fd5b5061053f61118d565b005b34801561054d57600080fd5b506105566111cd565b6040516105639190612841565b60405180910390f35b34801561057857600080fd5b506105816111f7565b60405161058e919061277b565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190612bdd565b611289565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612cbe565b61129f565b005b3480156105f557600080fd5b50610610600480360381019061060b9190612aea565b611301565b60405161061d91906126d0565b60405180910390f35b34801561063257600080fd5b5061063b611321565b005b34801561064957600080fd5b50610664600480360381019061065f91906127d3565b611346565b604051610671919061277b565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c9190612aea565b611500565b005b3480156106af57600080fd5b506106b861154c565b6040516106c5919061277b565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190612d41565b6115a0565b60405161070291906126d0565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d9190612aea565b611634565b005b34801561074057600080fd5b506107496116b7565b005b34801561075757600080fd5b506107606116f7565b60405161076d91906126d0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085157506108508261170a565b5b9050919050565b60606000805461086790612db0565b80601f016020809104026020016040519081016040528092919081815260200182805461089390612db0565b80156108e05780601f106108b5576101008083540402835291602001916108e0565b820191906000526020600020905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b60006108f582611774565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093b82610f5d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a290612e53565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ca6117bf565b73ffffffffffffffffffffffffffffffffffffffff1614806109f957506109f8816109f36117bf565b6115a0565b5b610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90612ee5565b60405180910390fd5b610a4283836117c7565b505050565b67016345785d8a0000341015610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990612f51565b60405180910390fd5b61020060078054905010610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad290612fe3565b60405180910390fd5b600a60149054906101000a900460ff16610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b219061304f565b60405180910390fd5b600960009054906101000a900460ff16610bcb57600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc1906130e1565b60405180910390fd5b5b600060076001600780549050610be19190613130565b81548110610bf257610bf1613164565b5b906000526020600020906002020160000154905043600182610c149190613193565b10610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b9061325f565b60405180910390fd5b600061010043610c649190613130565b9050818111610c7d57600182610c7a9190613193565b90505b600760405180604001604052808381526020018340815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050610cef336001600780549050610cea9190613130565b611880565b6000610100600780549050610d0491906132ae565b03610d40576000600960006101000a81548160ff0219169083151502179055506000600a60146101000a81548160ff0219169083151502179055505b5050565b610d4c611a59565b80600b9081610d5b919061348b565b5050565b610d70610d6a6117bf565b82611ad7565b610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906135cf565b60405180910390fd5b610dba838383611b6c565b505050565b60078181548110610dcf57600080fd5b90600052602060002090600202016000915090508060000154908060010154905082565b610dfb611a59565b80600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e6d611a59565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610eb3573d6000803e3d6000fd5b50565b610ed18383836040518060200160405280600081525061129f565b505050565b600960009054906101000a900460ff1681565b610ef1611a59565b600083118015610f015750600c83105b610f0a57600080fd5b60405180604001604052808381526020018281525060078481548110610f3357610f32613164565b5b90600052602060002090600202016000820151816000015560208201518160010155905050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc9061363b565b60405180910390fd5b80915050919050565b600b805461101b90612db0565b80601f016020809104026020016040519081016040528092919081815260200182805461104790612db0565b80156110945780601f1061106957610100808354040283529160200191611094565b820191906000526020600020905b81548152906001019060200180831161107757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611103906136cd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61115b611a59565b6111656000611dd2565b565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611195611a59565b6000600a60146101000a81548160ff0219169083151502179055506000600960006101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461120690612db0565b80601f016020809104026020016040519081016040528092919081815260200182805461123290612db0565b801561127f5780601f106112545761010080835404028352916020019161127f565b820191906000526020600020905b81548152906001019060200180831161126257829003601f168201915b5050505050905090565b61129b6112946117bf565b8383611e98565b5050565b6112b06112aa6117bf565b83611ad7565b6112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e6906135cf565b60405180910390fd5b6112fb84848484612004565b50505050565b60086020528060005260406000206000915054906101000a900460ff1681565b611329611a59565b6001600a60146101000a81548160ff021916908315150217905550565b6060806060600084036113fe57600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bf3c908a600b6040518263ffffffff1660e01b81526004016113af91906137e3565b600060405180830381865afa1580156113cc573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906113f59190613894565b925050506114fb565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bf3c908a61146a6007878154811061145357611452613164565b5b906000526020600020906002020160000154612060565b6007878154811061147e5761147d613164565b5b906000526020600020906002020160010154600b6040518463ffffffff1660e01b81526004016114b0939291906138dd565b600060405180830381865afa1580156114cd573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906114f69190613894565b925050505b919050565b611508611a59565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600061157861155b6111cd565b73ffffffffffffffffffffffffffffffffffffffff1660146121c0565b6040516020016115889190613b29565b60405160208183030381529060405290508091505090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61163c611a59565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613bc8565b60405180910390fd5b6116b481611dd2565b50565b6116bf611a59565b6001600a60146101000a81548160ff0219169083151502179055506001600960006101000a81548160ff021916908315150217905550565b600a60149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61177d816123fc565b6117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b39061363b565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661183a83610f5d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690613c34565b60405180910390fd5b6118f8816123fc565b15611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90613ca0565b60405180910390fd5b61194460008383612468565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119949190613193565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a556000838361246d565b5050565b611a616117bf565b73ffffffffffffffffffffffffffffffffffffffff16611a7f6111cd565b73ffffffffffffffffffffffffffffffffffffffff1614611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90613d0c565b60405180910390fd5b565b600080611ae383610f5d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b255750611b2481856115a0565b5b80611b6357508373ffffffffffffffffffffffffffffffffffffffff16611b4b846108ea565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b8c82610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990613d9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890613e30565b60405180910390fd5b611c5c838383612468565b611c676000826117c7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb79190613130565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0e9190613193565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dcd83838361246d565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613e9c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ff791906126d0565b60405180910390a3505050565b61200f848484611b6c565b61201b84848484612472565b61205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190613f2e565b60405180910390fd5b50505050565b6060600082036120a7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121bb565b600082905060005b600082146120d95780806120c290613f4e565b915050600a826120d29190613f96565b91506120af565b60008167ffffffffffffffff8111156120f5576120f46128d2565b5b6040519080825280601f01601f1916602001820160405280156121275781602001600182028036833780820191505090505b5090505b600085146121b4576001826121409190613130565b9150600a8561214f91906132ae565b603061215b9190613193565b60f81b81838151811061217157612170613164565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121ad9190613f96565b945061212b565b8093505050505b919050565b6060600060028360026121d39190613fc7565b6121dd9190613193565b67ffffffffffffffff8111156121f6576121f56128d2565b5b6040519080825280601f01601f1916602001820160405280156122285781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106122605761225f613164565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106122c4576122c3613164565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026123049190613fc7565b61230e9190613193565b90505b60018111156123ae577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106123505761234f613164565b5b1a60f81b82828151811061236757612366613164565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806123a790614021565b9050612311565b50600084146123f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e990614096565b60405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b60006124938473ffffffffffffffffffffffffffffffffffffffff166125f9565b156125ec578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124bc6117bf565b8786866040518563ffffffff1660e01b81526004016124de949392919061410b565b6020604051808303816000875af192505050801561251a57506040513d601f19601f82011682018060405250810190612517919061416c565b60015b61259c573d806000811461254a576040519150601f19603f3d011682016040523d82523d6000602084013e61254f565b606091505b506000815103612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90613f2e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125f1565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61266581612630565b811461267057600080fd5b50565b6000813590506126828161265c565b92915050565b60006020828403121561269e5761269d612626565b5b60006126ac84828501612673565b91505092915050565b60008115159050919050565b6126ca816126b5565b82525050565b60006020820190506126e560008301846126c1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561272557808201518184015260208101905061270a565b60008484015250505050565b6000601f19601f8301169050919050565b600061274d826126eb565b61275781856126f6565b9350612767818560208601612707565b61277081612731565b840191505092915050565b600060208201905081810360008301526127958184612742565b905092915050565b6000819050919050565b6127b08161279d565b81146127bb57600080fd5b50565b6000813590506127cd816127a7565b92915050565b6000602082840312156127e9576127e8612626565b5b60006127f7848285016127be565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061282b82612800565b9050919050565b61283b81612820565b82525050565b60006020820190506128566000830184612832565b92915050565b61286581612820565b811461287057600080fd5b50565b6000813590506128828161285c565b92915050565b6000806040838503121561289f5761289e612626565b5b60006128ad85828601612873565b92505060206128be858286016127be565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61290a82612731565b810181811067ffffffffffffffff82111715612929576129286128d2565b5b80604052505050565b600061293c61261c565b90506129488282612901565b919050565b600067ffffffffffffffff821115612968576129676128d2565b5b61297182612731565b9050602081019050919050565b82818337600083830152505050565b60006129a061299b8461294d565b612932565b9050828152602081018484840111156129bc576129bb6128cd565b5b6129c784828561297e565b509392505050565b600082601f8301126129e4576129e36128c8565b5b81356129f484826020860161298d565b91505092915050565b600060208284031215612a1357612a12612626565b5b600082013567ffffffffffffffff811115612a3157612a3061262b565b5b612a3d848285016129cf565b91505092915050565b600080600060608486031215612a5f57612a5e612626565b5b6000612a6d86828701612873565b9350506020612a7e86828701612873565b9250506040612a8f868287016127be565b9150509250925092565b612aa28161279d565b82525050565b6000819050919050565b612abb81612aa8565b82525050565b6000604082019050612ad66000830185612a99565b612ae36020830184612ab2565b9392505050565b600060208284031215612b0057612aff612626565b5b6000612b0e84828501612873565b91505092915050565b612b2081612aa8565b8114612b2b57600080fd5b50565b600081359050612b3d81612b17565b92915050565b600080600060608486031215612b5c57612b5b612626565b5b6000612b6a868287016127be565b9350506020612b7b868287016127be565b9250506040612b8c86828701612b2e565b9150509250925092565b6000602082019050612bab6000830184612a99565b92915050565b612bba816126b5565b8114612bc557600080fd5b50565b600081359050612bd781612bb1565b92915050565b60008060408385031215612bf457612bf3612626565b5b6000612c0285828601612873565b9250506020612c1385828601612bc8565b9150509250929050565b600067ffffffffffffffff821115612c3857612c376128d2565b5b612c4182612731565b9050602081019050919050565b6000612c61612c5c84612c1d565b612932565b905082815260208101848484011115612c7d57612c7c6128cd565b5b612c8884828561297e565b509392505050565b600082601f830112612ca557612ca46128c8565b5b8135612cb5848260208601612c4e565b91505092915050565b60008060008060808587031215612cd857612cd7612626565b5b6000612ce687828801612873565b9450506020612cf787828801612873565b9350506040612d08878288016127be565b925050606085013567ffffffffffffffff811115612d2957612d2861262b565b5b612d3587828801612c90565b91505092959194509250565b60008060408385031215612d5857612d57612626565b5b6000612d6685828601612873565b9250506020612d7785828601612873565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dc857607f821691505b602082108103612ddb57612dda612d81565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e3d6021836126f6565b9150612e4882612de1565b604082019050919050565b60006020820190508181036000830152612e6c81612e30565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612ecf603e836126f6565b9150612eda82612e73565b604082019050919050565b60006020820190508181036000830152612efe81612ec2565b9050919050565b7f6d696e696d756d206d696e74207072696365206e6f7420726561636865640000600082015250565b6000612f3b601e836126f6565b9150612f4682612f05565b602082019050919050565b60006020820190508181036000830152612f6a81612f2e565b9050919050565b7f546865206d6178696d756d206e756d626572206f66206d696e7473206973203560008201527f3132000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fcd6022836126f6565b9150612fd882612f71565b604082019050919050565b60006020820190508181036000830152612ffc81612fc0565b9050919050565b7f4e6f206d696e74696e672069732063757272656e746c7920706f737369626c65600082015250565b60006130396020836126f6565b915061304482613003565b602082019050919050565b600060208201905081810360008301526130688161302c565b9050919050565b7f4d696e74696e672069732063757272656e746c79206e6f74206f70656e20746f60008201527f20746865207075626c6963000000000000000000000000000000000000000000602082015250565b60006130cb602b836126f6565b91506130d68261306f565b604082019050919050565b600060208201905081810360008301526130fa816130be565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061313b8261279d565b91506131468361279d565b925082820390508181111561315e5761315d613101565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061319e8261279d565b91506131a98361279d565b92508282019050808211156131c1576131c0613101565b5b92915050565b7f206e6f206d6f726520626c6f636b7320617661696c61626c652072696768742060008201527f6e6f772c207761697420666f7220746865206e65787420626c6f636b20746f2060208201527f62652070726f6365737365640000000000000000000000000000000000000000604082015250565b6000613249604c836126f6565b9150613254826131c7565b606082019050919050565b600060208201905081810360008301526132788161323c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132b98261279d565b91506132c48361279d565b9250826132d4576132d361327f565b5b828206905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026133417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613304565b61334b8683613304565b95508019841693508086168417925050509392505050565b6000819050919050565b600061338861338361337e8461279d565b613363565b61279d565b9050919050565b6000819050919050565b6133a28361336d565b6133b66133ae8261338f565b848454613311565b825550505050565b600090565b6133cb6133be565b6133d6818484613399565b505050565b5b818110156133fa576133ef6000826133c3565b6001810190506133dc565b5050565b601f82111561343f57613410816132df565b613419846132f4565b81016020851015613428578190505b61343c613434856132f4565b8301826133db565b50505b505050565b600082821c905092915050565b600061346260001984600802613444565b1980831691505092915050565b600061347b8383613451565b9150826002028217905092915050565b613494826126eb565b67ffffffffffffffff8111156134ad576134ac6128d2565b5b6134b78254612db0565b6134c28282856133fe565b600060209050601f8311600181146134f557600084156134e3578287015190505b6134ed858261346f565b865550613555565b601f198416613503866132df565b60005b8281101561352b57848901518255600182019150602085019450602081019050613506565b868310156135485784890151613544601f891682613451565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006135b9602e836126f6565b91506135c48261355d565b604082019050919050565b600060208201905081810360008301526135e8816135ac565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006136256018836126f6565b9150613630826135ef565b602082019050919050565b6000602082019050818103600083015261365481613618565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006136b76029836126f6565b91506136c28261365b565b604082019050919050565b600060208201905081810360008301526136e6816136aa565b9050919050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b60006137236001836126f6565b915061372e826136ed565b602082019050919050565b7f3000000000000000000000000000000000000000000000000000000000000000815250565b6000815461376c81612db0565b61377681866126f6565b9450600182166000811461379157600181146137a7576137da565b60ff1983168652811515602002860193506137da565b6137b0856132df565b60005b838110156137d2578154818901526001820191506020810190506137b3565b808801955050505b50505092915050565b600060608201905081810360008301526137fc81613716565b905061380a60208301613739565b818103604083015261381c818461375f565b905092915050565b60006138376138328461294d565b612932565b905082815260208101848484011115613853576138526128cd565b5b61385e848285612707565b509392505050565b600082601f83011261387b5761387a6128c8565b5b815161388b848260208601613824565b91505092915050565b6000602082840312156138aa576138a9612626565b5b600082015167ffffffffffffffff8111156138c8576138c761262b565b5b6138d484828501613866565b91505092915050565b600060608201905081810360008301526138f78186612742565b90506139066020830185612ab2565b8181036040830152613918818461375f565b9050949350505050565b600081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c7b2264657360008201527f6372697074696f6e223a22456e74726f707920697320612076697375616c207260208201527f6570726573656e746174696f6e206f6620456e74726f707920696e637265617360408201527f696e67206f6e2074686520626c6f636b636861696e2e222c226e616d65223a2060608201527f22456e74726f7079222c22696d616765223a202268747470733a2f2f6172776560808201527f6176652e6e65742f6447556567313237336d317169486634594162495055785260a08201527f7943686774464539425977364175694d723955222c2265787465726e616c5f6c60c08201527f696e6b223a2022222c2273656c6c65725f6665655f62617369735f706f696e7460e08201527f73223a203530302c226665655f726563697069656e74223a202200000000000061010082015250565b6000613a9561011a83613922565b9150613aa08261392d565b61011a82019050919050565b6000613ab7826126eb565b613ac18185613922565b9350613ad1818560208601612707565b80840191505092915050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b6000613b13600283613922565b9150613b1e82613add565b600282019050919050565b6000613b3482613a87565b9150613b408284613aac565b9150613b4b82613b06565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bb26026836126f6565b9150613bbd82613b56565b604082019050919050565b60006020820190508181036000830152613be181613ba5565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613c1e6020836126f6565b9150613c2982613be8565b602082019050919050565b60006020820190508181036000830152613c4d81613c11565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613c8a601c836126f6565b9150613c9582613c54565b602082019050919050565b60006020820190508181036000830152613cb981613c7d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cf66020836126f6565b9150613d0182613cc0565b602082019050919050565b60006020820190508181036000830152613d2581613ce9565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613d886025836126f6565b9150613d9382613d2c565b604082019050919050565b60006020820190508181036000830152613db781613d7b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e1a6024836126f6565b9150613e2582613dbe565b604082019050919050565b60006020820190508181036000830152613e4981613e0d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e866019836126f6565b9150613e9182613e50565b602082019050919050565b60006020820190508181036000830152613eb581613e79565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f186032836126f6565b9150613f2382613ebc565b604082019050919050565b60006020820190508181036000830152613f4781613f0b565b9050919050565b6000613f598261279d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f8b57613f8a613101565b5b600182019050919050565b6000613fa18261279d565b9150613fac8361279d565b925082613fbc57613fbb61327f565b5b828204905092915050565b6000613fd28261279d565b9150613fdd8361279d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561401657614015613101565b5b828202905092915050565b600061402c8261279d565b91506000820361403f5761403e613101565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006140806020836126f6565b915061408b8261404a565b602082019050919050565b600060208201905081810360008301526140af81614073565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006140dd826140b6565b6140e781856140c1565b93506140f7818560208601612707565b61410081612731565b840191505092915050565b60006080820190506141206000830187612832565b61412d6020830186612832565b61413a6040830185612a99565b818103606083015261414c81846140d2565b905095945050505050565b6000815190506141668161265c565b92915050565b60006020828403121561418257614181612626565b5b600061419084828501614157565b9150509291505056fea2646970667358221220f39d5b4cbbe49f15ee4905f8f78f8fe4d77886f29612be63a6dbd8a6d91df59464736f6c63430008100033

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

000000000000000000000000f892f321ffaf3b6fb69a0049ac6c165701b1e4fe0000000000000000000000009eeff11be65ccd7711e6565b95162ea2f66bb4d200000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000f4000000000000000000000000000000000000000000000000000000000000000750000000000000000000000005810c4be53bc8a052c2ae7ee82f52d5cc8b0d5f0000000000000000000000000c1980a8cf3b17788e71e542e6eec73930cfa291000000000000000000000000005bd8f2f46a7f4f020419e7ab037694d3f64dbf000000000000000000000000012709eba6f4db2df2faf25bae08a2fb1de01be6d0000000000000000000000001979e183cb163f6b57561cf2dd02e5411c3a187a0000000000000000000000002e4558b70c0b07c643bcb3f94059f811f478012d00000000000000000000000034a32ad4ba1ea1eb02ccd3ed5b9af9a8d8ea07a8000000000000000000000000464c3ac1a6a3ef9a9e22f99877d4b3640b10510c0000000000000000000000004eebcd8fe44b9a78b6bd8c8c9179884ae4e4798200000000000000000000000053fad1623bc32399dcabcc2164e57e1bc549593d00000000000000000000000069a55d7dd72178077b2f781fd1b29036d1f1322f0000000000000000000000006aa4ae7d21db2c50f026615d1ff42e8447aaa46e0000000000000000000000006d5b0bc61c26b8ab6312627f19b55ca29367948400000000000000000000000077d38e690a35b376dd99bf9b3ae8cb0d9e9fd2e600000000000000000000000085fe8c837115322425de9c92b1db621a4b0f67c3000000000000000000000000a3d83ca657170c10f50c81cf49b1e86a81f0e815000000000000000000000000a551b27aeb7e6cb6a8ee60a0774eec8ba14a47d8000000000000000000000000a75747d5bd207d4cdb5d403502f39257a10804ea000000000000000000000000a95fac243ff531ccb3e0f4bfbb2505e7305361a3000000000000000000000000c29bac5c55885cdec09df981ed440dd039b17d41000000000000000000000000c6ce3202b4c5da7db2736e92383f6405afb57715000000000000000000000000c9df79fe514b75cc9f372cd32c8ee6ebda699bb4000000000000000000000000d1eddfcc4596cc8bd0bd7495beab9b979fc50336000000000000000000000000d901f610fe9f499805205533c3639921962991f5000000000000000000000000d91dc7c83bd01b91cb25019dfc4e35bc6faab814000000000000000000000000dcdb88f3754b2841093d9348a2d02df8cf06314c000000000000000000000000e2c11fea6f41383743683a873fcf61473e662594000000000000000000000000f4985abefd0cd9c55a1af367ba696255f350f28a0000000000000000000000001fd6d74f990a0cb491542e42a1526f13a14495100000000000000000000000002cb3cd0b3338479a59da6b55e05a751bf0da93470000000000000000000000002fa9e3da421962ee6f66de60e66cc0cafb37c72100000000000000000000000051e6f5560c7ac0ab63fa4e0f77375172d6775ab5000000000000000000000000d96e4f06ecf50cb3be57138b1560a92b9337281900000000000000000000000014e9e4f62a085750b874863c7ece73b2c89cd1c200000000000000000000000025a5617267cd2866ccb5d475ddcbfcf7a7ae3a7a00000000000000000000000046fe447c4d5b3f65e4854fe5ef6af6315087c7c20000000000000000000000004afbfb0a64bbe9837f78fb2b262cf105076715cf000000000000000000000000568022ee46ed6f338e16153e51ee1a0d603e639e00000000000000000000000057ae265eab27498113b6d0bd3e63ad9ce36512b000000000000000000000000078773a9977bdc34e3034d5f0247490e602392a1b000000000000000000000000d94ad07955fa0d02f8c466820643b609c3734f5b000000000000000000000000ec4133064ca105406d560865a1cf8080b97b6f3f000000000000000000000000f777af5cfa7a0f242b3e0cf7fff4823c15dde70f0000000000000000000000009fb42f1a18c054b983b736eab5974df1aa7b284e000000000000000000000000d83a1d8bd37545f235832bac088c24a3662f6526000000000000000000000000f6f7a57598a11419385df885ff8ea8f1da885dc0000000000000000000000000f930a731f1d22fcbea9d18f82a2154547d85a83b00000000000000000000000020ff7e19c8ff23109eb1661df3b3c4f36ddadf1f0000000000000000000000003db2b10e1e63c52971946de058ff46e0b82ca31c00000000000000000000000046e992299fb47c7ae51af7f0e7984a3f7d44a4000000000000000000000000007956775d58b0420d6962f15a8a4a26711ddce0d2000000000000000000000000921d203a38243e96b90a3d8d326b5bc6e405de87000000000000000000000000d5297395795b65bb8e3198da39d746f408470944000000000000000000000000e5895a0595f13e7f37844c29cad892f5d87f4141000000000000000000000000119f1e0e8afc97f6926cd93372592555cc0801f3000000000000000000000000330bce303d27df0eb1b856da3464278db1db1ac500000000000000000000000036183992fbbb7d759bb4a20e0437cc9725a35b2200000000000000000000000037b7458c5f14822bf423965aed077a20269011c50000000000000000000000007221c13756c635ab806e797ffac94b23e9ef190b00000000000000000000000080212d1d03cb6a12b61cf5e98ca98d30c293127c0000000000000000000000008600bfd5d4af01178e7fed1a26027f6c669c923b000000000000000000000000928733c15891fe359d664658bdd878175cfd6a65000000000000000000000000a5b96927e16652578a756e907b7969aa85d66093000000000000000000000000aa4d086908b0b372124410c484608aa4d40d1902000000000000000000000000c714906d1c65975d312e07389c397ebe42fc16cf000000000000000000000000cafb98282f5ae4aa9083e031981e980cff1d9a79000000000000000000000000dcfc6c486b95e8bf698e04b1ba3a55fbb4b59f3e000000000000000000000000de8899f8cd79f8ffdd38bb38c7c62297dd9e85e9000000000000000000000000000000005e2f9f4a3056c1540b5235475bd1787100000000000000000000000003c402888ae76df943e863e5a9c534ad88f096690000000000000000000000000871e6872f0cdeb32eb013648a76575b4d2dba8000000000000000000000000009c67aaeb8a1ad31f9fe32f962eb878114ad035e0000000000000000000000000a1c6f1638adbe3873c7e8dad6c0e3b08285ba070000000000000000000000000b8912ca14e5687bb297b8056404f8305b2f0b3e0000000000000000000000000e69e89719506fa670a7e2394b9a9f028697ebe50000000000000000000000000ea59c05be4b7149aaed26be764b618ac025564300000000000000000000000015ec3b93ea4cf3beaec81d48590114e75fe355670000000000000000000000001b48611bf4b2e220b0ea743316f88e3ed49c9d5d0000000000000000000000001c83ea2820ebd0b9686ca6c8046ee1c4b2fb916f000000000000000000000000213f6b2680dce3e4d0924acff3e4e34520ef9ba100000000000000000000000029a0f9e047b5cbe49d725a52f5f6a96f56bcbe8f0000000000000000000000002b26f3866dc9a2ecc376dd29398d1d9b639a9a210000000000000000000000003df687694c2bb3b735d1670e98d6e89bb965c94e00000000000000000000000046131b1b4f4470ca4ee8d8b59a29123ea808fd920000000000000000000000004981e6ada1d4695c66912afd21d1b13c4a16373f000000000000000000000000504898f6b355ce3c110a02193726485b1066cbee00000000000000000000000055bc8f5b007b29c5ac09c01796879987f6b55f260000000000000000000000006453ffdcf4ba6393e82897c6cd020b5e12dc5bac00000000000000000000000068ca5862e86a235b7c89a8c1cbf82bc91e8528b10000000000000000000000007106e9b712fa396941a023186011ebbd7d0c201e0000000000000000000000007424c2f6a6080ee56c5a0cb37540c424217de5b100000000000000000000000076ef45f256587238ae279e957cc5e84bb3b3aaf10000000000000000000000007704b95d00e01016be164a32ad37a20ae8234b8900000000000000000000000077285532db978b1b53e35c06d2dacd622f55cc310000000000000000000000007cd74f426caa3492fcaabfa8db9db2bf4eb5cb540000000000000000000000007e3b9e461d1ccd4d0ec4cf09fc1de9d6d4e335ac000000000000000000000000805394f229fff1a1465ada6134e4a789576f961b000000000000000000000000861364d1c3e7b43655abd9a913f6a8b4a1e32a7d0000000000000000000000008fb60a67b67f3b5462bafb208713660dba622be900000000000000000000000093880130c79953e5d63d44a61bd9675243524a0800000000000000000000000096e32dd09ff875fac038d41181cfbb2224a4573a000000000000000000000000977c585acb0400ec97bc758ebe6c8e697c3464ec000000000000000000000000983b0bf79af51df81e4e7da165d0b6f6335dc5b20000000000000000000000009e57a685f5843090a79a01ce6947a82eada9edf10000000000000000000000009e9cd841844c804a5a389c2b6ff4224178599aee0000000000000000000000009ee5e3ff06425cf972e77c195f70ecb18ac23d7f000000000000000000000000a30eb1520cfa84f31f2021621d5ae27857d5bbf6000000000000000000000000a531c38692193b8f454e756d550384118662ef95000000000000000000000000c2a886a097159e6f818f456816c049719e74118a000000000000000000000000c532d0121275f906b98e12575de11c5ccfafcfff000000000000000000000000cf673998596705f7c79d9771399fde2cc27f3b62000000000000000000000000de9a3a648b9804a5d649cf32bf08e64e4ef4416f000000000000000000000000eaf03cd48f9b6b5b9c776c1517ff5fdb958dc94e000000000000000000000000ef355176ef1a8d63fc781b138bd3c0ff8d2e9d35000000000000000000000000ef7b628068e6bc8605461f4f512355cd149e41aa000000000000000000000000f5ab6a09729232b1d5d0e44a69879cf531eb449a000000000000000000000000fc58ab0c3d7810b05af4b347653dab8187e22c1b00000000000000000000000000000000000000000000000000000000000000237773733a2f2f6d61696e2d6c696768742e6574682e6c696e6b706f6f6c2e696f2f77730000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : zeroRendererAddress_ (address): 0xF892F321FFaf3B6fB69A0049ac6C165701b1E4Fe
Arg [1] : streamRendererAddress_ (address): 0x9eeFf11Be65Ccd7711e6565b95162eA2f66BB4D2
Arg [2] : frameHolders_ (address[]): 0x5810c4be53bC8A052C2ae7EE82f52D5Cc8B0D5f0,0xc1980A8cf3b17788e71e542E6eEc73930cfA2910,0x05Bd8F2f46a7F4F020419e7aB037694d3f64DBF0,0x12709eBa6f4dB2df2FAf25BaE08A2fB1de01BE6d,0x1979E183cb163F6B57561Cf2DD02E5411C3A187a,0x2e4558B70c0b07c643bcb3F94059f811f478012D,0x34a32Ad4Ba1EA1eB02CCd3ed5B9af9a8D8ea07A8,0x464C3Ac1A6A3ef9a9E22f99877d4B3640B10510c,0x4EeBCD8Fe44B9A78B6bd8C8c9179884AE4E47982,0x53FaD1623bc32399DCABcC2164e57e1Bc549593D,0x69A55D7dD72178077b2F781fd1B29036d1f1322F,0x6aa4Ae7d21Db2c50f026615D1Ff42E8447aAA46E,0x6D5b0bC61c26B8Ab6312627F19b55ca293679484,0x77d38E690A35B376dd99bf9b3AE8cB0D9E9fd2e6,0x85fe8c837115322425dE9C92b1DB621a4B0F67C3,0xA3d83cA657170c10f50c81cf49B1E86A81f0E815,0xA551B27aEB7E6cB6A8ee60A0774eEc8bA14a47d8,0xa75747d5bd207D4Cdb5D403502f39257a10804ea,0xa95Fac243FF531cCb3E0F4bFbb2505E7305361a3,0xc29bAc5c55885CdEC09DF981Ed440Dd039b17D41,0xc6cE3202b4C5DA7DB2736e92383F6405AFB57715,0xC9dF79fE514b75cc9F372cD32C8eE6ebDA699bB4,0xD1edDfcc4596CC8bD0bd7495beaB9B979fc50336,0xd901f610fE9f499805205533c3639921962991F5,0xD91DC7c83bd01b91Cb25019DFc4E35BC6FaaB814,0xdCDb88F3754B2841093D9348A2D02DF8cf06314C,0xE2C11fEa6f41383743683a873Fcf61473e662594,0xF4985AbEFd0Cd9C55A1Af367bA696255f350f28a,0x1Fd6d74F990A0CB491542e42A1526F13a1449510,0x2Cb3cD0b3338479a59Da6b55e05A751BF0da9347,0x2fa9E3DA421962Ee6f66DE60E66cc0caFB37c721,0x51e6f5560C7aC0ab63FA4E0f77375172D6775Ab5,0xD96E4F06eCf50CB3be57138B1560a92B93372819,0x14E9e4F62A085750b874863c7ECe73B2c89CD1C2,0x25A5617267cd2866CcB5D475ddCBfCF7a7AE3a7a,0x46fE447c4d5b3f65e4854FE5ef6Af6315087C7c2,0x4AFbfb0a64bBe9837f78fb2B262cF105076715Cf,0x568022ee46ED6f338e16153E51Ee1A0D603e639e,0x57aE265eAB27498113B6D0Bd3E63ad9cE36512B0,0x78773a9977BDC34E3034d5f0247490E602392a1b,0xd94Ad07955fA0d02F8c466820643B609C3734F5b,0xEc4133064Ca105406d560865a1Cf8080B97B6f3f,0xF777aF5CFa7A0F242b3E0cf7FFF4823C15DDE70f,0x9Fb42f1A18C054b983b736eab5974Df1aa7B284E,0xD83a1D8bd37545f235832bac088c24A3662F6526,0xF6F7a57598A11419385dF885fF8ea8F1da885Dc0,0xf930a731f1d22fcbeA9d18F82A2154547d85a83b,0x20ff7e19c8Ff23109EB1661Df3b3c4f36DDAdF1F,0x3dB2b10E1E63c52971946dE058fF46e0b82cA31C,0x46e992299FB47C7ae51Af7F0e7984a3f7d44A400,0x7956775d58b0420D6962F15A8a4a26711ddcE0d2,0x921D203A38243E96B90a3d8D326b5BC6E405De87,0xD5297395795B65BB8e3198DA39D746F408470944,0xE5895A0595F13E7f37844c29Cad892f5D87f4141,0x119F1e0E8aFC97f6926cD93372592555Cc0801F3,0x330Bce303d27Df0eb1b856Da3464278DB1DB1aC5,0x36183992FbbB7D759Bb4a20E0437cc9725a35B22,0x37b7458C5f14822BF423965aed077a20269011C5,0x7221C13756c635AB806E797ffac94b23e9eF190b,0x80212D1d03CB6A12b61cf5E98cA98D30C293127C,0x8600BFd5d4AF01178E7fED1A26027f6C669C923B,0x928733c15891fe359D664658BDD878175CfD6a65,0xA5B96927e16652578A756E907b7969AA85d66093,0xaa4d086908b0B372124410c484608aa4D40D1902,0xC714906D1C65975d312E07389C397Ebe42FC16Cf,0xCAFB98282F5Ae4aa9083E031981E980CFF1d9A79,0xdcFc6C486B95E8bf698E04b1BA3A55fBb4b59F3e,0xDE8899F8cD79f8FFdD38bB38C7c62297DD9e85e9,0x000000005E2f9f4A3056c1540b5235475bd17871,0x03C402888aE76dF943E863e5a9C534aD88F09669,0x0871E6872f0CdEb32eb013648a76575B4d2dBa80,0x09c67aAEb8A1Ad31f9fe32F962eB878114AD035E,0x0a1c6F1638ADBE3873c7e8Dad6c0E3b08285BA07,0x0B8912cA14E5687BB297b8056404f8305B2F0b3E,0x0E69e89719506Fa670A7e2394B9A9f028697Ebe5,0x0eA59C05BE4b7149AAed26bE764b618AC0255643,0x15EC3b93EA4CF3BeAec81D48590114E75Fe35567,0x1b48611bf4b2E220B0Ea743316F88e3Ed49c9D5D,0x1C83eA2820eBd0b9686CA6C8046eE1C4b2Fb916F,0x213f6b2680dCe3e4d0924ACFf3E4e34520eF9ba1,0x29a0f9E047B5cBE49D725a52f5F6A96F56BCBe8F,0x2b26F3866Dc9a2EcC376DD29398D1D9b639a9a21,0x3dF687694c2bB3B735D1670e98D6E89bB965c94E,0x46131B1b4f4470CA4ee8d8b59a29123Ea808fd92,0x4981E6Ada1D4695C66912Afd21D1B13c4A16373f,0x504898F6B355CE3C110A02193726485b1066cbeE,0x55BC8f5B007b29c5AC09C01796879987F6B55F26,0x6453FfdCf4BA6393E82897c6cd020b5E12dC5bAc,0x68cA5862E86A235B7c89A8C1cbf82BC91e8528b1,0x7106E9b712Fa396941a023186011eBBD7d0C201E,0x7424C2f6A6080ee56C5a0CB37540C424217De5b1,0x76ef45F256587238AE279E957CC5e84Bb3b3AaF1,0x7704B95D00e01016bE164a32ad37a20Ae8234b89,0x77285532Db978B1b53e35c06D2dacd622f55cc31,0x7Cd74f426Caa3492FcaabFa8DB9Db2Bf4EB5CB54,0x7E3b9e461D1Ccd4d0Ec4CF09Fc1De9D6D4e335Ac,0x805394F229FFf1A1465ADa6134E4A789576f961B,0x861364d1c3E7B43655abd9a913F6a8B4a1E32a7D,0x8fB60a67B67f3b5462baFB208713660dBA622BE9,0x93880130C79953E5d63d44a61BD9675243524a08,0x96E32dd09Ff875fac038d41181cFbb2224a4573A,0x977C585acB0400Ec97BC758eBE6C8e697C3464eC,0x983b0bF79af51dF81e4E7dA165d0b6F6335Dc5B2,0x9E57A685F5843090A79A01ce6947a82eAdA9EDf1,0x9e9cd841844c804A5A389c2b6ff4224178599aEe,0x9eE5E3Ff06425CF972E77c195F70Ecb18aC23d7f,0xA30eB1520cFA84F31f2021621d5Ae27857D5BBf6,0xA531c38692193B8F454E756D550384118662eF95,0xc2A886A097159E6f818f456816c049719e74118a,0xc532D0121275f906b98e12575de11C5cCfafCFfF,0xCf673998596705F7C79D9771399FDe2Cc27f3B62,0xDe9A3a648b9804A5D649cF32bf08E64e4eF4416F,0xeaf03CD48f9B6B5B9C776c1517ff5fdB958dc94e,0xEf355176EF1a8d63FC781B138BD3C0FF8d2E9d35,0xEf7B628068e6BC8605461f4F512355cd149e41aa,0xf5AB6a09729232b1D5D0e44a69879CF531eB449a,0xFc58AB0C3D7810b05af4B347653dAB8187E22c1b
Arg [3] : wsProvider_ (string): wss://main-light.eth.linkpool.io/ws

-----Encoded View---------------
125 Constructor Arguments found :
Arg [0] : 000000000000000000000000f892f321ffaf3b6fb69a0049ac6c165701b1e4fe
Arg [1] : 0000000000000000000000009eeff11be65ccd7711e6565b95162ea2f66bb4d2
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000f40
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000075
Arg [5] : 0000000000000000000000005810c4be53bc8a052c2ae7ee82f52d5cc8b0d5f0
Arg [6] : 000000000000000000000000c1980a8cf3b17788e71e542e6eec73930cfa2910
Arg [7] : 00000000000000000000000005bd8f2f46a7f4f020419e7ab037694d3f64dbf0
Arg [8] : 00000000000000000000000012709eba6f4db2df2faf25bae08a2fb1de01be6d
Arg [9] : 0000000000000000000000001979e183cb163f6b57561cf2dd02e5411c3a187a
Arg [10] : 0000000000000000000000002e4558b70c0b07c643bcb3f94059f811f478012d
Arg [11] : 00000000000000000000000034a32ad4ba1ea1eb02ccd3ed5b9af9a8d8ea07a8
Arg [12] : 000000000000000000000000464c3ac1a6a3ef9a9e22f99877d4b3640b10510c
Arg [13] : 0000000000000000000000004eebcd8fe44b9a78b6bd8c8c9179884ae4e47982
Arg [14] : 00000000000000000000000053fad1623bc32399dcabcc2164e57e1bc549593d
Arg [15] : 00000000000000000000000069a55d7dd72178077b2f781fd1b29036d1f1322f
Arg [16] : 0000000000000000000000006aa4ae7d21db2c50f026615d1ff42e8447aaa46e
Arg [17] : 0000000000000000000000006d5b0bc61c26b8ab6312627f19b55ca293679484
Arg [18] : 00000000000000000000000077d38e690a35b376dd99bf9b3ae8cb0d9e9fd2e6
Arg [19] : 00000000000000000000000085fe8c837115322425de9c92b1db621a4b0f67c3
Arg [20] : 000000000000000000000000a3d83ca657170c10f50c81cf49b1e86a81f0e815
Arg [21] : 000000000000000000000000a551b27aeb7e6cb6a8ee60a0774eec8ba14a47d8
Arg [22] : 000000000000000000000000a75747d5bd207d4cdb5d403502f39257a10804ea
Arg [23] : 000000000000000000000000a95fac243ff531ccb3e0f4bfbb2505e7305361a3
Arg [24] : 000000000000000000000000c29bac5c55885cdec09df981ed440dd039b17d41
Arg [25] : 000000000000000000000000c6ce3202b4c5da7db2736e92383f6405afb57715
Arg [26] : 000000000000000000000000c9df79fe514b75cc9f372cd32c8ee6ebda699bb4
Arg [27] : 000000000000000000000000d1eddfcc4596cc8bd0bd7495beab9b979fc50336
Arg [28] : 000000000000000000000000d901f610fe9f499805205533c3639921962991f5
Arg [29] : 000000000000000000000000d91dc7c83bd01b91cb25019dfc4e35bc6faab814
Arg [30] : 000000000000000000000000dcdb88f3754b2841093d9348a2d02df8cf06314c
Arg [31] : 000000000000000000000000e2c11fea6f41383743683a873fcf61473e662594
Arg [32] : 000000000000000000000000f4985abefd0cd9c55a1af367ba696255f350f28a
Arg [33] : 0000000000000000000000001fd6d74f990a0cb491542e42a1526f13a1449510
Arg [34] : 0000000000000000000000002cb3cd0b3338479a59da6b55e05a751bf0da9347
Arg [35] : 0000000000000000000000002fa9e3da421962ee6f66de60e66cc0cafb37c721
Arg [36] : 00000000000000000000000051e6f5560c7ac0ab63fa4e0f77375172d6775ab5
Arg [37] : 000000000000000000000000d96e4f06ecf50cb3be57138b1560a92b93372819
Arg [38] : 00000000000000000000000014e9e4f62a085750b874863c7ece73b2c89cd1c2
Arg [39] : 00000000000000000000000025a5617267cd2866ccb5d475ddcbfcf7a7ae3a7a
Arg [40] : 00000000000000000000000046fe447c4d5b3f65e4854fe5ef6af6315087c7c2
Arg [41] : 0000000000000000000000004afbfb0a64bbe9837f78fb2b262cf105076715cf
Arg [42] : 000000000000000000000000568022ee46ed6f338e16153e51ee1a0d603e639e
Arg [43] : 00000000000000000000000057ae265eab27498113b6d0bd3e63ad9ce36512b0
Arg [44] : 00000000000000000000000078773a9977bdc34e3034d5f0247490e602392a1b
Arg [45] : 000000000000000000000000d94ad07955fa0d02f8c466820643b609c3734f5b
Arg [46] : 000000000000000000000000ec4133064ca105406d560865a1cf8080b97b6f3f
Arg [47] : 000000000000000000000000f777af5cfa7a0f242b3e0cf7fff4823c15dde70f
Arg [48] : 0000000000000000000000009fb42f1a18c054b983b736eab5974df1aa7b284e
Arg [49] : 000000000000000000000000d83a1d8bd37545f235832bac088c24a3662f6526
Arg [50] : 000000000000000000000000f6f7a57598a11419385df885ff8ea8f1da885dc0
Arg [51] : 000000000000000000000000f930a731f1d22fcbea9d18f82a2154547d85a83b
Arg [52] : 00000000000000000000000020ff7e19c8ff23109eb1661df3b3c4f36ddadf1f
Arg [53] : 0000000000000000000000003db2b10e1e63c52971946de058ff46e0b82ca31c
Arg [54] : 00000000000000000000000046e992299fb47c7ae51af7f0e7984a3f7d44a400
Arg [55] : 0000000000000000000000007956775d58b0420d6962f15a8a4a26711ddce0d2
Arg [56] : 000000000000000000000000921d203a38243e96b90a3d8d326b5bc6e405de87
Arg [57] : 000000000000000000000000d5297395795b65bb8e3198da39d746f408470944
Arg [58] : 000000000000000000000000e5895a0595f13e7f37844c29cad892f5d87f4141
Arg [59] : 000000000000000000000000119f1e0e8afc97f6926cd93372592555cc0801f3
Arg [60] : 000000000000000000000000330bce303d27df0eb1b856da3464278db1db1ac5
Arg [61] : 00000000000000000000000036183992fbbb7d759bb4a20e0437cc9725a35b22
Arg [62] : 00000000000000000000000037b7458c5f14822bf423965aed077a20269011c5
Arg [63] : 0000000000000000000000007221c13756c635ab806e797ffac94b23e9ef190b
Arg [64] : 00000000000000000000000080212d1d03cb6a12b61cf5e98ca98d30c293127c
Arg [65] : 0000000000000000000000008600bfd5d4af01178e7fed1a26027f6c669c923b
Arg [66] : 000000000000000000000000928733c15891fe359d664658bdd878175cfd6a65
Arg [67] : 000000000000000000000000a5b96927e16652578a756e907b7969aa85d66093
Arg [68] : 000000000000000000000000aa4d086908b0b372124410c484608aa4d40d1902
Arg [69] : 000000000000000000000000c714906d1c65975d312e07389c397ebe42fc16cf
Arg [70] : 000000000000000000000000cafb98282f5ae4aa9083e031981e980cff1d9a79
Arg [71] : 000000000000000000000000dcfc6c486b95e8bf698e04b1ba3a55fbb4b59f3e
Arg [72] : 000000000000000000000000de8899f8cd79f8ffdd38bb38c7c62297dd9e85e9
Arg [73] : 000000000000000000000000000000005e2f9f4a3056c1540b5235475bd17871
Arg [74] : 00000000000000000000000003c402888ae76df943e863e5a9c534ad88f09669
Arg [75] : 0000000000000000000000000871e6872f0cdeb32eb013648a76575b4d2dba80
Arg [76] : 00000000000000000000000009c67aaeb8a1ad31f9fe32f962eb878114ad035e
Arg [77] : 0000000000000000000000000a1c6f1638adbe3873c7e8dad6c0e3b08285ba07
Arg [78] : 0000000000000000000000000b8912ca14e5687bb297b8056404f8305b2f0b3e
Arg [79] : 0000000000000000000000000e69e89719506fa670a7e2394b9a9f028697ebe5
Arg [80] : 0000000000000000000000000ea59c05be4b7149aaed26be764b618ac0255643
Arg [81] : 00000000000000000000000015ec3b93ea4cf3beaec81d48590114e75fe35567
Arg [82] : 0000000000000000000000001b48611bf4b2e220b0ea743316f88e3ed49c9d5d
Arg [83] : 0000000000000000000000001c83ea2820ebd0b9686ca6c8046ee1c4b2fb916f
Arg [84] : 000000000000000000000000213f6b2680dce3e4d0924acff3e4e34520ef9ba1
Arg [85] : 00000000000000000000000029a0f9e047b5cbe49d725a52f5f6a96f56bcbe8f
Arg [86] : 0000000000000000000000002b26f3866dc9a2ecc376dd29398d1d9b639a9a21
Arg [87] : 0000000000000000000000003df687694c2bb3b735d1670e98d6e89bb965c94e
Arg [88] : 00000000000000000000000046131b1b4f4470ca4ee8d8b59a29123ea808fd92
Arg [89] : 0000000000000000000000004981e6ada1d4695c66912afd21d1b13c4a16373f
Arg [90] : 000000000000000000000000504898f6b355ce3c110a02193726485b1066cbee
Arg [91] : 00000000000000000000000055bc8f5b007b29c5ac09c01796879987f6b55f26
Arg [92] : 0000000000000000000000006453ffdcf4ba6393e82897c6cd020b5e12dc5bac
Arg [93] : 00000000000000000000000068ca5862e86a235b7c89a8c1cbf82bc91e8528b1
Arg [94] : 0000000000000000000000007106e9b712fa396941a023186011ebbd7d0c201e
Arg [95] : 0000000000000000000000007424c2f6a6080ee56c5a0cb37540c424217de5b1
Arg [96] : 00000000000000000000000076ef45f256587238ae279e957cc5e84bb3b3aaf1
Arg [97] : 0000000000000000000000007704b95d00e01016be164a32ad37a20ae8234b89
Arg [98] : 00000000000000000000000077285532db978b1b53e35c06d2dacd622f55cc31
Arg [99] : 0000000000000000000000007cd74f426caa3492fcaabfa8db9db2bf4eb5cb54
Arg [100] : 0000000000000000000000007e3b9e461d1ccd4d0ec4cf09fc1de9d6d4e335ac
Arg [101] : 000000000000000000000000805394f229fff1a1465ada6134e4a789576f961b
Arg [102] : 000000000000000000000000861364d1c3e7b43655abd9a913f6a8b4a1e32a7d
Arg [103] : 0000000000000000000000008fb60a67b67f3b5462bafb208713660dba622be9
Arg [104] : 00000000000000000000000093880130c79953e5d63d44a61bd9675243524a08
Arg [105] : 00000000000000000000000096e32dd09ff875fac038d41181cfbb2224a4573a
Arg [106] : 000000000000000000000000977c585acb0400ec97bc758ebe6c8e697c3464ec
Arg [107] : 000000000000000000000000983b0bf79af51df81e4e7da165d0b6f6335dc5b2
Arg [108] : 0000000000000000000000009e57a685f5843090a79a01ce6947a82eada9edf1
Arg [109] : 0000000000000000000000009e9cd841844c804a5a389c2b6ff4224178599aee
Arg [110] : 0000000000000000000000009ee5e3ff06425cf972e77c195f70ecb18ac23d7f
Arg [111] : 000000000000000000000000a30eb1520cfa84f31f2021621d5ae27857d5bbf6
Arg [112] : 000000000000000000000000a531c38692193b8f454e756d550384118662ef95
Arg [113] : 000000000000000000000000c2a886a097159e6f818f456816c049719e74118a
Arg [114] : 000000000000000000000000c532d0121275f906b98e12575de11c5ccfafcfff
Arg [115] : 000000000000000000000000cf673998596705f7c79d9771399fde2cc27f3b62
Arg [116] : 000000000000000000000000de9a3a648b9804a5d649cf32bf08e64e4ef4416f
Arg [117] : 000000000000000000000000eaf03cd48f9b6b5b9c776c1517ff5fdb958dc94e
Arg [118] : 000000000000000000000000ef355176ef1a8d63fc781b138bd3c0ff8d2e9d35
Arg [119] : 000000000000000000000000ef7b628068e6bc8605461f4f512355cd149e41aa
Arg [120] : 000000000000000000000000f5ab6a09729232b1d5d0e44a69879cf531eb449a
Arg [121] : 000000000000000000000000fc58ab0c3d7810b05af4b347653dab8187e22c1b
Arg [122] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [123] : 7773733a2f2f6d61696e2d6c696768742e6574682e6c696e6b706f6f6c2e696f
Arg [124] : 2f77730000000000000000000000000000000000000000000000000000000000


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.