ETH Price: $3,508.98 (+0.63%)
Gas: 2 Gwei

Token

LIGHTBULBMAN (LBM)
 

Overview

Max Total Supply

1,025 LBM

Holders

503

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fjutjur.eth
Balance
1 LBM
0xe929bf670f210ab0075a6e50cc8ca7b92341cdb7
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:
Lightbulbman

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

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


contract Lightbulbman is ERC721Enumerable, Ownable, ILightbulbman {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public  supplyLimit = 1122;
    uint256 public  mintPrice;
    uint256 public  startingIndex = 0;
    uint256 public  startingIndexBlock;
    uint8 public maxMint = 3;

    address payable public  withdrawalWallet;

    string private baseURI;

    bool public  saleActive = false;
    bool public  whitelistSaleActive = false;

    mapping(address => uint8) public whitelist;

    // Mapping from token ID to name
    mapping (uint256 => string) public _tokenName;

    // Mapping if certain name string has already been reserved
    mapping (string => bool) private _nameReserved;

    constructor(
        uint256 _mintPrice,
        address payable _withdrawalWallet,
        string memory _ticker,
        string memory _name,
        string memory _baseURI
    ) ERC721(_name, _ticker) {
        mintPrice = _mintPrice.mul(1000000000000000);
        withdrawalWallet = _withdrawalWallet;
        baseURI = _baseURI;
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner  {
        mintPrice = _mintPrice.mul(1000000000000000);
        emit MintPriceChanged(_mintPrice);
    }

    function setWhitelistStatus(address _user, uint8 _maxMint) public onlyOwner  {
        whitelist[_user] = _maxMint;
        emit WhitelistStatusChanged(_user, _maxMint);
    }

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

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

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

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

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

    function withdraw() external onlyOwner   {
        uint256 contractBalance = address(this).balance;
        withdrawalWallet.transfer(contractBalance);
    }
    
    function gift(address[] calldata _walletAddressList, uint8[] calldata _amountList) external onlyOwner  {
        require(totalSupply() < supplyLimit, "Not enough tokens left.");
        require(_walletAddressList.length == _amountList.length, "List lengths not equal.");
        
        for (uint8 listIndex = 0; listIndex < _amountList.length; listIndex++) {
            for (uint8 i = 0; i < _amountList[listIndex]; i++) {
                    uint mintIndex = totalSupply();
                    _safeMint(_walletAddressList[listIndex], mintIndex);
            }
        }
    }

    function buy(uint256 _amount) external  payable {
        require(saleActive, "Sale is not active.");
        require(_amount <= maxMint, "Max mint per Tx is 3.");
        require(msg.value >= mintPrice.mul(_amount), "Insufficient payment.");
        require(totalSupply().add(_amount) <= supplyLimit, "Not enough tokens left.");
        
        for (uint i = 0; i < _amount; i++) {
            uint mintIndex = totalSupply();
            _safeMint(_msgSender(), mintIndex);
        }
    }

    function tokenNameByIndex(uint256 index) public view returns (string memory) {
        return _tokenName[index];
    }

    function isNameReserved(string memory nameString) public view returns (bool) {
        return _nameReserved[nameString];
    }

    function setNameReserved(string memory name) internal {
        _nameReserved[toLower(name)] = true;
    }

    function setLightbulbmanName(uint256 tokenId, string memory _name) external {
        address owner = ownerOf(tokenId);

        require(_msgSender() == owner, "Not the owner of this LBM");
        require(validateName(_name), "Invalid name");
        require(bytes(_tokenName[tokenId]).length == 0, "Name is already set!");
        require(isNameReserved(_name) == false, "Name is already taken");

        _tokenName[tokenId] = _name;
        emit NameChange(tokenId, _name);
    }

    function getStartingIndex() public view returns(uint256) {
        return startingIndex;
    }

    function finalizeStartingIndex() external onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        startingIndex = uint(blockhash(block.number-1)) % supplyLimit;

        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
        emit FinalizeStartingIndex(startingIndex);
    }

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

        uint tokenIndex = (_tokenId + startingIndex)%supplyLimit;

        return (bytes(baseURI).length > 0 && startingIndex > 0) ? 
            string(abi.encodePacked(baseURI, tokenIndex.toString())) : string(abi.encodePacked(baseURI));
    }

    function whitelistBuy(uint8 _amount) external payable  {
        require(whitelistSaleActive, "Whitelist sale is not Active.");
        require(msg.value >= mintPrice.mul(_amount), "Insufficient payment.");
        require(whitelist[_msgSender()] >= _amount, "You are not whitelisted."); 

        for (uint i = 0; i < _amount; i++) {
            uint mintIndex = totalSupply();
            _safeMint(_msgSender(), mintIndex);
        }
        whitelist[_msgSender()] -= _amount;
        
    }

    function toLower(string memory str) public pure returns (string memory){
        bytes memory bStr = bytes(str);
        bytes memory bLower = new bytes(bStr.length);
        for (uint i = 0; i < bStr.length; i++) {
            // Uppercase character
            if ((uint8(bStr[i]) >= 65) && (uint8(bStr[i]) <= 90)) {
                bLower[i] = bytes1(uint8(bStr[i]) + 32);
            } else {
                bLower[i] = bStr[i];
            }
        }
        return string(bLower);
    }

    function validateName(string memory str) public pure returns (bool){
        bytes memory b = bytes(str);
        if(b.length < 1) return false;
        if(b.length > 25) return false; // Cannot be longer than 25 characters
        if(b[0] == 0x20) return false; // Leading space
        if (b[b.length - 1] == 0x20) return false; // Trailing space

        return true;
    }
}

File 2 of 15 : ILightbulbman.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;


interface ILightbulbman {
    //EVENTS
    event Mint(address indexed _user, uint256 indexed _tokenId, string _tokenURI);
    event ToggleSaleState(bool _state);
    event BaseURIChanged(string _baseURI);
    event WithdrawalWalletChanged(address payable _newWithdrawalWallet);
    event MintPriceChanged(uint256 _mintPrice);
    event WhitelistBuy(address _user, uint8 _amount);
    event ToggleWhitelistSaleState(bool _whitelistSaleActive);
    event WhiteListAdded(address _user, uint8 _maxMint);
    event NameChange(uint256 indexed lightbulbmanIndex, string newName);
    event FinalizeStartingIndex(uint256 startingIndex);
    event WhitelistStatusChanged(address _user, uint8 _maxMint);

}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"address payable","name":"_withdrawalWallet","type":"address"},{"internalType":"string","name":"_ticker","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startingIndex","type":"uint256"}],"name":"FinalizeStartingIndex","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_tokenURI","type":"string"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"MintPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"lightbulbmanIndex","type":"uint256"},{"indexed":false,"internalType":"string","name":"newName","type":"string"}],"name":"NameChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"ToggleSaleState","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_whitelistSaleActive","type":"bool"}],"name":"ToggleWhitelistSaleState","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint8","name":"_maxMint","type":"uint8"}],"name":"WhiteListAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"WhitelistBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint8","name":"_maxMint","type":"uint8"}],"name":"WhitelistStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable","name":"_newWithdrawalWallet","type":"address"}],"name":"WithdrawalWalletChanged","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_userList","type":"address[]"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"finalizeStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStartingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_walletAddressList","type":"address[]"},{"internalType":"uint8[]","name":"_amountList","type":"uint8[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"nameString","type":"string"}],"name":"isNameReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"setLightbulbmanName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint8","name":"_maxMint","type":"uint8"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_withdrawalWallet","type":"address"}],"name":"setWhithdrawalWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"toLower","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"toggleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenNameByIndex","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"validateName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"whitelistBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052610462600b556000600d556003600f60006101000a81548160ff021916908360ff1602179055506000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055503480156200006e57600080fd5b50604051620064ff380380620064ff8339818101604052810190620000949190620003ac565b81838160009080519060200190620000ae9291906200025c565b508060019080519060200190620000c79291906200025c565b505050620000ea620000de6200017660201b60201c565b6200017e60201b60201c565b6200010b66038d7ea4c68000866200024460201b62002da01790919060201c565b600c8190555083600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601090805190602001906200016a9291906200025c565b505050505050620006eb565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183620002549190620004d8565b905092915050565b8280546200026a90620005ad565b90600052602060002090601f0160209004810192826200028e5760008555620002da565b82601f10620002a957805160ff1916838001178555620002da565b82800160010185558215620002da579182015b82811115620002d9578251825591602001919060010190620002bc565b5b509050620002e99190620002ed565b5090565b5b8082111562000308576000816000905550600101620002ee565b5090565b6000620003236200031d84620004a2565b62000479565b9050828152602081018484840111156200033c57600080fd5b6200034984828562000577565b509392505050565b6000815190506200036281620006b7565b92915050565b600082601f8301126200037a57600080fd5b81516200038c8482602086016200030c565b91505092915050565b600081519050620003a681620006d1565b92915050565b600080600080600060a08688031215620003c557600080fd5b6000620003d58882890162000395565b9550506020620003e88882890162000351565b945050604086015167ffffffffffffffff8111156200040657600080fd5b620004148882890162000368565b935050606086015167ffffffffffffffff8111156200043257600080fd5b620004408882890162000368565b925050608086015167ffffffffffffffff8111156200045e57600080fd5b6200046c8882890162000368565b9150509295509295909350565b60006200048562000498565b9050620004938282620005e3565b919050565b6000604051905090565b600067ffffffffffffffff821115620004c057620004bf62000677565b5b620004cb82620006a6565b9050602081019050919050565b6000620004e5826200056d565b9150620004f2836200056d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200052e576200052d62000619565b5b828202905092915050565b600062000546826200054d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620005975780820151818401526020810190506200057a565b83811115620005a7576000848401525b50505050565b60006002820490506001821680620005c657607f821691505b60208210811415620005dd57620005dc62000648565b5b50919050565b620005ee82620006a6565b810181811067ffffffffffffffff8211171562000610576200060f62000677565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620006c28162000539565b8114620006ce57600080fd5b50565b620006dc816200056d565b8114620006e857600080fd5b50565b615e0480620006fb6000396000f3fe6080604052600436106102885760003560e01c8063715018a61161015a578063a22cb465116100c1578063d96a094a1161007a578063d96a094a146109d3578063e36d6498146109ef578063e985e9c514610a1a578063edac985b14610a57578063f2fde38b14610a80578063f4a0a52814610aa957610288565b8063a22cb465146108d7578063b88d4fde14610900578063b89fe99914610929578063c87b56dd14610940578063cb774d471461097d578063cc221a46146109a857610288565b80639416b423116101135780639416b423146107a357806394d02367146107e057806395d89b41146108095780639b19251a146108345780639ffdb65a14610871578063a08c063c146108ae57610288565b8063715018a6146106cd57806374df39c9146106e45780637501f741146106fb57806376f98085146107265780637aafd40d1461074f5780638da5cb5b1461077857610288565b80633ad7f56c116101fe5780635c85a8cf116101b75780635c85a8cf146105a45780636352211e146105c05780636817c76c146105fd57806368428a1b146106285780636d5224181461065357806370a082311461069057610288565b80633ad7f56c146104a85780633ccfd60b146104d357806342842e0e146104ea5780634a7d80b3146105135780634f6ccce71461053e57806355f804b31461057b57610288565b806315b56d101161025057806315b56d101461039857806318160ddd146103d557806319d1997a1461040057806323b872dd1461042b5780632f745c59146104545780633100a5351461049157610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b3146103325780630da2e2231461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906144c2565b610ad2565b6040516102c19190614cff565b60405180910390f35b3480156102d657600080fd5b506102df610b4c565b6040516102ec9190614d1a565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190614555565b610bde565b6040516103299190614c54565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190614394565b610c63565b005b34801561036757600080fd5b50610382600480360381019061037d9190614555565b610d7b565b60405161038f9190614d1a565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190614514565b610e1b565b6040516103cc9190614cff565b60405180910390f35b3480156103e157600080fd5b506103ea610e50565b6040516103f7919061511e565b60405180910390f35b34801561040c57600080fd5b50610415610e5d565b604051610422919061511e565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d919061428e565b610e63565b005b34801561046057600080fd5b5061047b60048036038101906104769190614394565b610ec3565b604051610488919061511e565b60405180910390f35b34801561049d57600080fd5b506104a6610f68565b005b3480156104b457600080fd5b506104bd611056565b6040516104ca9190614cff565b60405180910390f35b3480156104df57600080fd5b506104e8611069565b005b3480156104f657600080fd5b50610511600480360381019061050c919061428e565b611156565b005b34801561051f57600080fd5b50610528611176565b6040516105359190614c6f565b60405180910390f35b34801561054a57600080fd5b5061056560048036038101906105609190614555565b61119c565b604051610572919061511e565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190614514565b611233565b005b6105be60048036038101906105b991906145d2565b611301565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190614555565b611503565b6040516105f49190614c54565b60405180910390f35b34801561060957600080fd5b506106126115b5565b60405161061f919061511e565b60405180910390f35b34801561063457600080fd5b5061063d6115bb565b60405161064a9190614cff565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190614555565b6115ce565b6040516106879190614d1a565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190614200565b611673565b6040516106c4919061511e565b60405180910390f35b3480156106d957600080fd5b506106e261172b565b005b3480156106f057600080fd5b506106f96117b3565b005b34801561070757600080fd5b506107106118fb565b60405161071d9190615139565b60405180910390f35b34801561073257600080fd5b5061074d600480360381019061074891906143d0565b61190e565b005b34801561075b57600080fd5b506107766004803603810190610771919061440c565b611a1f565b005b34801561078457600080fd5b5061078d611c35565b60405161079a9190614c54565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c59190614514565b611c5f565b6040516107d79190614d1a565b60405180910390f35b3480156107ec57600080fd5b506108076004803603810190610802919061457e565b611f21565b005b34801561081557600080fd5b5061081e612101565b60405161082b9190614d1a565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190614200565b612193565b6040516108689190615139565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190614514565b6121b3565b6040516108a59190614cff565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190614229565b6122f0565b005b3480156108e357600080fd5b506108fe60048036038101906108f99190614358565b612409565b005b34801561090c57600080fd5b50610927600480360381019061092291906142dd565b61258a565b005b34801561093557600080fd5b5061093e6125ec565b005b34801561094c57600080fd5b5061096760048036038101906109629190614555565b6126da565b6040516109749190614d1a565b60405180910390f35b34801561098957600080fd5b506109926127c1565b60405161099f919061511e565b60405180910390f35b3480156109b457600080fd5b506109bd6127c7565b6040516109ca919061511e565b60405180910390f35b6109ed60048036038101906109e89190614555565b6127d1565b005b3480156109fb57600080fd5b50610a0461296a565b604051610a11919061511e565b60405180910390f35b348015610a2657600080fd5b50610a416004803603810190610a3c9190614252565b612970565b604051610a4e9190614cff565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190614481565b612a04565b005b348015610a8c57600080fd5b50610aa76004803603810190610aa29190614200565b612bd2565b005b348015610ab557600080fd5b50610ad06004803603810190610acb9190614555565b612cca565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b455750610b4482612db6565b5b9050919050565b606060008054610b5b906154b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b87906154b4565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b6000610be982612e98565b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90614fde565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c6e82611503565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd69061505e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cfe612f04565b73ffffffffffffffffffffffffffffffffffffffff161480610d2d5750610d2c81610d27612f04565b612970565b5b610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6390614f3e565b60405180910390fd5b610d768383612f0c565b505050565b60136020528060005260406000206000915090508054610d9a906154b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc6906154b4565b8015610e135780601f10610de857610100808354040283529160200191610e13565b820191906000526020600020905b815481529060010190602001808311610df657829003601f168201915b505050505081565b6000601482604051610e2d9190614c02565b908152602001604051809103902060009054906101000a900460ff169050919050565b6000600880549050905090565b600b5481565b610e74610e6e612f04565b82612fc5565b610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa9061509e565b60405180910390fd5b610ebe8383836130a3565b505050565b6000610ece83611673565b8210610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690614d9e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f70612f04565b73ffffffffffffffffffffffffffffffffffffffff16610f8e611c35565b73ffffffffffffffffffffffffffffffffffffffff1614610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90614ffe565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff0219169083151502179055507f5a454f976028c400c4159ac85c61452441fcf06b9888c7c780c5980e3c3123dd601160009054906101000a900460ff1660405161104c9190614cff565b60405180910390a1565b601160019054906101000a900460ff1681565b611071612f04565b73ffffffffffffffffffffffffffffffffffffffff1661108f611c35565b73ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90614ffe565b60405180910390fd5b6000479050600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611152573d6000803e3d6000fd5b5050565b6111718383836040518060200160405280600081525061258a565b505050565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006111a6610e50565b82106111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de906150be565b60405180910390fd5b60088281548110611221577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61123b612f04565b73ffffffffffffffffffffffffffffffffffffffff16611259611c35565b73ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690614ffe565b60405180910390fd5b80601090805190602001906112c5929190613ed0565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf660106040516112f69190614d3c565b60405180910390a150565b601160019054906101000a900460ff16611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790614e7e565b60405180910390fd5b6113688160ff16600c54612da090919063ffffffff16565b3410156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a1906150de565b60405180910390fd5b8060ff16601260006113ba612f04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161015611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d9061507e565b60405180910390fd5b60005b8160ff1681101561148557600061145e610e50565b905061147161146b612f04565b826132ff565b50808061147d90615517565b915050611449565b508060126000611493612f04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166114e891906153ab565b92506101000a81548160ff021916908360ff16021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390614f7e565b60405180910390fd5b80915050919050565b600c5481565b601160009054906101000a900460ff1681565b60606013600083815260200190815260200160002080546115ee906154b4565b80601f016020809104026020016040519081016040528092919081815260200182805461161a906154b4565b80156116675780601f1061163c57610100808354040283529160200191611667565b820191906000526020600020905b81548152906001019060200180831161164a57829003601f168201915b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90614f5e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611733612f04565b73ffffffffffffffffffffffffffffffffffffffff16611751611c35565b73ffffffffffffffffffffffffffffffffffffffff16146117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90614ffe565b60405180910390fd5b6117b1600061331d565b565b6117bb612f04565b73ffffffffffffffffffffffffffffffffffffffff166117d9611c35565b73ffffffffffffffffffffffffffffffffffffffff161461182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690614ffe565b60405180910390fd5b6000600d5414611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90614efe565b60405180910390fd5b600b546001436118849190615377565b4060001c611892919061558a565b600d819055506000600d5414156118c0576118b96001600d546133e390919063ffffffff16565b600d819055505b7fe098ef134f87b5e5850475eba45733e6ff26592ebb82c5b201ecff0c04519042600d546040516118f1919061511e565b60405180910390a1565b600f60009054906101000a900460ff1681565b611916612f04565b73ffffffffffffffffffffffffffffffffffffffff16611934611c35565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190614ffe565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055507f310f7c4b0ad79727957679f8a10f7622c80bde21539fa30d3786fa636e9232728282604051611a13929190614cd6565b60405180910390a15050565b611a27612f04565b73ffffffffffffffffffffffffffffffffffffffff16611a45611c35565b73ffffffffffffffffffffffffffffffffffffffff1614611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290614ffe565b60405180910390fd5b600b54611aa6610e50565b10611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90614e5e565b60405180910390fd5b818190508484905014611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590614f9e565b60405180910390fd5b60005b828290508160ff161015611c2e5760005b83838360ff16818110611b7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611b9391906145d2565b60ff168160ff161015611c1a576000611baa610e50565b9050611c0687878560ff16818110611beb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611c009190614200565b826132ff565b508080611c1290615560565b915050611b42565b508080611c2690615560565b915050611b31565b5050505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060008290506000815167ffffffffffffffff811115611ca9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cdb5781602001600182028036833780820191505090505b50905060005b8251811015611f16576041838281518110611d25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1610158015611d8e5750605a838281518110611d7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1611155b15611e56576020838281518110611dce577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c611de691906152b5565b60f81b828281518110611e22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611f03565b828181518110611e8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b828281518110611ed3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b8080611f0e90615517565b915050611ce1565b508092505050919050565b6000611f2c83611503565b90508073ffffffffffffffffffffffffffffffffffffffff16611f4d612f04565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90614e3e565b60405180910390fd5b611fac826121b3565b611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290614d5e565b60405180910390fd5b600060136000858152602001908152602001600020805461200b906154b4565b90501461204d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490614e1e565b60405180910390fd5b6000151561205a83610e1b565b15151461209c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209390614f1e565b60405180910390fd5b816013600085815260200190815260200160002090805190602001906120c3929190613ed0565b50827f7e632a301794d8d4a81ea7e20f37d1947158d36e66403af04ba85dd194b66f1b836040516120f49190614d1a565b60405180910390a2505050565b606060018054612110906154b4565b80601f016020809104026020016040519081016040528092919081815260200182805461213c906154b4565b80156121895780601f1061215e57610100808354040283529160200191612189565b820191906000526020600020905b81548152906001019060200180831161216c57829003601f168201915b5050505050905090565b60126020528060005260406000206000915054906101000a900460ff1681565b6000808290506001815110156121cd5760009150506122eb565b6019815111156121e15760009150506122eb565b602060f81b81600081518110612220577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141561225d5760009150506122eb565b602060f81b81600183516122719190615377565b815181106122a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156122e55760009150506122eb565b60019150505b919050565b6122f8612f04565b73ffffffffffffffffffffffffffffffffffffffff16612316611c35565b73ffffffffffffffffffffffffffffffffffffffff161461236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390614ffe565b60405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb470355146314037ce5186813b4b7c65bff2b87f98d44ff063570d0e22d65ba3600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516123fe9190614c6f565b60405180910390a150565b612411612f04565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561247f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247690614ebe565b60405180910390fd5b806005600061248c612f04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612539612f04565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161257e9190614cff565b60405180910390a35050565b61259b612595612f04565b83612fc5565b6125da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d19061509e565b60405180910390fd5b6125e6848484846133f9565b50505050565b6125f4612f04565b73ffffffffffffffffffffffffffffffffffffffff16612612611c35565b73ffffffffffffffffffffffffffffffffffffffff1614612668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265f90614ffe565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff0219169083151502179055507ffabb6e4b24bd8ac3a08555e569d13590c5006dc61e4aae65e74296d3df6759ed601160019054906101000a900460ff166040516126d09190614cff565b60405180910390a1565b60606126e582612e98565b612724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271b90614d7e565b60405180910390fd5b6000600b54600d5484612737919061525f565b612741919061558a565b9050600060108054612752906154b4565b905011801561276357506000600d54115b61278d5760106040516020016127799190614c19565b6040516020818303038152906040526127b9565b601061279882613455565b6040516020016127a9929190614c30565b6040516020818303038152906040525b915050919050565b600d5481565b6000600d54905090565b601160009054906101000a900460ff16612820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128179061503e565b60405180910390fd5b600f60009054906101000a900460ff1660ff16811115612875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286c906150fe565b60405180910390fd5b61288a81600c54612da090919063ffffffff16565b3410156128cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c3906150de565b60405180910390fd5b600b546128e9826128db610e50565b6133e390919063ffffffff16565b111561292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292190614e5e565b60405180910390fd5b60005b8181101561296657600061293f610e50565b905061295261294c612f04565b826132ff565b50808061295e90615517565b91505061292d565b5050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a0c612f04565b73ffffffffffffffffffffffffffffffffffffffff16612a2a611c35565b73ffffffffffffffffffffffffffffffffffffffff1614612a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7790614ffe565b60405180910390fd5b60005b8151811015612bce57600f60009054906101000a900460ff1660126000848481518110612ad9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055507fe9b124b03ebe67b8c1ca82e74eb1fd97b5a39d882c4ecee5cc699caa6ec0c185828281518110612b8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f60009054906101000a900460ff16604051612bb3929190614cd6565b60405180910390a18080612bc690615517565b915050612a83565b5050565b612bda612f04565b73ffffffffffffffffffffffffffffffffffffffff16612bf8611c35565b73ffffffffffffffffffffffffffffffffffffffff1614612c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4590614ffe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb590614dde565b60405180910390fd5b612cc78161331d565b50565b612cd2612f04565b73ffffffffffffffffffffffffffffffffffffffff16612cf0611c35565b73ffffffffffffffffffffffffffffffffffffffff1614612d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3d90614ffe565b60405180910390fd5b612d6066038d7ea4c6800082612da090919063ffffffff16565b600c819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f81604051612d95919061511e565b60405180910390a150565b60008183612dae919061531d565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e8157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e915750612e9082613602565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f7f83611503565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612fd082612e98565b61300f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300690614ede565b60405180910390fd5b600061301a83611503565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061308957508373ffffffffffffffffffffffffffffffffffffffff1661307184610bde565b73ffffffffffffffffffffffffffffffffffffffff16145b8061309a57506130998185612970565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166130c382611503565b73ffffffffffffffffffffffffffffffffffffffff1614613119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131109061501e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318090614e9e565b60405180910390fd5b61319483838361366c565b61319f600082612f0c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131ef9190615377565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613246919061525f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b613319828260405180602001604052806000815250613780565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836133f1919061525f565b905092915050565b6134048484846130a3565b613410848484846137db565b61344f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344690614dbe565b60405180910390fd5b50505050565b6060600082141561349d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135fd565b600082905060005b600082146134cf5780806134b890615517565b915050600a826134c891906152ec565b91506134a5565b60008167ffffffffffffffff811115613511577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135435781602001600182028036833780820191505090505b5090505b600085146135f65760018261355c9190615377565b9150600a8561356b919061558a565b6030613577919061525f565b60f81b8183815181106135b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135ef91906152ec565b9450613547565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613677838383613972565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136ba576136b581613977565b6136f9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136f8576136f783826139c0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561373c5761373781613b2d565b61377b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461377a576137798282613c70565b5b5b505050565b61378a8383613cef565b61379760008484846137db565b6137d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137cd90614dbe565b60405180910390fd5b505050565b60006137fc8473ffffffffffffffffffffffffffffffffffffffff16613ebd565b15613965578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613825612f04565b8786866040518563ffffffff1660e01b81526004016138479493929190614c8a565b602060405180830381600087803b15801561386157600080fd5b505af192505050801561389257506040513d601f19601f8201168201806040525081019061388f91906144eb565b60015b613915573d80600081146138c2576040519150601f19603f3d011682016040523d82523d6000602084013e6138c7565b606091505b5060008151141561390d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390490614dbe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061396a565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016139cd84611673565b6139d79190615377565b9050600060076000848152602001908152602001600020549050818114613abc576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613b419190615377565b9050600060096000848152602001908152602001600020549050600060088381548110613b97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613bdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613c54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613c7b83611673565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5690614fbe565b60405180910390fd5b613d6881612e98565b15613da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d9f90614dfe565b60405180910390fd5b613db46000838361366c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e04919061525f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613edc906154b4565b90600052602060002090601f016020900481019282613efe5760008555613f45565b82601f10613f1757805160ff1916838001178555613f45565b82800160010185558215613f45579182015b82811115613f44578251825591602001919060010190613f29565b5b509050613f529190613f56565b5090565b5b80821115613f6f576000816000905550600101613f57565b5090565b6000613f86613f8184615179565b615154565b90508083825260208201905082856020860282011115613fa557600080fd5b60005b85811015613fd55781613fbb888261405b565b845260208401935060208301925050600181019050613fa8565b5050509392505050565b6000613ff2613fed846151a5565b615154565b90508281526020810184848401111561400a57600080fd5b614015848285615472565b509392505050565b600061403061402b846151d6565b615154565b90508281526020810184848401111561404857600080fd5b614053848285615472565b509392505050565b60008135905061406a81615d44565b92915050565b60008135905061407f81615d5b565b92915050565b60008083601f84011261409757600080fd5b8235905067ffffffffffffffff8111156140b057600080fd5b6020830191508360208202830111156140c857600080fd5b9250929050565b600082601f8301126140e057600080fd5b81356140f0848260208601613f73565b91505092915050565b60008083601f84011261410b57600080fd5b8235905067ffffffffffffffff81111561412457600080fd5b60208301915083602082028301111561413c57600080fd5b9250929050565b60008135905061415281615d72565b92915050565b60008135905061416781615d89565b92915050565b60008151905061417c81615d89565b92915050565b600082601f83011261419357600080fd5b81356141a3848260208601613fdf565b91505092915050565b600082601f8301126141bd57600080fd5b81356141cd84826020860161401d565b91505092915050565b6000813590506141e581615da0565b92915050565b6000813590506141fa81615db7565b92915050565b60006020828403121561421257600080fd5b60006142208482850161405b565b91505092915050565b60006020828403121561423b57600080fd5b600061424984828501614070565b91505092915050565b6000806040838503121561426557600080fd5b60006142738582860161405b565b92505060206142848582860161405b565b9150509250929050565b6000806000606084860312156142a357600080fd5b60006142b18682870161405b565b93505060206142c28682870161405b565b92505060406142d3868287016141d6565b9150509250925092565b600080600080608085870312156142f357600080fd5b60006143018782880161405b565b94505060206143128782880161405b565b9350506040614323878288016141d6565b925050606085013567ffffffffffffffff81111561434057600080fd5b61434c87828801614182565b91505092959194509250565b6000806040838503121561436b57600080fd5b60006143798582860161405b565b925050602061438a85828601614143565b9150509250929050565b600080604083850312156143a757600080fd5b60006143b58582860161405b565b92505060206143c6858286016141d6565b9150509250929050565b600080604083850312156143e357600080fd5b60006143f18582860161405b565b9250506020614402858286016141eb565b9150509250929050565b6000806000806040858703121561442257600080fd5b600085013567ffffffffffffffff81111561443c57600080fd5b61444887828801614085565b9450945050602085013567ffffffffffffffff81111561446757600080fd5b614473878288016140f9565b925092505092959194509250565b60006020828403121561449357600080fd5b600082013567ffffffffffffffff8111156144ad57600080fd5b6144b9848285016140cf565b91505092915050565b6000602082840312156144d457600080fd5b60006144e284828501614158565b91505092915050565b6000602082840312156144fd57600080fd5b600061450b8482850161416d565b91505092915050565b60006020828403121561452657600080fd5b600082013567ffffffffffffffff81111561454057600080fd5b61454c848285016141ac565b91505092915050565b60006020828403121561456757600080fd5b6000614575848285016141d6565b91505092915050565b6000806040838503121561459157600080fd5b600061459f858286016141d6565b925050602083013567ffffffffffffffff8111156145bc57600080fd5b6145c8858286016141ac565b9150509250929050565b6000602082840312156145e457600080fd5b60006145f2848285016141eb565b91505092915050565b614604816153f1565b82525050565b614613816153df565b82525050565b61462281615403565b82525050565b60006146338261521c565b61463d8185615232565b935061464d818560208601615481565b61465681615677565b840191505092915050565b600061466c82615227565b6146768185615243565b9350614686818560208601615481565b61468f81615677565b840191505092915050565b60006146a582615227565b6146af8185615254565b93506146bf818560208601615481565b80840191505092915050565b600081546146d8816154b4565b6146e28186615243565b945060018216600081146146fd576001811461470f57614742565b60ff1983168652602086019350614742565b61471885615207565b60005b8381101561473a5781548189015260018201915060208101905061471b565b808801955050505b50505092915050565b60008154614758816154b4565b6147628186615254565b9450600182166000811461477d576001811461478e576147c1565b60ff198316865281860193506147c1565b61479785615207565b60005b838110156147b95781548189015260018201915060208101905061479a565b838801955050505b50505092915050565b60006147d7600c83615243565b91506147e282615688565b602082019050919050565b60006147fa601f83615243565b9150614805826156b1565b602082019050919050565b600061481d602b83615243565b9150614828826156da565b604082019050919050565b6000614840603283615243565b915061484b82615729565b604082019050919050565b6000614863602683615243565b915061486e82615778565b604082019050919050565b6000614886601c83615243565b9150614891826157c7565b602082019050919050565b60006148a9601483615243565b91506148b4826157f0565b602082019050919050565b60006148cc601983615243565b91506148d782615819565b602082019050919050565b60006148ef601783615243565b91506148fa82615842565b602082019050919050565b6000614912601d83615243565b915061491d8261586b565b602082019050919050565b6000614935602483615243565b915061494082615894565b604082019050919050565b6000614958601983615243565b9150614963826158e3565b602082019050919050565b600061497b602c83615243565b91506149868261590c565b604082019050919050565b600061499e601d83615243565b91506149a98261595b565b602082019050919050565b60006149c1601583615243565b91506149cc82615984565b602082019050919050565b60006149e4603883615243565b91506149ef826159ad565b604082019050919050565b6000614a07602a83615243565b9150614a12826159fc565b604082019050919050565b6000614a2a602983615243565b9150614a3582615a4b565b604082019050919050565b6000614a4d601783615243565b9150614a5882615a9a565b602082019050919050565b6000614a70602083615243565b9150614a7b82615ac3565b602082019050919050565b6000614a93602c83615243565b9150614a9e82615aec565b604082019050919050565b6000614ab6602083615243565b9150614ac182615b3b565b602082019050919050565b6000614ad9602983615243565b9150614ae482615b64565b604082019050919050565b6000614afc601383615243565b9150614b0782615bb3565b602082019050919050565b6000614b1f602183615243565b9150614b2a82615bdc565b604082019050919050565b6000614b42601883615243565b9150614b4d82615c2b565b602082019050919050565b6000614b65603183615243565b9150614b7082615c54565b604082019050919050565b6000614b88602c83615243565b9150614b9382615ca3565b604082019050919050565b6000614bab601583615243565b9150614bb682615cf2565b602082019050919050565b6000614bce601583615243565b9150614bd982615d1b565b602082019050919050565b614bed8161545b565b82525050565b614bfc81615465565b82525050565b6000614c0e828461469a565b915081905092915050565b6000614c25828461474b565b915081905092915050565b6000614c3c828561474b565b9150614c48828461469a565b91508190509392505050565b6000602082019050614c69600083018461460a565b92915050565b6000602082019050614c8460008301846145fb565b92915050565b6000608082019050614c9f600083018761460a565b614cac602083018661460a565b614cb96040830185614be4565b8181036060830152614ccb8184614628565b905095945050505050565b6000604082019050614ceb600083018561460a565b614cf86020830184614bf3565b9392505050565b6000602082019050614d146000830184614619565b92915050565b60006020820190508181036000830152614d348184614661565b905092915050565b60006020820190508181036000830152614d5681846146cb565b905092915050565b60006020820190508181036000830152614d77816147ca565b9050919050565b60006020820190508181036000830152614d97816147ed565b9050919050565b60006020820190508181036000830152614db781614810565b9050919050565b60006020820190508181036000830152614dd781614833565b9050919050565b60006020820190508181036000830152614df781614856565b9050919050565b60006020820190508181036000830152614e1781614879565b9050919050565b60006020820190508181036000830152614e378161489c565b9050919050565b60006020820190508181036000830152614e57816148bf565b9050919050565b60006020820190508181036000830152614e77816148e2565b9050919050565b60006020820190508181036000830152614e9781614905565b9050919050565b60006020820190508181036000830152614eb781614928565b9050919050565b60006020820190508181036000830152614ed78161494b565b9050919050565b60006020820190508181036000830152614ef78161496e565b9050919050565b60006020820190508181036000830152614f1781614991565b9050919050565b60006020820190508181036000830152614f37816149b4565b9050919050565b60006020820190508181036000830152614f57816149d7565b9050919050565b60006020820190508181036000830152614f77816149fa565b9050919050565b60006020820190508181036000830152614f9781614a1d565b9050919050565b60006020820190508181036000830152614fb781614a40565b9050919050565b60006020820190508181036000830152614fd781614a63565b9050919050565b60006020820190508181036000830152614ff781614a86565b9050919050565b6000602082019050818103600083015261501781614aa9565b9050919050565b6000602082019050818103600083015261503781614acc565b9050919050565b6000602082019050818103600083015261505781614aef565b9050919050565b6000602082019050818103600083015261507781614b12565b9050919050565b6000602082019050818103600083015261509781614b35565b9050919050565b600060208201905081810360008301526150b781614b58565b9050919050565b600060208201905081810360008301526150d781614b7b565b9050919050565b600060208201905081810360008301526150f781614b9e565b9050919050565b6000602082019050818103600083015261511781614bc1565b9050919050565b60006020820190506151336000830184614be4565b92915050565b600060208201905061514e6000830184614bf3565b92915050565b600061515e61516f565b905061516a82826154e6565b919050565b6000604051905090565b600067ffffffffffffffff82111561519457615193615648565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151c0576151bf615648565b5b6151c982615677565b9050602081019050919050565b600067ffffffffffffffff8211156151f1576151f0615648565b5b6151fa82615677565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061526a8261545b565b91506152758361545b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152aa576152a96155bb565b5b828201905092915050565b60006152c082615465565b91506152cb83615465565b92508260ff038211156152e1576152e06155bb565b5b828201905092915050565b60006152f78261545b565b91506153028361545b565b925082615312576153116155ea565b5b828204905092915050565b60006153288261545b565b91506153338361545b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561536c5761536b6155bb565b5b828202905092915050565b60006153828261545b565b915061538d8361545b565b9250828210156153a05761539f6155bb565b5b828203905092915050565b60006153b682615465565b91506153c183615465565b9250828210156153d4576153d36155bb565b5b828203905092915050565b60006153ea8261543b565b9050919050565b60006153fc8261543b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561549f578082015181840152602081019050615484565b838111156154ae576000848401525b50505050565b600060028204905060018216806154cc57607f821691505b602082108114156154e0576154df615619565b5b50919050565b6154ef82615677565b810181811067ffffffffffffffff8211171561550e5761550d615648565b5b80604052505050565b60006155228261545b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615555576155546155bb565b5b600182019050919050565b600061556b82615465565b915060ff82141561557f5761557e6155bb565b5b600182019050919050565b60006155958261545b565b91506155a08361545b565b9250826155b0576155af6155ea565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f496e76616c6964206e616d650000000000000000000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e616d6520697320616c72656164792073657421000000000000000000000000600082015250565b7f4e6f7420746865206f776e6572206f662074686973204c424d00000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f57686974656c6973742073616c65206973206e6f74204163746976652e000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4e616d6520697320616c72656164792074616b656e0000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4c697374206c656e67746873206e6f7420657175616c2e000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742077686974656c69737465642e0000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e74207061796d656e742e0000000000000000000000600082015250565b7f4d6178206d696e742070657220547820697320332e0000000000000000000000600082015250565b615d4d816153df565b8114615d5857600080fd5b50565b615d64816153f1565b8114615d6f57600080fd5b50565b615d7b81615403565b8114615d8657600080fd5b50565b615d928161540f565b8114615d9d57600080fd5b50565b615da98161545b565b8114615db457600080fd5b50565b615dc081615465565b8114615dcb57600080fd5b5056fea2646970667358221220850cb9e066a56f02ef376728e38258f7253e7d0f1df6a9ce49bf46f19448230a64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000001f400000000000000000000000056b982c6353785b93ab38646b2ca147b3a82f9e500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000034c424d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4c4947485442554c424d414e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d574b4d7862745151675a325147747770696243343541387976656631346b6e735a7a396453665a5a50746f6200000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c8063715018a61161015a578063a22cb465116100c1578063d96a094a1161007a578063d96a094a146109d3578063e36d6498146109ef578063e985e9c514610a1a578063edac985b14610a57578063f2fde38b14610a80578063f4a0a52814610aa957610288565b8063a22cb465146108d7578063b88d4fde14610900578063b89fe99914610929578063c87b56dd14610940578063cb774d471461097d578063cc221a46146109a857610288565b80639416b423116101135780639416b423146107a357806394d02367146107e057806395d89b41146108095780639b19251a146108345780639ffdb65a14610871578063a08c063c146108ae57610288565b8063715018a6146106cd57806374df39c9146106e45780637501f741146106fb57806376f98085146107265780637aafd40d1461074f5780638da5cb5b1461077857610288565b80633ad7f56c116101fe5780635c85a8cf116101b75780635c85a8cf146105a45780636352211e146105c05780636817c76c146105fd57806368428a1b146106285780636d5224181461065357806370a082311461069057610288565b80633ad7f56c146104a85780633ccfd60b146104d357806342842e0e146104ea5780634a7d80b3146105135780634f6ccce71461053e57806355f804b31461057b57610288565b806315b56d101161025057806315b56d101461039857806318160ddd146103d557806319d1997a1461040057806323b872dd1461042b5780632f745c59146104545780633100a5351461049157610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b3146103325780630da2e2231461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906144c2565b610ad2565b6040516102c19190614cff565b60405180910390f35b3480156102d657600080fd5b506102df610b4c565b6040516102ec9190614d1a565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190614555565b610bde565b6040516103299190614c54565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190614394565b610c63565b005b34801561036757600080fd5b50610382600480360381019061037d9190614555565b610d7b565b60405161038f9190614d1a565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190614514565b610e1b565b6040516103cc9190614cff565b60405180910390f35b3480156103e157600080fd5b506103ea610e50565b6040516103f7919061511e565b60405180910390f35b34801561040c57600080fd5b50610415610e5d565b604051610422919061511e565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d919061428e565b610e63565b005b34801561046057600080fd5b5061047b60048036038101906104769190614394565b610ec3565b604051610488919061511e565b60405180910390f35b34801561049d57600080fd5b506104a6610f68565b005b3480156104b457600080fd5b506104bd611056565b6040516104ca9190614cff565b60405180910390f35b3480156104df57600080fd5b506104e8611069565b005b3480156104f657600080fd5b50610511600480360381019061050c919061428e565b611156565b005b34801561051f57600080fd5b50610528611176565b6040516105359190614c6f565b60405180910390f35b34801561054a57600080fd5b5061056560048036038101906105609190614555565b61119c565b604051610572919061511e565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190614514565b611233565b005b6105be60048036038101906105b991906145d2565b611301565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190614555565b611503565b6040516105f49190614c54565b60405180910390f35b34801561060957600080fd5b506106126115b5565b60405161061f919061511e565b60405180910390f35b34801561063457600080fd5b5061063d6115bb565b60405161064a9190614cff565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190614555565b6115ce565b6040516106879190614d1a565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190614200565b611673565b6040516106c4919061511e565b60405180910390f35b3480156106d957600080fd5b506106e261172b565b005b3480156106f057600080fd5b506106f96117b3565b005b34801561070757600080fd5b506107106118fb565b60405161071d9190615139565b60405180910390f35b34801561073257600080fd5b5061074d600480360381019061074891906143d0565b61190e565b005b34801561075b57600080fd5b506107766004803603810190610771919061440c565b611a1f565b005b34801561078457600080fd5b5061078d611c35565b60405161079a9190614c54565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c59190614514565b611c5f565b6040516107d79190614d1a565b60405180910390f35b3480156107ec57600080fd5b506108076004803603810190610802919061457e565b611f21565b005b34801561081557600080fd5b5061081e612101565b60405161082b9190614d1a565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190614200565b612193565b6040516108689190615139565b60405180910390f35b34801561087d57600080fd5b5061089860048036038101906108939190614514565b6121b3565b6040516108a59190614cff565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d09190614229565b6122f0565b005b3480156108e357600080fd5b506108fe60048036038101906108f99190614358565b612409565b005b34801561090c57600080fd5b50610927600480360381019061092291906142dd565b61258a565b005b34801561093557600080fd5b5061093e6125ec565b005b34801561094c57600080fd5b5061096760048036038101906109629190614555565b6126da565b6040516109749190614d1a565b60405180910390f35b34801561098957600080fd5b506109926127c1565b60405161099f919061511e565b60405180910390f35b3480156109b457600080fd5b506109bd6127c7565b6040516109ca919061511e565b60405180910390f35b6109ed60048036038101906109e89190614555565b6127d1565b005b3480156109fb57600080fd5b50610a0461296a565b604051610a11919061511e565b60405180910390f35b348015610a2657600080fd5b50610a416004803603810190610a3c9190614252565b612970565b604051610a4e9190614cff565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190614481565b612a04565b005b348015610a8c57600080fd5b50610aa76004803603810190610aa29190614200565b612bd2565b005b348015610ab557600080fd5b50610ad06004803603810190610acb9190614555565b612cca565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b455750610b4482612db6565b5b9050919050565b606060008054610b5b906154b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b87906154b4565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b6000610be982612e98565b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90614fde565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c6e82611503565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd69061505e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cfe612f04565b73ffffffffffffffffffffffffffffffffffffffff161480610d2d5750610d2c81610d27612f04565b612970565b5b610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6390614f3e565b60405180910390fd5b610d768383612f0c565b505050565b60136020528060005260406000206000915090508054610d9a906154b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc6906154b4565b8015610e135780601f10610de857610100808354040283529160200191610e13565b820191906000526020600020905b815481529060010190602001808311610df657829003601f168201915b505050505081565b6000601482604051610e2d9190614c02565b908152602001604051809103902060009054906101000a900460ff169050919050565b6000600880549050905090565b600b5481565b610e74610e6e612f04565b82612fc5565b610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa9061509e565b60405180910390fd5b610ebe8383836130a3565b505050565b6000610ece83611673565b8210610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690614d9e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f70612f04565b73ffffffffffffffffffffffffffffffffffffffff16610f8e611c35565b73ffffffffffffffffffffffffffffffffffffffff1614610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90614ffe565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff0219169083151502179055507f5a454f976028c400c4159ac85c61452441fcf06b9888c7c780c5980e3c3123dd601160009054906101000a900460ff1660405161104c9190614cff565b60405180910390a1565b601160019054906101000a900460ff1681565b611071612f04565b73ffffffffffffffffffffffffffffffffffffffff1661108f611c35565b73ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90614ffe565b60405180910390fd5b6000479050600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611152573d6000803e3d6000fd5b5050565b6111718383836040518060200160405280600081525061258a565b505050565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006111a6610e50565b82106111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de906150be565b60405180910390fd5b60088281548110611221577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61123b612f04565b73ffffffffffffffffffffffffffffffffffffffff16611259611c35565b73ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690614ffe565b60405180910390fd5b80601090805190602001906112c5929190613ed0565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf660106040516112f69190614d3c565b60405180910390a150565b601160019054906101000a900460ff16611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790614e7e565b60405180910390fd5b6113688160ff16600c54612da090919063ffffffff16565b3410156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a1906150de565b60405180910390fd5b8060ff16601260006113ba612f04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161015611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d9061507e565b60405180910390fd5b60005b8160ff1681101561148557600061145e610e50565b905061147161146b612f04565b826132ff565b50808061147d90615517565b915050611449565b508060126000611493612f04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166114e891906153ab565b92506101000a81548160ff021916908360ff16021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390614f7e565b60405180910390fd5b80915050919050565b600c5481565b601160009054906101000a900460ff1681565b60606013600083815260200190815260200160002080546115ee906154b4565b80601f016020809104026020016040519081016040528092919081815260200182805461161a906154b4565b80156116675780601f1061163c57610100808354040283529160200191611667565b820191906000526020600020905b81548152906001019060200180831161164a57829003601f168201915b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db90614f5e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611733612f04565b73ffffffffffffffffffffffffffffffffffffffff16611751611c35565b73ffffffffffffffffffffffffffffffffffffffff16146117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e90614ffe565b60405180910390fd5b6117b1600061331d565b565b6117bb612f04565b73ffffffffffffffffffffffffffffffffffffffff166117d9611c35565b73ffffffffffffffffffffffffffffffffffffffff161461182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690614ffe565b60405180910390fd5b6000600d5414611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90614efe565b60405180910390fd5b600b546001436118849190615377565b4060001c611892919061558a565b600d819055506000600d5414156118c0576118b96001600d546133e390919063ffffffff16565b600d819055505b7fe098ef134f87b5e5850475eba45733e6ff26592ebb82c5b201ecff0c04519042600d546040516118f1919061511e565b60405180910390a1565b600f60009054906101000a900460ff1681565b611916612f04565b73ffffffffffffffffffffffffffffffffffffffff16611934611c35565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190614ffe565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055507f310f7c4b0ad79727957679f8a10f7622c80bde21539fa30d3786fa636e9232728282604051611a13929190614cd6565b60405180910390a15050565b611a27612f04565b73ffffffffffffffffffffffffffffffffffffffff16611a45611c35565b73ffffffffffffffffffffffffffffffffffffffff1614611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290614ffe565b60405180910390fd5b600b54611aa6610e50565b10611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90614e5e565b60405180910390fd5b818190508484905014611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590614f9e565b60405180910390fd5b60005b828290508160ff161015611c2e5760005b83838360ff16818110611b7e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611b9391906145d2565b60ff168160ff161015611c1a576000611baa610e50565b9050611c0687878560ff16818110611beb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611c009190614200565b826132ff565b508080611c1290615560565b915050611b42565b508080611c2690615560565b915050611b31565b5050505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060008290506000815167ffffffffffffffff811115611ca9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cdb5781602001600182028036833780820191505090505b50905060005b8251811015611f16576041838281518110611d25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1610158015611d8e5750605a838281518110611d7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1611155b15611e56576020838281518110611dce577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c611de691906152b5565b60f81b828281518110611e22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611f03565b828181518110611e8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b828281518110611ed3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b8080611f0e90615517565b915050611ce1565b508092505050919050565b6000611f2c83611503565b90508073ffffffffffffffffffffffffffffffffffffffff16611f4d612f04565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90614e3e565b60405180910390fd5b611fac826121b3565b611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290614d5e565b60405180910390fd5b600060136000858152602001908152602001600020805461200b906154b4565b90501461204d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490614e1e565b60405180910390fd5b6000151561205a83610e1b565b15151461209c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209390614f1e565b60405180910390fd5b816013600085815260200190815260200160002090805190602001906120c3929190613ed0565b50827f7e632a301794d8d4a81ea7e20f37d1947158d36e66403af04ba85dd194b66f1b836040516120f49190614d1a565b60405180910390a2505050565b606060018054612110906154b4565b80601f016020809104026020016040519081016040528092919081815260200182805461213c906154b4565b80156121895780601f1061215e57610100808354040283529160200191612189565b820191906000526020600020905b81548152906001019060200180831161216c57829003601f168201915b5050505050905090565b60126020528060005260406000206000915054906101000a900460ff1681565b6000808290506001815110156121cd5760009150506122eb565b6019815111156121e15760009150506122eb565b602060f81b81600081518110612220577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141561225d5760009150506122eb565b602060f81b81600183516122719190615377565b815181106122a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156122e55760009150506122eb565b60019150505b919050565b6122f8612f04565b73ffffffffffffffffffffffffffffffffffffffff16612316611c35565b73ffffffffffffffffffffffffffffffffffffffff161461236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390614ffe565b60405180910390fd5b80600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb470355146314037ce5186813b4b7c65bff2b87f98d44ff063570d0e22d65ba3600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516123fe9190614c6f565b60405180910390a150565b612411612f04565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561247f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247690614ebe565b60405180910390fd5b806005600061248c612f04565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612539612f04565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161257e9190614cff565b60405180910390a35050565b61259b612595612f04565b83612fc5565b6125da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d19061509e565b60405180910390fd5b6125e6848484846133f9565b50505050565b6125f4612f04565b73ffffffffffffffffffffffffffffffffffffffff16612612611c35565b73ffffffffffffffffffffffffffffffffffffffff1614612668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265f90614ffe565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff0219169083151502179055507ffabb6e4b24bd8ac3a08555e569d13590c5006dc61e4aae65e74296d3df6759ed601160019054906101000a900460ff166040516126d09190614cff565b60405180910390a1565b60606126e582612e98565b612724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271b90614d7e565b60405180910390fd5b6000600b54600d5484612737919061525f565b612741919061558a565b9050600060108054612752906154b4565b905011801561276357506000600d54115b61278d5760106040516020016127799190614c19565b6040516020818303038152906040526127b9565b601061279882613455565b6040516020016127a9929190614c30565b6040516020818303038152906040525b915050919050565b600d5481565b6000600d54905090565b601160009054906101000a900460ff16612820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128179061503e565b60405180910390fd5b600f60009054906101000a900460ff1660ff16811115612875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286c906150fe565b60405180910390fd5b61288a81600c54612da090919063ffffffff16565b3410156128cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c3906150de565b60405180910390fd5b600b546128e9826128db610e50565b6133e390919063ffffffff16565b111561292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292190614e5e565b60405180910390fd5b60005b8181101561296657600061293f610e50565b905061295261294c612f04565b826132ff565b50808061295e90615517565b91505061292d565b5050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a0c612f04565b73ffffffffffffffffffffffffffffffffffffffff16612a2a611c35565b73ffffffffffffffffffffffffffffffffffffffff1614612a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7790614ffe565b60405180910390fd5b60005b8151811015612bce57600f60009054906101000a900460ff1660126000848481518110612ad9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055507fe9b124b03ebe67b8c1ca82e74eb1fd97b5a39d882c4ecee5cc699caa6ec0c185828281518110612b8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f60009054906101000a900460ff16604051612bb3929190614cd6565b60405180910390a18080612bc690615517565b915050612a83565b5050565b612bda612f04565b73ffffffffffffffffffffffffffffffffffffffff16612bf8611c35565b73ffffffffffffffffffffffffffffffffffffffff1614612c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4590614ffe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb590614dde565b60405180910390fd5b612cc78161331d565b50565b612cd2612f04565b73ffffffffffffffffffffffffffffffffffffffff16612cf0611c35565b73ffffffffffffffffffffffffffffffffffffffff1614612d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3d90614ffe565b60405180910390fd5b612d6066038d7ea4c6800082612da090919063ffffffff16565b600c819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f81604051612d95919061511e565b60405180910390a150565b60008183612dae919061531d565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e8157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e915750612e9082613602565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f7f83611503565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612fd082612e98565b61300f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300690614ede565b60405180910390fd5b600061301a83611503565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061308957508373ffffffffffffffffffffffffffffffffffffffff1661307184610bde565b73ffffffffffffffffffffffffffffffffffffffff16145b8061309a57506130998185612970565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166130c382611503565b73ffffffffffffffffffffffffffffffffffffffff1614613119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131109061501e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318090614e9e565b60405180910390fd5b61319483838361366c565b61319f600082612f0c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131ef9190615377565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613246919061525f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b613319828260405180602001604052806000815250613780565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836133f1919061525f565b905092915050565b6134048484846130a3565b613410848484846137db565b61344f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344690614dbe565b60405180910390fd5b50505050565b6060600082141561349d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135fd565b600082905060005b600082146134cf5780806134b890615517565b915050600a826134c891906152ec565b91506134a5565b60008167ffffffffffffffff811115613511577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135435781602001600182028036833780820191505090505b5090505b600085146135f65760018261355c9190615377565b9150600a8561356b919061558a565b6030613577919061525f565b60f81b8183815181106135b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135ef91906152ec565b9450613547565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613677838383613972565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136ba576136b581613977565b6136f9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136f8576136f783826139c0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561373c5761373781613b2d565b61377b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461377a576137798282613c70565b5b5b505050565b61378a8383613cef565b61379760008484846137db565b6137d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137cd90614dbe565b60405180910390fd5b505050565b60006137fc8473ffffffffffffffffffffffffffffffffffffffff16613ebd565b15613965578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613825612f04565b8786866040518563ffffffff1660e01b81526004016138479493929190614c8a565b602060405180830381600087803b15801561386157600080fd5b505af192505050801561389257506040513d601f19601f8201168201806040525081019061388f91906144eb565b60015b613915573d80600081146138c2576040519150601f19603f3d011682016040523d82523d6000602084013e6138c7565b606091505b5060008151141561390d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390490614dbe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061396a565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016139cd84611673565b6139d79190615377565b9050600060076000848152602001908152602001600020549050818114613abc576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613b419190615377565b9050600060096000848152602001908152602001600020549050600060088381548110613b97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613bdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613c54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613c7b83611673565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5690614fbe565b60405180910390fd5b613d6881612e98565b15613da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d9f90614dfe565b60405180910390fd5b613db46000838361366c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e04919061525f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613edc906154b4565b90600052602060002090601f016020900481019282613efe5760008555613f45565b82601f10613f1757805160ff1916838001178555613f45565b82800160010185558215613f45579182015b82811115613f44578251825591602001919060010190613f29565b5b509050613f529190613f56565b5090565b5b80821115613f6f576000816000905550600101613f57565b5090565b6000613f86613f8184615179565b615154565b90508083825260208201905082856020860282011115613fa557600080fd5b60005b85811015613fd55781613fbb888261405b565b845260208401935060208301925050600181019050613fa8565b5050509392505050565b6000613ff2613fed846151a5565b615154565b90508281526020810184848401111561400a57600080fd5b614015848285615472565b509392505050565b600061403061402b846151d6565b615154565b90508281526020810184848401111561404857600080fd5b614053848285615472565b509392505050565b60008135905061406a81615d44565b92915050565b60008135905061407f81615d5b565b92915050565b60008083601f84011261409757600080fd5b8235905067ffffffffffffffff8111156140b057600080fd5b6020830191508360208202830111156140c857600080fd5b9250929050565b600082601f8301126140e057600080fd5b81356140f0848260208601613f73565b91505092915050565b60008083601f84011261410b57600080fd5b8235905067ffffffffffffffff81111561412457600080fd5b60208301915083602082028301111561413c57600080fd5b9250929050565b60008135905061415281615d72565b92915050565b60008135905061416781615d89565b92915050565b60008151905061417c81615d89565b92915050565b600082601f83011261419357600080fd5b81356141a3848260208601613fdf565b91505092915050565b600082601f8301126141bd57600080fd5b81356141cd84826020860161401d565b91505092915050565b6000813590506141e581615da0565b92915050565b6000813590506141fa81615db7565b92915050565b60006020828403121561421257600080fd5b60006142208482850161405b565b91505092915050565b60006020828403121561423b57600080fd5b600061424984828501614070565b91505092915050565b6000806040838503121561426557600080fd5b60006142738582860161405b565b92505060206142848582860161405b565b9150509250929050565b6000806000606084860312156142a357600080fd5b60006142b18682870161405b565b93505060206142c28682870161405b565b92505060406142d3868287016141d6565b9150509250925092565b600080600080608085870312156142f357600080fd5b60006143018782880161405b565b94505060206143128782880161405b565b9350506040614323878288016141d6565b925050606085013567ffffffffffffffff81111561434057600080fd5b61434c87828801614182565b91505092959194509250565b6000806040838503121561436b57600080fd5b60006143798582860161405b565b925050602061438a85828601614143565b9150509250929050565b600080604083850312156143a757600080fd5b60006143b58582860161405b565b92505060206143c6858286016141d6565b9150509250929050565b600080604083850312156143e357600080fd5b60006143f18582860161405b565b9250506020614402858286016141eb565b9150509250929050565b6000806000806040858703121561442257600080fd5b600085013567ffffffffffffffff81111561443c57600080fd5b61444887828801614085565b9450945050602085013567ffffffffffffffff81111561446757600080fd5b614473878288016140f9565b925092505092959194509250565b60006020828403121561449357600080fd5b600082013567ffffffffffffffff8111156144ad57600080fd5b6144b9848285016140cf565b91505092915050565b6000602082840312156144d457600080fd5b60006144e284828501614158565b91505092915050565b6000602082840312156144fd57600080fd5b600061450b8482850161416d565b91505092915050565b60006020828403121561452657600080fd5b600082013567ffffffffffffffff81111561454057600080fd5b61454c848285016141ac565b91505092915050565b60006020828403121561456757600080fd5b6000614575848285016141d6565b91505092915050565b6000806040838503121561459157600080fd5b600061459f858286016141d6565b925050602083013567ffffffffffffffff8111156145bc57600080fd5b6145c8858286016141ac565b9150509250929050565b6000602082840312156145e457600080fd5b60006145f2848285016141eb565b91505092915050565b614604816153f1565b82525050565b614613816153df565b82525050565b61462281615403565b82525050565b60006146338261521c565b61463d8185615232565b935061464d818560208601615481565b61465681615677565b840191505092915050565b600061466c82615227565b6146768185615243565b9350614686818560208601615481565b61468f81615677565b840191505092915050565b60006146a582615227565b6146af8185615254565b93506146bf818560208601615481565b80840191505092915050565b600081546146d8816154b4565b6146e28186615243565b945060018216600081146146fd576001811461470f57614742565b60ff1983168652602086019350614742565b61471885615207565b60005b8381101561473a5781548189015260018201915060208101905061471b565b808801955050505b50505092915050565b60008154614758816154b4565b6147628186615254565b9450600182166000811461477d576001811461478e576147c1565b60ff198316865281860193506147c1565b61479785615207565b60005b838110156147b95781548189015260018201915060208101905061479a565b838801955050505b50505092915050565b60006147d7600c83615243565b91506147e282615688565b602082019050919050565b60006147fa601f83615243565b9150614805826156b1565b602082019050919050565b600061481d602b83615243565b9150614828826156da565b604082019050919050565b6000614840603283615243565b915061484b82615729565b604082019050919050565b6000614863602683615243565b915061486e82615778565b604082019050919050565b6000614886601c83615243565b9150614891826157c7565b602082019050919050565b60006148a9601483615243565b91506148b4826157f0565b602082019050919050565b60006148cc601983615243565b91506148d782615819565b602082019050919050565b60006148ef601783615243565b91506148fa82615842565b602082019050919050565b6000614912601d83615243565b915061491d8261586b565b602082019050919050565b6000614935602483615243565b915061494082615894565b604082019050919050565b6000614958601983615243565b9150614963826158e3565b602082019050919050565b600061497b602c83615243565b91506149868261590c565b604082019050919050565b600061499e601d83615243565b91506149a98261595b565b602082019050919050565b60006149c1601583615243565b91506149cc82615984565b602082019050919050565b60006149e4603883615243565b91506149ef826159ad565b604082019050919050565b6000614a07602a83615243565b9150614a12826159fc565b604082019050919050565b6000614a2a602983615243565b9150614a3582615a4b565b604082019050919050565b6000614a4d601783615243565b9150614a5882615a9a565b602082019050919050565b6000614a70602083615243565b9150614a7b82615ac3565b602082019050919050565b6000614a93602c83615243565b9150614a9e82615aec565b604082019050919050565b6000614ab6602083615243565b9150614ac182615b3b565b602082019050919050565b6000614ad9602983615243565b9150614ae482615b64565b604082019050919050565b6000614afc601383615243565b9150614b0782615bb3565b602082019050919050565b6000614b1f602183615243565b9150614b2a82615bdc565b604082019050919050565b6000614b42601883615243565b9150614b4d82615c2b565b602082019050919050565b6000614b65603183615243565b9150614b7082615c54565b604082019050919050565b6000614b88602c83615243565b9150614b9382615ca3565b604082019050919050565b6000614bab601583615243565b9150614bb682615cf2565b602082019050919050565b6000614bce601583615243565b9150614bd982615d1b565b602082019050919050565b614bed8161545b565b82525050565b614bfc81615465565b82525050565b6000614c0e828461469a565b915081905092915050565b6000614c25828461474b565b915081905092915050565b6000614c3c828561474b565b9150614c48828461469a565b91508190509392505050565b6000602082019050614c69600083018461460a565b92915050565b6000602082019050614c8460008301846145fb565b92915050565b6000608082019050614c9f600083018761460a565b614cac602083018661460a565b614cb96040830185614be4565b8181036060830152614ccb8184614628565b905095945050505050565b6000604082019050614ceb600083018561460a565b614cf86020830184614bf3565b9392505050565b6000602082019050614d146000830184614619565b92915050565b60006020820190508181036000830152614d348184614661565b905092915050565b60006020820190508181036000830152614d5681846146cb565b905092915050565b60006020820190508181036000830152614d77816147ca565b9050919050565b60006020820190508181036000830152614d97816147ed565b9050919050565b60006020820190508181036000830152614db781614810565b9050919050565b60006020820190508181036000830152614dd781614833565b9050919050565b60006020820190508181036000830152614df781614856565b9050919050565b60006020820190508181036000830152614e1781614879565b9050919050565b60006020820190508181036000830152614e378161489c565b9050919050565b60006020820190508181036000830152614e57816148bf565b9050919050565b60006020820190508181036000830152614e77816148e2565b9050919050565b60006020820190508181036000830152614e9781614905565b9050919050565b60006020820190508181036000830152614eb781614928565b9050919050565b60006020820190508181036000830152614ed78161494b565b9050919050565b60006020820190508181036000830152614ef78161496e565b9050919050565b60006020820190508181036000830152614f1781614991565b9050919050565b60006020820190508181036000830152614f37816149b4565b9050919050565b60006020820190508181036000830152614f57816149d7565b9050919050565b60006020820190508181036000830152614f77816149fa565b9050919050565b60006020820190508181036000830152614f9781614a1d565b9050919050565b60006020820190508181036000830152614fb781614a40565b9050919050565b60006020820190508181036000830152614fd781614a63565b9050919050565b60006020820190508181036000830152614ff781614a86565b9050919050565b6000602082019050818103600083015261501781614aa9565b9050919050565b6000602082019050818103600083015261503781614acc565b9050919050565b6000602082019050818103600083015261505781614aef565b9050919050565b6000602082019050818103600083015261507781614b12565b9050919050565b6000602082019050818103600083015261509781614b35565b9050919050565b600060208201905081810360008301526150b781614b58565b9050919050565b600060208201905081810360008301526150d781614b7b565b9050919050565b600060208201905081810360008301526150f781614b9e565b9050919050565b6000602082019050818103600083015261511781614bc1565b9050919050565b60006020820190506151336000830184614be4565b92915050565b600060208201905061514e6000830184614bf3565b92915050565b600061515e61516f565b905061516a82826154e6565b919050565b6000604051905090565b600067ffffffffffffffff82111561519457615193615648565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151c0576151bf615648565b5b6151c982615677565b9050602081019050919050565b600067ffffffffffffffff8211156151f1576151f0615648565b5b6151fa82615677565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061526a8261545b565b91506152758361545b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152aa576152a96155bb565b5b828201905092915050565b60006152c082615465565b91506152cb83615465565b92508260ff038211156152e1576152e06155bb565b5b828201905092915050565b60006152f78261545b565b91506153028361545b565b925082615312576153116155ea565b5b828204905092915050565b60006153288261545b565b91506153338361545b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561536c5761536b6155bb565b5b828202905092915050565b60006153828261545b565b915061538d8361545b565b9250828210156153a05761539f6155bb565b5b828203905092915050565b60006153b682615465565b91506153c183615465565b9250828210156153d4576153d36155bb565b5b828203905092915050565b60006153ea8261543b565b9050919050565b60006153fc8261543b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561549f578082015181840152602081019050615484565b838111156154ae576000848401525b50505050565b600060028204905060018216806154cc57607f821691505b602082108114156154e0576154df615619565b5b50919050565b6154ef82615677565b810181811067ffffffffffffffff8211171561550e5761550d615648565b5b80604052505050565b60006155228261545b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615555576155546155bb565b5b600182019050919050565b600061556b82615465565b915060ff82141561557f5761557e6155bb565b5b600182019050919050565b60006155958261545b565b91506155a08361545b565b9250826155b0576155af6155ea565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f496e76616c6964206e616d650000000000000000000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e616d6520697320616c72656164792073657421000000000000000000000000600082015250565b7f4e6f7420746865206f776e6572206f662074686973204c424d00000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f57686974656c6973742073616c65206973206e6f74204163746976652e000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4e616d6520697320616c72656164792074616b656e0000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4c697374206c656e67746873206e6f7420657175616c2e000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742077686974656c69737465642e0000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e74207061796d656e742e0000000000000000000000600082015250565b7f4d6178206d696e742070657220547820697320332e0000000000000000000000600082015250565b615d4d816153df565b8114615d5857600080fd5b50565b615d64816153f1565b8114615d6f57600080fd5b50565b615d7b81615403565b8114615d8657600080fd5b50565b615d928161540f565b8114615d9d57600080fd5b50565b615da98161545b565b8114615db457600080fd5b50565b615dc081615465565b8114615dcb57600080fd5b5056fea2646970667358221220850cb9e066a56f02ef376728e38258f7253e7d0f1df6a9ce49bf46f19448230a64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000001f400000000000000000000000056b982c6353785b93ab38646b2ca147b3a82f9e500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000034c424d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4c4947485442554c424d414e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d574b4d7862745151675a325147747770696243343541387976656631346b6e735a7a396453665a5a50746f6200000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _mintPrice (uint256): 500
Arg [1] : _withdrawalWallet (address): 0x56B982c6353785b93Ab38646B2CA147b3A82F9e5
Arg [2] : _ticker (string): LBM
Arg [3] : _name (string): LIGHTBULBMAN
Arg [4] : _baseURI (string): https://gateway.pinata.cloud/ipfs/QmWKMxbtQQgZ2QGtwpibC45A8yvef14knsZz9dSfZZPtob

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [1] : 00000000000000000000000056b982c6353785b93ab38646b2ca147b3a82f9e5
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4c424d0000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [8] : 4c4947485442554c424d414e0000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [10] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [11] : 732f516d574b4d7862745151675a325147747770696243343541387976656631
Arg [12] : 346b6e735a7a396453665a5a50746f6200000000000000000000000000000000


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.