ETH Price: $3,437.96 (-1.43%)
Gas: 9 Gwei

Token

FUDFamiglia (FUDFAM)
 

Overview

Max Total Supply

670 FUDFAM

Holders

238

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
ujq.eth
Balance
3 FUDFAM
0x477430e5d51a00a0d09f8c3cbe3db4aef7ca8ed6
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:
FUDFamiglia

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : FUDFamiglia.sol
/**
 *Submitted for verification at Etherscan.io on 2021-08-07
*/

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import '../interfaces/IFUDFamiglia.sol';



contract FUDFamiglia is ERC721Enumerable,Ownable,IFUDFamiglia {
    using Strings for uint256;

    bool mintActive=false;
    uint256 public _airdrop_giveaway_amount = 0;
    uint256 public _fudfSupply = 0;
    uint256 public _fudfPrice = 0; 

    uint256 _totalPresale=0;
    bool revealed = false;
    
    mapping(uint256 => string) private _tokenNames;
    mapping(string => bool) private _namesUsed;
    mapping(bytes32 => bool) public airdrop_giveaway_code;

    string private _BaseURI = '';
    string private _tokenRevealedBaseURI  = '';
    event Named(uint256 indexed index, string name);

    constructor(uint256 supply,uint256 price ,string memory provenence) public ERC721("FUDFamiglia","FUDFAM") {
        _fudfSupply = supply;
        _fudfPrice = price;
        _BaseURI= string(abi.encodePacked('https://www.fudfamiglia.com/', provenence, "/asset.php?token_Id="));
        mintActive=false;
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), 'Token does not exist');
        return string(abi.encodePacked(_BaseURI, tokenId.toString()));
    }
    
    function setBaseURI(string calldata URI) public onlyOwner {
        _BaseURI = URI;
    }
    

    
    function mintMafia(uint amount) external override payable {
           
        require(amount<11,"Amount is to much ");
        require(mintActive,"Mint Function is not Active yet");
        require(msg.value >= _fudfPrice * amount , "Ether value sent is not enough");
        uint256 bonus=0;
        if(amount == 10)
        {
            bonus=1;
        }
        uint256 total=amount+bonus;
        minting(total);
    }
    
    function giftMafia(address _to, uint amount) external override onlyOwner{
      
        require(totalSupply()+amount <= _fudfSupply, "Minting would exceed max supply");
        
        for(uint i = 0; i < amount; i++) {
            uint lastIndex = totalSupply();
            _mint(_to, lastIndex);
        }
    }
    
    function airdrop(string memory code) external override {
        bytes32 decode=byte_encrypt(STB(code));
        
        require(_airdrop_giveaway_amount > 0,"No giveway is available right now");
        require(airdrop_giveaway_code[decode],"A gift for this code does not exist");
        
        delete airdrop_giveaway_code[decode];
        _airdrop_giveaway_amount -= 1;
        minting(1);
    }


    function minting(uint amount) internal{
  
        require(totalSupply() + amount <= (_fudfSupply + 1 - _airdrop_giveaway_amount), "Minting would exceed max supply");
        
        for(uint i = 0; i < amount; i++) {
            uint lastIndex = totalSupply();
            _mint(msg.sender, lastIndex);
        }
    }
    
    function massiveCodeCreation(bytes32[] memory hashed_code) external override onlyOwner
    {
        require(totalSupply() +hashed_code.length <= _fudfSupply,"Codes would exceed max supply");

        for (uint256 i = 0; i < hashed_code.length; i++) {
            require(!airdrop_giveaway_code[hashed_code[i]],"Item with this code already exist");
            require(totalSupply() + 1  <= _fudfSupply,"Codes would exceed max supply");
            airdrop_giveaway_code[hashed_code[i]] = true;
            _airdrop_giveaway_amount += 1;
        }
        
    }
    function withdrawAll() external override onlyOwner 
    {
      uint256 balance = address(this).balance;

     payable(msg.sender).transfer(balance);
    }
    
    function withdraw(uint256 amount) external override onlyOwner 
    {
      uint256 balance = address(this).balance;

     payable(msg.sender).transfer(amount);
    }
    
    function disableAirdrop() external override onlyOwner {
        _airdrop_giveaway_amount = 0;
    }
    
    function STB(string memory stringkey) internal returns(bytes memory){
         bytes memory byteskey = bytes(stringkey);
         return byteskey;
    }
    
    function byte_encrypt(bytes memory byteskey) internal returns(bytes32 ){
        bytes32 bhash = sha256(byteskey);
        return bhash;
    }
    
    function revealAttribute(string memory baseURI) external override onlyOwner {
        revealed=true;
        _BaseURI = baseURI;
    }
    
    function setActive() external override onlyOwner{
        mintActive=true;
    }
    
    function setNonActive() external override onlyOwner{
        mintActive=false;
    }
    
    function setPrice(uint256 newprice) external override  onlyOwner{
        _fudfPrice=newprice;
    }
    
    function reserveIndexZero() external override  onlyOwner{
        _mint(msg.sender,0);
    }
    
    function price() public view virtual returns (uint256) {
        return _fudfPrice;
    }

    function max_supply() public view virtual returns (uint256) {
        return _fudfSupply;
    }
    
    function baseTokenURI() public view returns (string memory) {
        return _BaseURI;
    }
       function isNameUsed(string memory nameString) public view returns (bool) {
        return _namesUsed[toLower(nameString)];
    }
    
      function toLower(string memory str) public pure returns (string memory) {
        bytes memory bStr = bytes(str);
        bytes memory bLower = new bytes(bStr.length);
        for (uint256 i = 0; i < bStr.length; i++) {
            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 setName(uint256 tokenId, string memory name) public {
        require(revealed, "!reveal");
        address owner = ownerOf(tokenId);
        require(msg.sender == owner, "!token.owner");
        
        require(validateName(name) == true, "!name.valid");
        require(isNameUsed(name) == false, "name.used");
        if (bytes(_tokenNames[tokenId]).length > 0) {
            _namesUsed[toLower(_tokenNames[tokenId])] = false;
        }
        _namesUsed[toLower(name)] = true;
        _tokenNames[tokenId] = name;
        emit Named(tokenId, name);
    }
    
     function validateName(string memory str) public pure returns (bool) {
        bytes memory b = bytes(str);
        if (b.length < 3) return false;
        if (b.length > 32) return false;
        if (b[0] == 0x20) return false;
        if (b[b.length - 1] == 0x20) return false;
        bytes1 lastChar = b[0];
        for (uint256 i; i < b.length; i++) {
            bytes1 char = b[i];
            if (char == 0x20 && lastChar == 0x20) return false;
            if (
                !(char >= 0x41 && char <= 0x5A) &&
                !(char >= 0x61 && char <= 0x7A) &&
                !(char == 0x20)
            ) return false;
            lastChar = char;
        }
        return true;
    }
    
}

File 2 of 15 : IFUDFamiglia.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IFUDFamiglia {
    function  mintMafia(uint amount) external payable;
    
    function giftMafia(address _to, uint amount) external;
    
    function airdrop(string memory code) external;
    
    function massiveCodeCreation(bytes32[] memory hashed_code) external; 
      
    function setActive() external; 
    
    function setNonActive() external; 
    
    function withdraw(uint256 amount) external;
    
    function withdrawAll() external;
    
    function disableAirdrop() external;
     
    function revealAttribute(string memory baseURI) external;
    
    function setPrice(uint256 newprice) external;

    function reserveIndexZero() external;
}

File 3 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 4 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 5 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 6 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 7 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 15 : 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 9 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 10 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 11 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 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 : 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 14 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 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",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"string","name":"provenence","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"string","name":"name","type":"string"}],"name":"Named","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_airdrop_giveaway_amount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fudfPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fudfSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"code","type":"string"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"airdrop_giveaway_code","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"giftMafia","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":"isNameUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"hashed_code","type":"bytes32[]"}],"name":"massiveCodeCreation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintMafia","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveIndexZero","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"revealAttribute","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":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setNonActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newprice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60146101000a81548160ff0219169083151502179055506000600b556000600c556000600d556000600e556000600f60006101000a81548160ff021916908315150217905550604051806020016040528060008152506013908051906020019062000075929190620002cb565b5060405180602001604052806000815250601490805190602001906200009d929190620002cb565b50348015620000ab57600080fd5b506040516200614d3803806200614d8339818101604052810190620000d1919062000404565b6040518060400160405280600b81526020017f46554446616d69676c69610000000000000000000000000000000000000000008152506040518060400160405280600681526020017f46554446414d0000000000000000000000000000000000000000000000000000815250816000908051906020019062000155929190620002cb565b5080600190805190602001906200016e929190620002cb565b5050506200019162000185620001fd60201b60201c565b6200020560201b60201c565b82600c8190555081600d8190555080604051602001620001b29190620004f8565b60405160208183030381529060405260139080519060200190620001d8929190620002cb565b506000600a60146101000a81548160ff02191690831515021790555050505062000727565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d990620005e0565b90600052602060002090601f016020900481019282620002fd576000855562000349565b82601f106200031857805160ff191683800117855562000349565b8280016001018555821562000349579182015b82811115620003485782518255916020019190600101906200032b565b5b5090506200035891906200035c565b5090565b5b80821115620003775760008160009055506001016200035d565b5090565b6000620003926200038c8462000554565b6200052b565b905082815260208101848484011115620003ab57600080fd5b620003b8848285620005aa565b509392505050565b600082601f830112620003d257600080fd5b8151620003e48482602086016200037b565b91505092915050565b600081519050620003fe816200070d565b92915050565b6000806000606084860312156200041a57600080fd5b60006200042a86828701620003ed565b93505060206200043d86828701620003ed565b925050604084015167ffffffffffffffff8111156200045b57600080fd5b6200046986828701620003c0565b9150509250925092565b600062000480826200058a565b6200048c818562000595565b93506200049e818560208601620005aa565b80840191505092915050565b6000620004b960148362000595565b9150620004c682620006bb565b601482019050919050565b6000620004e0601c8362000595565b9150620004ed82620006e4565b601c82019050919050565b60006200050582620004d1565b915062000513828462000473565b91506200052082620004aa565b915081905092915050565b6000620005376200054a565b905062000545828262000616565b919050565b6000604051905090565b600067ffffffffffffffff8211156200057257620005716200067b565b5b6200057d82620006aa565b9050602081019050919050565b600081519050919050565b600081905092915050565b6000819050919050565b60005b83811015620005ca578082015181840152602081019050620005ad565b83811115620005da576000848401525b50505050565b60006002820490506001821680620005f957607f821691505b6020821081141562000610576200060f6200064c565b5b50919050565b6200062182620006aa565b810181811067ffffffffffffffff821117156200064357620006426200067b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f2f61737365742e7068703f746f6b656e5f49643d000000000000000000000000600082015250565b7f68747470733a2f2f7777772e66756466616d69676c69612e636f6d2f00000000600082015250565b6200071881620005a0565b81146200072457600080fd5b50565b615a1680620007376000396000f3fe60806040526004361061025c5760003560e01c8063715018a6116101445780639ffdb65a116100b6578063d547cfb71161007a578063d547cfb7146108bc578063e985e9c5146108e7578063ec75d62214610924578063f2fde38b14610961578063fe55932a1461098a578063fe57869b146109b35761025c565b80639ffdb65a146107c5578063a035b1fe14610802578063a22cb4651461082d578063b88d4fde14610856578063c87b56dd1461087f5761025c565b80638a333b50116101085780638a333b50146106b35780638da5cb5b146106de57806391b7f5ed14610709578063940da40a146107325780639416b4231461075d57806395d89b411461079a5761025c565b8063715018a61461060857806375172ddd1461061f578063760a8c2a146106485780637c6bb7d41461065f578063853828b61461069c5761025c565b806335616b7b116101dd5780635a92a94c116101a15780635a92a94c1461050c5780635f92d85e146105235780636352211e1461053a578063638bf1a7146105775780636b4b379f146105a057806370a08231146105cb5761025c565b806335616b7b1461042b5780634078f0db1461045457806342842e0e1461047d5780634f6ccce7146104a657806355f804b3146104e35761025c565b806318160ddd1161022457806318160ddd146103465780631da5b7921461037157806323b872dd1461039c5780632e1a7d4d146103c55780632f745c59146103ee5761025c565b806301ffc9a71461026157806303b7f6b41461029e57806306fdde03146102b5578063081812fc146102e0578063095ea7b31461031d575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906141a6565b6109cf565b604051610295919061494e565b60405180910390f35b3480156102aa57600080fd5b506102b3610a49565b005b3480156102c157600080fd5b506102ca610ae2565b6040516102d79190614969565b60405180910390f35b3480156102ec57600080fd5b506103076004803603810190610302919061427e565b610b74565b60405161031491906148e7565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f91906140d7565b610bf9565b005b34801561035257600080fd5b5061035b610d11565b6040516103689190614d4b565b60405180910390f35b34801561037d57600080fd5b50610386610d1e565b6040516103939190614d4b565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190613fd1565b610d24565b005b3480156103d157600080fd5b506103ec60048036038101906103e7919061427e565b610d84565b005b3480156103fa57600080fd5b50610415600480360381019061041091906140d7565b610e50565b6040516104229190614d4b565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190614113565b610ef5565b005b34801561046057600080fd5b5061047b6004803603810190610476919061423d565b61116b565b005b34801561048957600080fd5b506104a4600480360381019061049f9190613fd1565b611270565b005b3480156104b257600080fd5b506104cd60048036038101906104c8919061427e565b611290565b6040516104da9190614d4b565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906141f8565b611327565b005b34801561051857600080fd5b506105216113b9565b005b34801561052f57600080fd5b50610538611442565b005b34801561054657600080fd5b50610561600480360381019061055c919061427e565b6114c8565b60405161056e91906148e7565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906140d7565b61157a565b005b3480156105ac57600080fd5b506105b5611687565b6040516105c29190614d4b565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190613f6c565b61168d565b6040516105ff9190614d4b565b60405180910390f35b34801561061457600080fd5b5061061d611745565b005b34801561062b57600080fd5b506106466004803603810190610641919061423d565b6117cd565b005b34801561065457600080fd5b5061065d61187e565b005b34801561066b57600080fd5b5061068660048036038101906106819190614154565b611917565b604051610693919061494e565b60405180910390f35b3480156106a857600080fd5b506106b1611937565b005b3480156106bf57600080fd5b506106c8611a02565b6040516106d59190614d4b565b60405180910390f35b3480156106ea57600080fd5b506106f3611a0c565b60405161070091906148e7565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b919061427e565b611a36565b005b34801561073e57600080fd5b50610747611abc565b6040516107549190614d4b565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f919061423d565b611ac2565b6040516107919190614969565b60405180910390f35b3480156107a657600080fd5b506107af611d84565b6040516107bc9190614969565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e7919061423d565b611e16565b6040516107f9919061494e565b60405180910390f35b34801561080e57600080fd5b5061081761217b565b6040516108249190614d4b565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f919061409b565b612185565b005b34801561086257600080fd5b5061087d60048036038101906108789190614020565b612306565b005b34801561088b57600080fd5b506108a660048036038101906108a1919061427e565b612368565b6040516108b39190614969565b60405180910390f35b3480156108c857600080fd5b506108d16123e4565b6040516108de9190614969565b60405180910390f35b3480156108f357600080fd5b5061090e60048036038101906109099190613f95565b612476565b60405161091b919061494e565b60405180910390f35b34801561093057600080fd5b5061094b6004803603810190610946919061423d565b61250a565b604051610958919061494e565b60405180910390f35b34801561096d57600080fd5b5061098860048036038101906109839190613f6c565b612547565b005b34801561099657600080fd5b506109b160048036038101906109ac91906142a7565b61263f565b005b6109cd60048036038101906109c8919061427e565b61294e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a425750610a4182612a5e565b5b9050919050565b610a51612b40565b73ffffffffffffffffffffffffffffffffffffffff16610a6f611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90614bcb565b60405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b606060008054610af190615095565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1d90615095565b8015610b6a5780601f10610b3f57610100808354040283529160200191610b6a565b820191906000526020600020905b815481529060010190602001808311610b4d57829003601f168201915b5050505050905090565b6000610b7f82612b48565b610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590614bab565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c04826114c8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90614c6b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c94612b40565b73ffffffffffffffffffffffffffffffffffffffff161480610cc35750610cc281610cbd612b40565b612476565b5b610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990614aeb565b60405180910390fd5b610d0c8383612bb4565b505050565b6000600880549050905090565b600b5481565b610d35610d2f612b40565b82612c6d565b610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90614c8b565b60405180910390fd5b610d7f838383612d4b565b505050565b610d8c612b40565b73ffffffffffffffffffffffffffffffffffffffff16610daa611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790614bcb565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610e4b573d6000803e3d6000fd5b505050565b6000610e5b8361168d565b8210610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e93906149ab565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610efd612b40565b73ffffffffffffffffffffffffffffffffffffffff16610f1b611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614bcb565b60405180910390fd5b600c548151610f7e610d11565b610f889190614e7c565b1115610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc09061498b565b60405180910390fd5b60005b81518110156111675760126000838381518110611012577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90614d0b565b60405180910390fd5b600c546001611083610d11565b61108d9190614e7c565b11156110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c59061498b565b60405180910390fd5b60016012600084848151811061110d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600082825461114d9190614e7c565b92505081905550808061115f906150f8565b915050610fcc565b5050565b600061117e61117983612fa7565b612fb7565b90506000600b54116111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90614c0b565b60405180910390fd5b6012600082815260200190815260200160002060009054906101000a900460ff16611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90614a4b565b60405180910390fd5b6012600082815260200190815260200160002060006101000a81549060ff02191690556001600b600082825461125b9190614f94565b9250508190555061126c6001613015565b5050565b61128b83838360405180602001604052806000815250612306565b505050565b600061129a610d11565b82106112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290614cab565b60405180910390fd5b60088281548110611315577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61132f612b40565b73ffffffffffffffffffffffffffffffffffffffff1661134d611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90614bcb565b60405180910390fd5b8181601391906113b4929190613c00565b505050565b6113c1612b40565b73ffffffffffffffffffffffffffffffffffffffff166113df611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90614bcb565b60405180910390fd5b6114403360006130be565b565b61144a612b40565b73ffffffffffffffffffffffffffffffffffffffff16611468611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614bcb565b60405180910390fd5b6000600b81905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890614b2b565b60405180910390fd5b80915050919050565b611582612b40565b73ffffffffffffffffffffffffffffffffffffffff166115a0611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90614bcb565b60405180910390fd5b600c5481611602610d11565b61160c9190614e7c565b111561164d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164490614b4b565b60405180910390fd5b60005b81811015611682576000611662610d11565b905061166e84826130be565b50808061167a906150f8565b915050611650565b505050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590614b0b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61174d612b40565b73ffffffffffffffffffffffffffffffffffffffff1661176b611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890614bcb565b60405180910390fd5b6117cb600061328c565b565b6117d5612b40565b73ffffffffffffffffffffffffffffffffffffffff166117f3611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184090614bcb565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550806013908051906020019061187a929190613c86565b5050565b611886612b40565b73ffffffffffffffffffffffffffffffffffffffff166118a4611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190614bcb565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b60126020528060005260406000206000915054906101000a900460ff1681565b61193f612b40565b73ffffffffffffffffffffffffffffffffffffffff1661195d611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90614bcb565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156119fe573d6000803e3d6000fd5b5050565b6000600c54905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a3e612b40565b73ffffffffffffffffffffffffffffffffffffffff16611a5c611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa990614bcb565b60405180910390fd5b80600d8190555050565b600c5481565b606060008290506000815167ffffffffffffffff811115611b0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b3e5781602001600182028036833780820191505090505b50905060005b8251811015611d79576041838281518110611b88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1610158015611bf15750605a838281518110611bdd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1611155b15611cb9576020838281518110611c31577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c611c499190614ed2565b60f81b828281518110611c85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d66565b828181518110611cf2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b828281518110611d36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b8080611d71906150f8565b915050611b44565b508092505050919050565b606060018054611d9390615095565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbf90615095565b8015611e0c5780601f10611de157610100808354040283529160200191611e0c565b820191906000526020600020905b815481529060010190602001808311611def57829003601f168201915b5050505050905090565b600080829050600381511015611e30576000915050612176565b602081511115611e44576000915050612176565b602060f81b81600081518110611e83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611ec0576000915050612176565b602060f81b8160018351611ed49190614f94565b81518110611f0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611f48576000915050612176565b600081600081518110611f84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b905060005b825181101561216e576000838281518110611fd8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b9050602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614801561203f5750602060f81b837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b15612051576000945050505050612176565b604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156120ad5750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b1580156121135750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156121115750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b80156121455750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15612157576000945050505050612176565b809250508080612166906150f8565b915050611f94565b506001925050505b919050565b6000600d54905090565b61218d612b40565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290614a8b565b60405180910390fd5b8060056000612208612b40565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122b5612b40565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122fa919061494e565b60405180910390a35050565b612317612311612b40565b83612c6d565b612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d90614c8b565b60405180910390fd5b61236284848484613352565b50505050565b606061237382612b48565b6123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990614aab565b60405180910390fd5b60136123bd836133ae565b6040516020016123ce9291906148c3565b6040516020818303038152906040529050919050565b6060601380546123f390615095565b80601f016020809104026020016040519081016040528092919081815260200182805461241f90615095565b801561246c5780601f106124415761010080835404028352916020019161246c565b820191906000526020600020905b81548152906001019060200180831161244f57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601161251783611ac2565b60405161252491906148ac565b908152602001604051809103902060009054906101000a900460ff169050919050565b61254f612b40565b73ffffffffffffffffffffffffffffffffffffffff1661256d611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146125c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ba90614bcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262a906149eb565b60405180910390fd5b61263c8161328c565b50565b600f60009054906101000a900460ff1661268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590614a0b565b60405180910390fd5b6000612699836114c8565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270090614beb565b60405180910390fd5b6001151561271683611e16565b151514612758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274f90614ccb565b60405180910390fd5b600015156127658361250a565b1515146127a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279e90614ceb565b60405180910390fd5b60006010600085815260200190815260200160002080546127c790615095565b905011156128aa57600060116128776010600087815260200190815260200160002080546127f490615095565b80601f016020809104026020016040519081016040528092919081815260200182805461282090615095565b801561286d5780601f106128425761010080835404028352916020019161286d565b820191906000526020600020905b81548152906001019060200180831161285057829003601f168201915b5050505050611ac2565b60405161288491906148ac565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505b600160116128b784611ac2565b6040516128c491906148ac565b908152602001604051809103902060006101000a81548160ff02191690831515021790555081601060008581526020019081526020016000209080519060200190612910929190613c86565b50827f9726e950b835e1f7f4fe747cca4223de678452a4f67c102d50408e22e94e9485836040516129419190614969565b60405180910390a2505050565b600b8110612991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298890614b8b565b60405180910390fd5b600a60149054906101000a900460ff166129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790614c4b565b60405180910390fd5b80600d546129ee9190614f3a565b341015612a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790614d2b565b60405180910390fd5b6000600a821415612a4057600190505b60008183612a4e9190614e7c565b9050612a5981613015565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b2957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b395750612b388261355b565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c27836114c8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c7882612b48565b612cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cae90614acb565b60405180910390fd5b6000612cc2836114c8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d3157508373ffffffffffffffffffffffffffffffffffffffff16612d1984610b74565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d425750612d418185612476565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d6b826114c8565b73ffffffffffffffffffffffffffffffffffffffff1614612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db890614c2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2890614a6b565b60405180910390fd5b612e3c8383836135c5565b612e47600082612bb4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e979190614f94565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eee9190614e7c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6060600082905080915050919050565b600080600283604051612fca9190614895565b602060405180830381855afa158015612fe7573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061300a919061417d565b905080915050919050565b600b546001600c546130279190614e7c565b6130319190614f94565b8161303a610d11565b6130449190614e7c565b1115613085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307c90614b4b565b60405180910390fd5b60005b818110156130ba57600061309a610d11565b90506130a633826130be565b5080806130b2906150f8565b915050613088565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561312e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312590614b6b565b60405180910390fd5b61313781612b48565b15613177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316e90614a2b565b60405180910390fd5b613183600083836135c5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131d39190614e7c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61335d848484612d4b565b613369848484846136d9565b6133a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339f906149cb565b60405180910390fd5b50505050565b606060008214156133f6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613556565b600082905060005b60008214613428578080613411906150f8565b915050600a826134219190614f09565b91506133fe565b60008167ffffffffffffffff81111561346a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561349c5781602001600182028036833780820191505090505b5090505b6000851461354f576001826134b59190614f94565b9150600a856134c49190615141565b60306134d09190614e7c565b60f81b81838151811061350c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135489190614f09565b94506134a0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6135d0838383613870565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136135761360e81613875565b613652565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136515761365083826138be565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136955761369081613a2b565b6136d4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146136d3576136d28282613b6e565b5b5b505050565b60006136fa8473ffffffffffffffffffffffffffffffffffffffff16613bed565b15613863578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613723612b40565b8786866040518563ffffffff1660e01b81526004016137459493929190614902565b602060405180830381600087803b15801561375f57600080fd5b505af192505050801561379057506040513d601f19601f8201168201806040525081019061378d91906141cf565b60015b613813573d80600081146137c0576040519150601f19603f3d011682016040523d82523d6000602084013e6137c5565b606091505b5060008151141561380b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613802906149cb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613868565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138cb8461168d565b6138d59190614f94565b90506000600760008481526020019081526020016000205490508181146139ba576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a3f9190614f94565b9050600060096000848152602001908152602001600020549050600060088381548110613a95577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613add577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613b52577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613b798361168d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613c0c90615095565b90600052602060002090601f016020900481019282613c2e5760008555613c75565b82601f10613c4757803560ff1916838001178555613c75565b82800160010185558215613c75579182015b82811115613c74578235825591602001919060010190613c59565b5b509050613c829190613d0c565b5090565b828054613c9290615095565b90600052602060002090601f016020900481019282613cb45760008555613cfb565b82601f10613ccd57805160ff1916838001178555613cfb565b82800160010185558215613cfb579182015b82811115613cfa578251825591602001919060010190613cdf565b5b509050613d089190613d0c565b5090565b5b80821115613d25576000816000905550600101613d0d565b5090565b6000613d3c613d3784614d8b565b614d66565b90508083825260208201905082856020860282011115613d5b57600080fd5b60005b85811015613d8b5781613d718882613e65565b845260208401935060208301925050600181019050613d5e565b5050509392505050565b6000613da8613da384614db7565b614d66565b905082815260208101848484011115613dc057600080fd5b613dcb848285615053565b509392505050565b6000613de6613de184614de8565b614d66565b905082815260208101848484011115613dfe57600080fd5b613e09848285615053565b509392505050565b600081359050613e208161596d565b92915050565b600082601f830112613e3757600080fd5b8135613e47848260208601613d29565b91505092915050565b600081359050613e5f81615984565b92915050565b600081359050613e748161599b565b92915050565b600081519050613e898161599b565b92915050565b600081359050613e9e816159b2565b92915050565b600081519050613eb3816159b2565b92915050565b600082601f830112613eca57600080fd5b8135613eda848260208601613d95565b91505092915050565b60008083601f840112613ef557600080fd5b8235905067ffffffffffffffff811115613f0e57600080fd5b602083019150836001820283011115613f2657600080fd5b9250929050565b600082601f830112613f3e57600080fd5b8135613f4e848260208601613dd3565b91505092915050565b600081359050613f66816159c9565b92915050565b600060208284031215613f7e57600080fd5b6000613f8c84828501613e11565b91505092915050565b60008060408385031215613fa857600080fd5b6000613fb685828601613e11565b9250506020613fc785828601613e11565b9150509250929050565b600080600060608486031215613fe657600080fd5b6000613ff486828701613e11565b935050602061400586828701613e11565b925050604061401686828701613f57565b9150509250925092565b6000806000806080858703121561403657600080fd5b600061404487828801613e11565b945050602061405587828801613e11565b935050604061406687828801613f57565b925050606085013567ffffffffffffffff81111561408357600080fd5b61408f87828801613eb9565b91505092959194509250565b600080604083850312156140ae57600080fd5b60006140bc85828601613e11565b92505060206140cd85828601613e50565b9150509250929050565b600080604083850312156140ea57600080fd5b60006140f885828601613e11565b925050602061410985828601613f57565b9150509250929050565b60006020828403121561412557600080fd5b600082013567ffffffffffffffff81111561413f57600080fd5b61414b84828501613e26565b91505092915050565b60006020828403121561416657600080fd5b600061417484828501613e65565b91505092915050565b60006020828403121561418f57600080fd5b600061419d84828501613e7a565b91505092915050565b6000602082840312156141b857600080fd5b60006141c684828501613e8f565b91505092915050565b6000602082840312156141e157600080fd5b60006141ef84828501613ea4565b91505092915050565b6000806020838503121561420b57600080fd5b600083013567ffffffffffffffff81111561422557600080fd5b61423185828601613ee3565b92509250509250929050565b60006020828403121561424f57600080fd5b600082013567ffffffffffffffff81111561426957600080fd5b61427584828501613f2d565b91505092915050565b60006020828403121561429057600080fd5b600061429e84828501613f57565b91505092915050565b600080604083850312156142ba57600080fd5b60006142c885828601613f57565b925050602083013567ffffffffffffffff8111156142e557600080fd5b6142f185828601613f2d565b9150509250929050565b61430481614fc8565b82525050565b61431381614fda565b82525050565b600061432482614e2e565b61432e8185614e44565b935061433e818560208601615062565b6143478161522e565b840191505092915050565b600061435d82614e2e565b6143678185614e55565b9350614377818560208601615062565b80840191505092915050565b600061438e82614e39565b6143988185614e60565b93506143a8818560208601615062565b6143b18161522e565b840191505092915050565b60006143c782614e39565b6143d18185614e71565b93506143e1818560208601615062565b80840191505092915050565b600081546143fa81615095565b6144048186614e71565b9450600182166000811461441f576001811461443057614463565b60ff19831686528186019350614463565b61443985614e19565b60005b8381101561445b5781548189015260018201915060208101905061443c565b838801955050505b50505092915050565b6000614479601d83614e60565b91506144848261523f565b602082019050919050565b600061449c602b83614e60565b91506144a782615268565b604082019050919050565b60006144bf603283614e60565b91506144ca826152b7565b604082019050919050565b60006144e2602683614e60565b91506144ed82615306565b604082019050919050565b6000614505600783614e60565b915061451082615355565b602082019050919050565b6000614528601c83614e60565b91506145338261537e565b602082019050919050565b600061454b602383614e60565b9150614556826153a7565b604082019050919050565b600061456e602483614e60565b9150614579826153f6565b604082019050919050565b6000614591601983614e60565b915061459c82615445565b602082019050919050565b60006145b4601483614e60565b91506145bf8261546e565b602082019050919050565b60006145d7602c83614e60565b91506145e282615497565b604082019050919050565b60006145fa603883614e60565b9150614605826154e6565b604082019050919050565b600061461d602a83614e60565b915061462882615535565b604082019050919050565b6000614640602983614e60565b915061464b82615584565b604082019050919050565b6000614663601f83614e60565b915061466e826155d3565b602082019050919050565b6000614686602083614e60565b9150614691826155fc565b602082019050919050565b60006146a9601283614e60565b91506146b482615625565b602082019050919050565b60006146cc602c83614e60565b91506146d78261564e565b604082019050919050565b60006146ef602083614e60565b91506146fa8261569d565b602082019050919050565b6000614712600c83614e60565b915061471d826156c6565b602082019050919050565b6000614735602183614e60565b9150614740826156ef565b604082019050919050565b6000614758602983614e60565b91506147638261573e565b604082019050919050565b600061477b601f83614e60565b91506147868261578d565b602082019050919050565b600061479e602183614e60565b91506147a9826157b6565b604082019050919050565b60006147c1603183614e60565b91506147cc82615805565b604082019050919050565b60006147e4602c83614e60565b91506147ef82615854565b604082019050919050565b6000614807600b83614e60565b9150614812826158a3565b602082019050919050565b600061482a600983614e60565b9150614835826158cc565b602082019050919050565b600061484d602183614e60565b9150614858826158f5565b604082019050919050565b6000614870601e83614e60565b915061487b82615944565b602082019050919050565b61488f8161503c565b82525050565b60006148a18284614352565b915081905092915050565b60006148b882846143bc565b915081905092915050565b60006148cf82856143ed565b91506148db82846143bc565b91508190509392505050565b60006020820190506148fc60008301846142fb565b92915050565b600060808201905061491760008301876142fb565b61492460208301866142fb565b6149316040830185614886565b81810360608301526149438184614319565b905095945050505050565b6000602082019050614963600083018461430a565b92915050565b600060208201905081810360008301526149838184614383565b905092915050565b600060208201905081810360008301526149a48161446c565b9050919050565b600060208201905081810360008301526149c48161448f565b9050919050565b600060208201905081810360008301526149e4816144b2565b9050919050565b60006020820190508181036000830152614a04816144d5565b9050919050565b60006020820190508181036000830152614a24816144f8565b9050919050565b60006020820190508181036000830152614a448161451b565b9050919050565b60006020820190508181036000830152614a648161453e565b9050919050565b60006020820190508181036000830152614a8481614561565b9050919050565b60006020820190508181036000830152614aa481614584565b9050919050565b60006020820190508181036000830152614ac4816145a7565b9050919050565b60006020820190508181036000830152614ae4816145ca565b9050919050565b60006020820190508181036000830152614b04816145ed565b9050919050565b60006020820190508181036000830152614b2481614610565b9050919050565b60006020820190508181036000830152614b4481614633565b9050919050565b60006020820190508181036000830152614b6481614656565b9050919050565b60006020820190508181036000830152614b8481614679565b9050919050565b60006020820190508181036000830152614ba48161469c565b9050919050565b60006020820190508181036000830152614bc4816146bf565b9050919050565b60006020820190508181036000830152614be4816146e2565b9050919050565b60006020820190508181036000830152614c0481614705565b9050919050565b60006020820190508181036000830152614c2481614728565b9050919050565b60006020820190508181036000830152614c448161474b565b9050919050565b60006020820190508181036000830152614c648161476e565b9050919050565b60006020820190508181036000830152614c8481614791565b9050919050565b60006020820190508181036000830152614ca4816147b4565b9050919050565b60006020820190508181036000830152614cc4816147d7565b9050919050565b60006020820190508181036000830152614ce4816147fa565b9050919050565b60006020820190508181036000830152614d048161481d565b9050919050565b60006020820190508181036000830152614d2481614840565b9050919050565b60006020820190508181036000830152614d4481614863565b9050919050565b6000602082019050614d606000830184614886565b92915050565b6000614d70614d81565b9050614d7c82826150c7565b919050565b6000604051905090565b600067ffffffffffffffff821115614da657614da56151ff565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614dd257614dd16151ff565b5b614ddb8261522e565b9050602081019050919050565b600067ffffffffffffffff821115614e0357614e026151ff565b5b614e0c8261522e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e878261503c565b9150614e928361503c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ec757614ec6615172565b5b828201905092915050565b6000614edd82615046565b9150614ee883615046565b92508260ff03821115614efe57614efd615172565b5b828201905092915050565b6000614f148261503c565b9150614f1f8361503c565b925082614f2f57614f2e6151a1565b5b828204905092915050565b6000614f458261503c565b9150614f508361503c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f8957614f88615172565b5b828202905092915050565b6000614f9f8261503c565b9150614faa8361503c565b925082821015614fbd57614fbc615172565b5b828203905092915050565b6000614fd38261501c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615080578082015181840152602081019050615065565b8381111561508f576000848401525b50505050565b600060028204905060018216806150ad57607f821691505b602082108114156150c1576150c06151d0565b5b50919050565b6150d08261522e565b810181811067ffffffffffffffff821117156150ef576150ee6151ff565b5b80604052505050565b60006151038261503c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561513657615135615172565b5b600182019050919050565b600061514c8261503c565b91506151578361503c565b925082615167576151666151a1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f436f64657320776f756c6420657863656564206d617820737570706c79000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2172657665616c00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f41206769667420666f72207468697320636f646520646f6573206e6f7420657860008201527f6973740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f416d6f756e7420697320746f206d756368200000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f21746f6b656e2e6f776e65720000000000000000000000000000000000000000600082015250565b7f4e6f206769766577617920697320617661696c61626c65207269676874206e6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e742046756e6374696f6e206973206e6f74204163746976652079657400600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f216e616d652e76616c6964000000000000000000000000000000000000000000600082015250565b7f6e616d652e757365640000000000000000000000000000000000000000000000600082015250565b7f4974656d2077697468207468697320636f646520616c7265616479206578697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420656e6f7567680000600082015250565b61597681614fc8565b811461598157600080fd5b50565b61598d81614fda565b811461599857600080fd5b50565b6159a481614fe6565b81146159af57600080fd5b50565b6159bb81614ff0565b81146159c657600080fd5b50565b6159d28161503c565b81146159dd57600080fd5b5056fea2646970667358221220e25403a364bed994a53e2d0fd38c3c871f3f1062c2383932c758d34708692a2564736f6c6343000804003300000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000002faf0800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004032313833373137333763613666386237366361363537633831623166313339333066323166323239626338343838383938336261653364316138363738323565

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063715018a6116101445780639ffdb65a116100b6578063d547cfb71161007a578063d547cfb7146108bc578063e985e9c5146108e7578063ec75d62214610924578063f2fde38b14610961578063fe55932a1461098a578063fe57869b146109b35761025c565b80639ffdb65a146107c5578063a035b1fe14610802578063a22cb4651461082d578063b88d4fde14610856578063c87b56dd1461087f5761025c565b80638a333b50116101085780638a333b50146106b35780638da5cb5b146106de57806391b7f5ed14610709578063940da40a146107325780639416b4231461075d57806395d89b411461079a5761025c565b8063715018a61461060857806375172ddd1461061f578063760a8c2a146106485780637c6bb7d41461065f578063853828b61461069c5761025c565b806335616b7b116101dd5780635a92a94c116101a15780635a92a94c1461050c5780635f92d85e146105235780636352211e1461053a578063638bf1a7146105775780636b4b379f146105a057806370a08231146105cb5761025c565b806335616b7b1461042b5780634078f0db1461045457806342842e0e1461047d5780634f6ccce7146104a657806355f804b3146104e35761025c565b806318160ddd1161022457806318160ddd146103465780631da5b7921461037157806323b872dd1461039c5780632e1a7d4d146103c55780632f745c59146103ee5761025c565b806301ffc9a71461026157806303b7f6b41461029e57806306fdde03146102b5578063081812fc146102e0578063095ea7b31461031d575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906141a6565b6109cf565b604051610295919061494e565b60405180910390f35b3480156102aa57600080fd5b506102b3610a49565b005b3480156102c157600080fd5b506102ca610ae2565b6040516102d79190614969565b60405180910390f35b3480156102ec57600080fd5b506103076004803603810190610302919061427e565b610b74565b60405161031491906148e7565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f91906140d7565b610bf9565b005b34801561035257600080fd5b5061035b610d11565b6040516103689190614d4b565b60405180910390f35b34801561037d57600080fd5b50610386610d1e565b6040516103939190614d4b565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190613fd1565b610d24565b005b3480156103d157600080fd5b506103ec60048036038101906103e7919061427e565b610d84565b005b3480156103fa57600080fd5b50610415600480360381019061041091906140d7565b610e50565b6040516104229190614d4b565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190614113565b610ef5565b005b34801561046057600080fd5b5061047b6004803603810190610476919061423d565b61116b565b005b34801561048957600080fd5b506104a4600480360381019061049f9190613fd1565b611270565b005b3480156104b257600080fd5b506104cd60048036038101906104c8919061427e565b611290565b6040516104da9190614d4b565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906141f8565b611327565b005b34801561051857600080fd5b506105216113b9565b005b34801561052f57600080fd5b50610538611442565b005b34801561054657600080fd5b50610561600480360381019061055c919061427e565b6114c8565b60405161056e91906148e7565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906140d7565b61157a565b005b3480156105ac57600080fd5b506105b5611687565b6040516105c29190614d4b565b60405180910390f35b3480156105d757600080fd5b506105f260048036038101906105ed9190613f6c565b61168d565b6040516105ff9190614d4b565b60405180910390f35b34801561061457600080fd5b5061061d611745565b005b34801561062b57600080fd5b506106466004803603810190610641919061423d565b6117cd565b005b34801561065457600080fd5b5061065d61187e565b005b34801561066b57600080fd5b5061068660048036038101906106819190614154565b611917565b604051610693919061494e565b60405180910390f35b3480156106a857600080fd5b506106b1611937565b005b3480156106bf57600080fd5b506106c8611a02565b6040516106d59190614d4b565b60405180910390f35b3480156106ea57600080fd5b506106f3611a0c565b60405161070091906148e7565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b919061427e565b611a36565b005b34801561073e57600080fd5b50610747611abc565b6040516107549190614d4b565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f919061423d565b611ac2565b6040516107919190614969565b60405180910390f35b3480156107a657600080fd5b506107af611d84565b6040516107bc9190614969565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e7919061423d565b611e16565b6040516107f9919061494e565b60405180910390f35b34801561080e57600080fd5b5061081761217b565b6040516108249190614d4b565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f919061409b565b612185565b005b34801561086257600080fd5b5061087d60048036038101906108789190614020565b612306565b005b34801561088b57600080fd5b506108a660048036038101906108a1919061427e565b612368565b6040516108b39190614969565b60405180910390f35b3480156108c857600080fd5b506108d16123e4565b6040516108de9190614969565b60405180910390f35b3480156108f357600080fd5b5061090e60048036038101906109099190613f95565b612476565b60405161091b919061494e565b60405180910390f35b34801561093057600080fd5b5061094b6004803603810190610946919061423d565b61250a565b604051610958919061494e565b60405180910390f35b34801561096d57600080fd5b5061098860048036038101906109839190613f6c565b612547565b005b34801561099657600080fd5b506109b160048036038101906109ac91906142a7565b61263f565b005b6109cd60048036038101906109c8919061427e565b61294e565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a425750610a4182612a5e565b5b9050919050565b610a51612b40565b73ffffffffffffffffffffffffffffffffffffffff16610a6f611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90614bcb565b60405180910390fd5b6000600a60146101000a81548160ff021916908315150217905550565b606060008054610af190615095565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1d90615095565b8015610b6a5780601f10610b3f57610100808354040283529160200191610b6a565b820191906000526020600020905b815481529060010190602001808311610b4d57829003601f168201915b5050505050905090565b6000610b7f82612b48565b610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590614bab565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c04826114c8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90614c6b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c94612b40565b73ffffffffffffffffffffffffffffffffffffffff161480610cc35750610cc281610cbd612b40565b612476565b5b610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990614aeb565b60405180910390fd5b610d0c8383612bb4565b505050565b6000600880549050905090565b600b5481565b610d35610d2f612b40565b82612c6d565b610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90614c8b565b60405180910390fd5b610d7f838383612d4b565b505050565b610d8c612b40565b73ffffffffffffffffffffffffffffffffffffffff16610daa611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790614bcb565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610e4b573d6000803e3d6000fd5b505050565b6000610e5b8361168d565b8210610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e93906149ab565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610efd612b40565b73ffffffffffffffffffffffffffffffffffffffff16610f1b611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614bcb565b60405180910390fd5b600c548151610f7e610d11565b610f889190614e7c565b1115610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc09061498b565b60405180910390fd5b60005b81518110156111675760126000838381518110611012577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90614d0b565b60405180910390fd5b600c546001611083610d11565b61108d9190614e7c565b11156110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c59061498b565b60405180910390fd5b60016012600084848151811061110d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600082825461114d9190614e7c565b92505081905550808061115f906150f8565b915050610fcc565b5050565b600061117e61117983612fa7565b612fb7565b90506000600b54116111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90614c0b565b60405180910390fd5b6012600082815260200190815260200160002060009054906101000a900460ff16611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90614a4b565b60405180910390fd5b6012600082815260200190815260200160002060006101000a81549060ff02191690556001600b600082825461125b9190614f94565b9250508190555061126c6001613015565b5050565b61128b83838360405180602001604052806000815250612306565b505050565b600061129a610d11565b82106112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290614cab565b60405180910390fd5b60088281548110611315577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61132f612b40565b73ffffffffffffffffffffffffffffffffffffffff1661134d611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90614bcb565b60405180910390fd5b8181601391906113b4929190613c00565b505050565b6113c1612b40565b73ffffffffffffffffffffffffffffffffffffffff166113df611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90614bcb565b60405180910390fd5b6114403360006130be565b565b61144a612b40565b73ffffffffffffffffffffffffffffffffffffffff16611468611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614bcb565b60405180910390fd5b6000600b81905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890614b2b565b60405180910390fd5b80915050919050565b611582612b40565b73ffffffffffffffffffffffffffffffffffffffff166115a0611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90614bcb565b60405180910390fd5b600c5481611602610d11565b61160c9190614e7c565b111561164d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164490614b4b565b60405180910390fd5b60005b81811015611682576000611662610d11565b905061166e84826130be565b50808061167a906150f8565b915050611650565b505050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590614b0b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61174d612b40565b73ffffffffffffffffffffffffffffffffffffffff1661176b611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890614bcb565b60405180910390fd5b6117cb600061328c565b565b6117d5612b40565b73ffffffffffffffffffffffffffffffffffffffff166117f3611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184090614bcb565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550806013908051906020019061187a929190613c86565b5050565b611886612b40565b73ffffffffffffffffffffffffffffffffffffffff166118a4611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190614bcb565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b60126020528060005260406000206000915054906101000a900460ff1681565b61193f612b40565b73ffffffffffffffffffffffffffffffffffffffff1661195d611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90614bcb565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156119fe573d6000803e3d6000fd5b5050565b6000600c54905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a3e612b40565b73ffffffffffffffffffffffffffffffffffffffff16611a5c611a0c565b73ffffffffffffffffffffffffffffffffffffffff1614611ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa990614bcb565b60405180910390fd5b80600d8190555050565b600c5481565b606060008290506000815167ffffffffffffffff811115611b0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b3e5781602001600182028036833780820191505090505b50905060005b8251811015611d79576041838281518110611b88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1610158015611bf15750605a838281518110611bdd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1611155b15611cb9576020838281518110611c31577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c611c499190614ed2565b60f81b828281518110611c85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d66565b828181518110611cf2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b828281518110611d36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b8080611d71906150f8565b915050611b44565b508092505050919050565b606060018054611d9390615095565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbf90615095565b8015611e0c5780601f10611de157610100808354040283529160200191611e0c565b820191906000526020600020905b815481529060010190602001808311611def57829003601f168201915b5050505050905090565b600080829050600381511015611e30576000915050612176565b602081511115611e44576000915050612176565b602060f81b81600081518110611e83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611ec0576000915050612176565b602060f81b8160018351611ed49190614f94565b81518110611f0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611f48576000915050612176565b600081600081518110611f84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b905060005b825181101561216e576000838281518110611fd8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b9050602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614801561203f5750602060f81b837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b15612051576000945050505050612176565b604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156120ad5750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b1580156121135750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156121115750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b80156121455750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15612157576000945050505050612176565b809250508080612166906150f8565b915050611f94565b506001925050505b919050565b6000600d54905090565b61218d612b40565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290614a8b565b60405180910390fd5b8060056000612208612b40565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122b5612b40565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122fa919061494e565b60405180910390a35050565b612317612311612b40565b83612c6d565b612356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234d90614c8b565b60405180910390fd5b61236284848484613352565b50505050565b606061237382612b48565b6123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990614aab565b60405180910390fd5b60136123bd836133ae565b6040516020016123ce9291906148c3565b6040516020818303038152906040529050919050565b6060601380546123f390615095565b80601f016020809104026020016040519081016040528092919081815260200182805461241f90615095565b801561246c5780601f106124415761010080835404028352916020019161246c565b820191906000526020600020905b81548152906001019060200180831161244f57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601161251783611ac2565b60405161252491906148ac565b908152602001604051809103902060009054906101000a900460ff169050919050565b61254f612b40565b73ffffffffffffffffffffffffffffffffffffffff1661256d611a0c565b73ffffffffffffffffffffffffffffffffffffffff16146125c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ba90614bcb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262a906149eb565b60405180910390fd5b61263c8161328c565b50565b600f60009054906101000a900460ff1661268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590614a0b565b60405180910390fd5b6000612699836114c8565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270090614beb565b60405180910390fd5b6001151561271683611e16565b151514612758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274f90614ccb565b60405180910390fd5b600015156127658361250a565b1515146127a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279e90614ceb565b60405180910390fd5b60006010600085815260200190815260200160002080546127c790615095565b905011156128aa57600060116128776010600087815260200190815260200160002080546127f490615095565b80601f016020809104026020016040519081016040528092919081815260200182805461282090615095565b801561286d5780601f106128425761010080835404028352916020019161286d565b820191906000526020600020905b81548152906001019060200180831161285057829003601f168201915b5050505050611ac2565b60405161288491906148ac565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505b600160116128b784611ac2565b6040516128c491906148ac565b908152602001604051809103902060006101000a81548160ff02191690831515021790555081601060008581526020019081526020016000209080519060200190612910929190613c86565b50827f9726e950b835e1f7f4fe747cca4223de678452a4f67c102d50408e22e94e9485836040516129419190614969565b60405180910390a2505050565b600b8110612991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298890614b8b565b60405180910390fd5b600a60149054906101000a900460ff166129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790614c4b565b60405180910390fd5b80600d546129ee9190614f3a565b341015612a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790614d2b565b60405180910390fd5b6000600a821415612a4057600190505b60008183612a4e9190614e7c565b9050612a5981613015565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b2957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b395750612b388261355b565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c27836114c8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c7882612b48565b612cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cae90614acb565b60405180910390fd5b6000612cc2836114c8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d3157508373ffffffffffffffffffffffffffffffffffffffff16612d1984610b74565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d425750612d418185612476565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d6b826114c8565b73ffffffffffffffffffffffffffffffffffffffff1614612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db890614c2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2890614a6b565b60405180910390fd5b612e3c8383836135c5565b612e47600082612bb4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e979190614f94565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eee9190614e7c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6060600082905080915050919050565b600080600283604051612fca9190614895565b602060405180830381855afa158015612fe7573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061300a919061417d565b905080915050919050565b600b546001600c546130279190614e7c565b6130319190614f94565b8161303a610d11565b6130449190614e7c565b1115613085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307c90614b4b565b60405180910390fd5b60005b818110156130ba57600061309a610d11565b90506130a633826130be565b5080806130b2906150f8565b915050613088565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561312e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312590614b6b565b60405180910390fd5b61313781612b48565b15613177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316e90614a2b565b60405180910390fd5b613183600083836135c5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131d39190614e7c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61335d848484612d4b565b613369848484846136d9565b6133a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339f906149cb565b60405180910390fd5b50505050565b606060008214156133f6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613556565b600082905060005b60008214613428578080613411906150f8565b915050600a826134219190614f09565b91506133fe565b60008167ffffffffffffffff81111561346a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561349c5781602001600182028036833780820191505090505b5090505b6000851461354f576001826134b59190614f94565b9150600a856134c49190615141565b60306134d09190614e7c565b60f81b81838151811061350c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135489190614f09565b94506134a0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6135d0838383613870565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136135761360e81613875565b613652565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136515761365083826138be565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136955761369081613a2b565b6136d4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146136d3576136d28282613b6e565b5b5b505050565b60006136fa8473ffffffffffffffffffffffffffffffffffffffff16613bed565b15613863578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613723612b40565b8786866040518563ffffffff1660e01b81526004016137459493929190614902565b602060405180830381600087803b15801561375f57600080fd5b505af192505050801561379057506040513d601f19601f8201168201806040525081019061378d91906141cf565b60015b613813573d80600081146137c0576040519150601f19603f3d011682016040523d82523d6000602084013e6137c5565b606091505b5060008151141561380b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613802906149cb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613868565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138cb8461168d565b6138d59190614f94565b90506000600760008481526020019081526020016000205490508181146139ba576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a3f9190614f94565b9050600060096000848152602001908152602001600020549050600060088381548110613a95577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613add577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613b52577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613b798361168d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613c0c90615095565b90600052602060002090601f016020900481019282613c2e5760008555613c75565b82601f10613c4757803560ff1916838001178555613c75565b82800160010185558215613c75579182015b82811115613c74578235825591602001919060010190613c59565b5b509050613c829190613d0c565b5090565b828054613c9290615095565b90600052602060002090601f016020900481019282613cb45760008555613cfb565b82601f10613ccd57805160ff1916838001178555613cfb565b82800160010185558215613cfb579182015b82811115613cfa578251825591602001919060010190613cdf565b5b509050613d089190613d0c565b5090565b5b80821115613d25576000816000905550600101613d0d565b5090565b6000613d3c613d3784614d8b565b614d66565b90508083825260208201905082856020860282011115613d5b57600080fd5b60005b85811015613d8b5781613d718882613e65565b845260208401935060208301925050600181019050613d5e565b5050509392505050565b6000613da8613da384614db7565b614d66565b905082815260208101848484011115613dc057600080fd5b613dcb848285615053565b509392505050565b6000613de6613de184614de8565b614d66565b905082815260208101848484011115613dfe57600080fd5b613e09848285615053565b509392505050565b600081359050613e208161596d565b92915050565b600082601f830112613e3757600080fd5b8135613e47848260208601613d29565b91505092915050565b600081359050613e5f81615984565b92915050565b600081359050613e748161599b565b92915050565b600081519050613e898161599b565b92915050565b600081359050613e9e816159b2565b92915050565b600081519050613eb3816159b2565b92915050565b600082601f830112613eca57600080fd5b8135613eda848260208601613d95565b91505092915050565b60008083601f840112613ef557600080fd5b8235905067ffffffffffffffff811115613f0e57600080fd5b602083019150836001820283011115613f2657600080fd5b9250929050565b600082601f830112613f3e57600080fd5b8135613f4e848260208601613dd3565b91505092915050565b600081359050613f66816159c9565b92915050565b600060208284031215613f7e57600080fd5b6000613f8c84828501613e11565b91505092915050565b60008060408385031215613fa857600080fd5b6000613fb685828601613e11565b9250506020613fc785828601613e11565b9150509250929050565b600080600060608486031215613fe657600080fd5b6000613ff486828701613e11565b935050602061400586828701613e11565b925050604061401686828701613f57565b9150509250925092565b6000806000806080858703121561403657600080fd5b600061404487828801613e11565b945050602061405587828801613e11565b935050604061406687828801613f57565b925050606085013567ffffffffffffffff81111561408357600080fd5b61408f87828801613eb9565b91505092959194509250565b600080604083850312156140ae57600080fd5b60006140bc85828601613e11565b92505060206140cd85828601613e50565b9150509250929050565b600080604083850312156140ea57600080fd5b60006140f885828601613e11565b925050602061410985828601613f57565b9150509250929050565b60006020828403121561412557600080fd5b600082013567ffffffffffffffff81111561413f57600080fd5b61414b84828501613e26565b91505092915050565b60006020828403121561416657600080fd5b600061417484828501613e65565b91505092915050565b60006020828403121561418f57600080fd5b600061419d84828501613e7a565b91505092915050565b6000602082840312156141b857600080fd5b60006141c684828501613e8f565b91505092915050565b6000602082840312156141e157600080fd5b60006141ef84828501613ea4565b91505092915050565b6000806020838503121561420b57600080fd5b600083013567ffffffffffffffff81111561422557600080fd5b61423185828601613ee3565b92509250509250929050565b60006020828403121561424f57600080fd5b600082013567ffffffffffffffff81111561426957600080fd5b61427584828501613f2d565b91505092915050565b60006020828403121561429057600080fd5b600061429e84828501613f57565b91505092915050565b600080604083850312156142ba57600080fd5b60006142c885828601613f57565b925050602083013567ffffffffffffffff8111156142e557600080fd5b6142f185828601613f2d565b9150509250929050565b61430481614fc8565b82525050565b61431381614fda565b82525050565b600061432482614e2e565b61432e8185614e44565b935061433e818560208601615062565b6143478161522e565b840191505092915050565b600061435d82614e2e565b6143678185614e55565b9350614377818560208601615062565b80840191505092915050565b600061438e82614e39565b6143988185614e60565b93506143a8818560208601615062565b6143b18161522e565b840191505092915050565b60006143c782614e39565b6143d18185614e71565b93506143e1818560208601615062565b80840191505092915050565b600081546143fa81615095565b6144048186614e71565b9450600182166000811461441f576001811461443057614463565b60ff19831686528186019350614463565b61443985614e19565b60005b8381101561445b5781548189015260018201915060208101905061443c565b838801955050505b50505092915050565b6000614479601d83614e60565b91506144848261523f565b602082019050919050565b600061449c602b83614e60565b91506144a782615268565b604082019050919050565b60006144bf603283614e60565b91506144ca826152b7565b604082019050919050565b60006144e2602683614e60565b91506144ed82615306565b604082019050919050565b6000614505600783614e60565b915061451082615355565b602082019050919050565b6000614528601c83614e60565b91506145338261537e565b602082019050919050565b600061454b602383614e60565b9150614556826153a7565b604082019050919050565b600061456e602483614e60565b9150614579826153f6565b604082019050919050565b6000614591601983614e60565b915061459c82615445565b602082019050919050565b60006145b4601483614e60565b91506145bf8261546e565b602082019050919050565b60006145d7602c83614e60565b91506145e282615497565b604082019050919050565b60006145fa603883614e60565b9150614605826154e6565b604082019050919050565b600061461d602a83614e60565b915061462882615535565b604082019050919050565b6000614640602983614e60565b915061464b82615584565b604082019050919050565b6000614663601f83614e60565b915061466e826155d3565b602082019050919050565b6000614686602083614e60565b9150614691826155fc565b602082019050919050565b60006146a9601283614e60565b91506146b482615625565b602082019050919050565b60006146cc602c83614e60565b91506146d78261564e565b604082019050919050565b60006146ef602083614e60565b91506146fa8261569d565b602082019050919050565b6000614712600c83614e60565b915061471d826156c6565b602082019050919050565b6000614735602183614e60565b9150614740826156ef565b604082019050919050565b6000614758602983614e60565b91506147638261573e565b604082019050919050565b600061477b601f83614e60565b91506147868261578d565b602082019050919050565b600061479e602183614e60565b91506147a9826157b6565b604082019050919050565b60006147c1603183614e60565b91506147cc82615805565b604082019050919050565b60006147e4602c83614e60565b91506147ef82615854565b604082019050919050565b6000614807600b83614e60565b9150614812826158a3565b602082019050919050565b600061482a600983614e60565b9150614835826158cc565b602082019050919050565b600061484d602183614e60565b9150614858826158f5565b604082019050919050565b6000614870601e83614e60565b915061487b82615944565b602082019050919050565b61488f8161503c565b82525050565b60006148a18284614352565b915081905092915050565b60006148b882846143bc565b915081905092915050565b60006148cf82856143ed565b91506148db82846143bc565b91508190509392505050565b60006020820190506148fc60008301846142fb565b92915050565b600060808201905061491760008301876142fb565b61492460208301866142fb565b6149316040830185614886565b81810360608301526149438184614319565b905095945050505050565b6000602082019050614963600083018461430a565b92915050565b600060208201905081810360008301526149838184614383565b905092915050565b600060208201905081810360008301526149a48161446c565b9050919050565b600060208201905081810360008301526149c48161448f565b9050919050565b600060208201905081810360008301526149e4816144b2565b9050919050565b60006020820190508181036000830152614a04816144d5565b9050919050565b60006020820190508181036000830152614a24816144f8565b9050919050565b60006020820190508181036000830152614a448161451b565b9050919050565b60006020820190508181036000830152614a648161453e565b9050919050565b60006020820190508181036000830152614a8481614561565b9050919050565b60006020820190508181036000830152614aa481614584565b9050919050565b60006020820190508181036000830152614ac4816145a7565b9050919050565b60006020820190508181036000830152614ae4816145ca565b9050919050565b60006020820190508181036000830152614b04816145ed565b9050919050565b60006020820190508181036000830152614b2481614610565b9050919050565b60006020820190508181036000830152614b4481614633565b9050919050565b60006020820190508181036000830152614b6481614656565b9050919050565b60006020820190508181036000830152614b8481614679565b9050919050565b60006020820190508181036000830152614ba48161469c565b9050919050565b60006020820190508181036000830152614bc4816146bf565b9050919050565b60006020820190508181036000830152614be4816146e2565b9050919050565b60006020820190508181036000830152614c0481614705565b9050919050565b60006020820190508181036000830152614c2481614728565b9050919050565b60006020820190508181036000830152614c448161474b565b9050919050565b60006020820190508181036000830152614c648161476e565b9050919050565b60006020820190508181036000830152614c8481614791565b9050919050565b60006020820190508181036000830152614ca4816147b4565b9050919050565b60006020820190508181036000830152614cc4816147d7565b9050919050565b60006020820190508181036000830152614ce4816147fa565b9050919050565b60006020820190508181036000830152614d048161481d565b9050919050565b60006020820190508181036000830152614d2481614840565b9050919050565b60006020820190508181036000830152614d4481614863565b9050919050565b6000602082019050614d606000830184614886565b92915050565b6000614d70614d81565b9050614d7c82826150c7565b919050565b6000604051905090565b600067ffffffffffffffff821115614da657614da56151ff565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614dd257614dd16151ff565b5b614ddb8261522e565b9050602081019050919050565b600067ffffffffffffffff821115614e0357614e026151ff565b5b614e0c8261522e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e878261503c565b9150614e928361503c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ec757614ec6615172565b5b828201905092915050565b6000614edd82615046565b9150614ee883615046565b92508260ff03821115614efe57614efd615172565b5b828201905092915050565b6000614f148261503c565b9150614f1f8361503c565b925082614f2f57614f2e6151a1565b5b828204905092915050565b6000614f458261503c565b9150614f508361503c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f8957614f88615172565b5b828202905092915050565b6000614f9f8261503c565b9150614faa8361503c565b925082821015614fbd57614fbc615172565b5b828203905092915050565b6000614fd38261501c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615080578082015181840152602081019050615065565b8381111561508f576000848401525b50505050565b600060028204905060018216806150ad57607f821691505b602082108114156150c1576150c06151d0565b5b50919050565b6150d08261522e565b810181811067ffffffffffffffff821117156150ef576150ee6151ff565b5b80604052505050565b60006151038261503c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561513657615135615172565b5b600182019050919050565b600061514c8261503c565b91506151578361503c565b925082615167576151666151a1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f436f64657320776f756c6420657863656564206d617820737570706c79000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2172657665616c00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f41206769667420666f72207468697320636f646520646f6573206e6f7420657860008201527f6973740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f416d6f756e7420697320746f206d756368200000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f21746f6b656e2e6f776e65720000000000000000000000000000000000000000600082015250565b7f4e6f206769766577617920697320617661696c61626c65207269676874206e6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e742046756e6374696f6e206973206e6f74204163746976652079657400600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f216e616d652e76616c6964000000000000000000000000000000000000000000600082015250565b7f6e616d652e757365640000000000000000000000000000000000000000000000600082015250565b7f4974656d2077697468207468697320636f646520616c7265616479206578697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420656e6f7567680000600082015250565b61597681614fc8565b811461598157600080fd5b50565b61598d81614fda565b811461599857600080fd5b50565b6159a481614fe6565b81146159af57600080fd5b50565b6159bb81614ff0565b81146159c657600080fd5b50565b6159d28161503c565b81146159dd57600080fd5b5056fea2646970667358221220e25403a364bed994a53e2d0fd38c3c871f3f1062c2383932c758d34708692a2564736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000002faf0800000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000004032313833373137333763613666386237366361363537633831623166313339333066323166323239626338343838383938336261653364316138363738323565

-----Decoded View---------------
Arg [0] : supply (uint256): 10000
Arg [1] : price (uint256): 50000000
Arg [2] : provenence (string): 218371737ca6f8b76ca657c81b1f13930f21f229bc84888983bae3d1a867825e

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 0000000000000000000000000000000000000000000000000000000002faf080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [4] : 3231383337313733376361366638623736636136353763383162316631333933
Arg [5] : 3066323166323239626338343838383938336261653364316138363738323565


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.