ETH Price: $2,967.25 (+2.29%)
Gas: 1 Gwei

Token

CryptoJunks (JUNK)
 

Overview

Max Total Supply

2,344 JUNK

Holders

354

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
disnaix.eth
Balance
2 JUNK
0x0d6e94d085a597f316be1833649e05a45103e873
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CryptoJunks.wtf are the *naughtiest* answer to the question: **“What do the bodies of the Punks look like?”** Each Junk is a unique 24x24 pixel masterpiece carefully crafted across 7 attributes and 6 rarities. You never know what kind of Junk you'll get. Pencil dicks, tentacle...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoJunks

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
byzantium EvmVersion
File 1 of 15 : CryptoJunks.sol
// SPDX-License-Identifier: UNLICENSE
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";


contract CryptoJunks is Ownable, ERC721Enumerable, ERC721Burnable {
    using Counters for Counters.Counter;   
    using Strings for uint256; 
    Counters.Counter private _tokenIdTracker;

    // I got one question for you, and that question is...
    string public constant Q = "Can I say my shit?";
    // I got lots of shit to say ... oooooo
    string public constant P = "I can't fit my hand inside a pringle can"; 
    // 2 radiuses of a pringle can is way too smol
    
    
    // I went to Chipotle, got myself a sofritas burrito. brrrap!
    // I got all these ingredients, but when the guy tried to wrap the burrito
    string public constant S = "Half of the shit spilled out, but he still wrapped it";
    // I was like, dude you should have warned me:
    // "Hey, man. You might be reaching maximum burrito capacity here"
    string public constant U = "Do you think I want a messy burrito? No one wants a messy burrito";
    // I wouldn't have got the lettuce if I knew it wouldn't fit
    // Wouldn't have got the cheese if I knew it wouldn't fit
    // Wouldn't have got the peppers if I knew they wouldn't fit
    // I wouldn't have got, half of it
    string public constant T = "But I'll blow my dad before I eat a burrito with a fork";

    
    // I can pretend my biggest problems are pringle cans & burritos


    // But the truth is:
    string public constant R = "My biggest problem's you";
    // I want to please you; but I want to stay true to myself
    
    // I want to give you the junk that you deserve
    // BUt I want to say what I think, and not care what you think about it
    
    
    string public constant Z = "I don't think that I can handle this right now.";
    // Thank you. Goodnight. I hope you're happy.
    //
    // Love you all.

    constructor() ERC721("CryptoJunks", "JUNK") {
        // brought to you by: ambition.wtf
        // thumbs up, let's do this, leeeeeeroy jenkins
    }

    // frivolous values for pointless things
    uint public constant ARBITRARY_QUANTITY = 10000; // max number of junks | lumberjack → robin hood
    bool public areWeFucking = false; // is the sale turned on? | how do you turn this on 
    uint public constant ARBITRARY_LIMIT = 50; // ERC721 gas limits how much fun we can have


    // mint (almost) any number junks
    function fuck(uint _numFucks) public payable {
        // NOTE: DON'T use totalSupply() because they are BURNABLE
        require(
            areWeFucking == true,
            "TOO EARLY. sale hasn't started."
        );
        require(
            _tokenIdTracker.current() < ARBITRARY_QUANTITY,
            "TOO LATE. all junks have been sold."
        );
        require(
            _tokenIdTracker.current()+_numFucks < ARBITRARY_QUANTITY,
            "TOO MANY. there aren't this many junks left."
        );
        require(
            msg.value >= howMuchBondage(_numFucks),
            "TOO LITTLE. pls send moar eth."
        );

        gasm(_numFucks);
    }

    // internal minting function
    function gasm(uint _numGasms) internal {
        require(
            _numGasms <= ARBITRARY_LIMIT,
            "TOO MANY. ERC721 gas limits how much fun we can have."
        );
        for (uint i = 0; i < _numGasms; i++) {            
            uint newTokenId = _tokenIdTracker.current();
            _safeMint(msg.sender, newTokenId);
            // increment AFTER because starts at 0
            _tokenIdTracker.increment();
        }
    }

    // important numbers for special things
    uint public constant SEXY = 69;
    uint public constant MEME = 420;
    uint public constant MUCH = 1000;

    // calculate the cost for a specific junk
    function howMuchForAHit(uint _hit) public pure returns (uint) {
        // no requires bc I don't care when this func is called

        if (_hit >= ARBITRARY_QUANTITY) {
            // dad used to say "there is no such thing as a free lunch" (WATCH TILL THE END)
            // ಠ_ಠ
            // y am I paying extra Ξ to deploy these comments?
            return 0.00 ether;
        } else if (_hit >= ARBITRARY_QUANTITY - SEXY) {
            // 9_931—9_999 (69 → SEXY)
            return 1.44 ether;
        } else if (_hit >= ARBITRARY_QUANTITY - SEXY - MEME) {
            // 9_511—9_930 (420 → MEME)
            return 0.89 ether;
        } else if (_hit >= ARBITRARY_QUANTITY - SEXY*11 - MEME) {
            // 8_821—9_510 (690 → SEXY*10)
            return 0.55 ether;
        } else if (_hit >= ARBITRARY_QUANTITY - SEXY*12 - MEME - MUCH) {
            // 7_752—8_820 (1069 → MUCH+SEXY)
            return 0.34 ether;
        } else if (_hit >= ARBITRARY_QUANTITY - SEXY*12 - MEME*2 - MUCH*2) {
            // 6_332—7_751 (1420 → MUCH+MEME)
            return 0.21 ether;
        } else if (_hit >= ARBITRARY_QUANTITY - SEXY*13 - MEME*2 - MUCH*4) {
            // 4_263—6_331 (2069 → MUCH+MUCH+SEXY)
            return 0.13 ether;
        } else if (_hit >= ARBITRARY_QUANTITY - SEXY*13 - MEME*3 - MUCH*5) {
            // 2_843—4_262 (1420 → MUCH+MEME)
            return 0.08 ether;
        } else if (_hit >= ARBITRARY_QUANTITY - SEXY*14 - MEME*3 - MUCH*6) {
            // 1_774—2_842 (1069 → MUCH+SEXY)
            return 0.05 ether;
        } else if (_hit >= ARBITRARY_QUANTITY - SEXY*24 - MEME*3 - MUCH*6) {
            // 1_084—1_773 (690 → SEXY*10)
            return 0.03 ether;
        } else if (_hit >= ARBITRARY_QUANTITY - SEXY*24 - MEME*4 - MUCH*6) {
            // 664—1_083 (420 → MEME)
            return 0.02 ether;
        } else if (_hit >= ARBITRARY_QUANTITY - SEXY*25 - MEME*4 - MUCH*6) {
            // 595—663 (69 → SEXY)
            return 0.01 ether;
        } else {
            // 0—594 (595 → CALCULATED QUANTITY)
            // ¯\_(ツ)_/¯
            // my lunch is free now dad!
            return 0.0 ether; 
        }
    }

    // calculate how much the cost for a number of junks, across the bondage curve
    function howMuchBondage(uint _hits) public view returns (uint) {        
        require(
            _tokenIdTracker.current()+_hits < ARBITRARY_QUANTITY,
            "TOO MANY. there aren't this many junks left."
        );

        uint _cost;
        uint _index;

        for (_index; _index < _hits; _index++) {
            uint currTokenId = _tokenIdTracker.current();
            _cost += howMuchForAHit(currTokenId + _index);
        }

        return _cost;
    }

    // lists the junks owned by the address
    function exposeJunk(address _owner) external view returns(uint[] memory) {
        uint junks = balanceOf(_owner);
        if (junks == 0) {
            return new uint[](0);
        } else {
            uint[] memory result = new uint[](junks);
            for (uint i = 0; i < junks; i++) {
                result[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return result;
        }
    }

    /*
     * just dev things
     */
    
    // metadata URI
    string private _baseTokenURI;
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    function tokenURI(uint256 _tokenId) public view override returns (string memory) {   
        string memory base = _baseURI();
        string memory _tokenURI = Strings.toString(_tokenId);

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }

        return string(abi.encodePacked(base, _tokenURI));
    }
    
    // contract metadata URI for opensea
    string public contractURI;


    /*
     * just owner things
     */

    // stop/start sale
    function ohShitLetsFuckingGo() public onlyOwner {
        areWeFucking = true;
    }
    function ohShitSomethingHappened() public onlyOwner {
        areWeFucking = false;
    }

    // URIs
    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }
    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    // withdrawBalance
    function getPaid() public payable onlyOwner {
        require(payable(_msgSender()).send(address(this).balance));
    }

    // special, reserved for devs
    function wank(uint _numWanks) public onlyOwner {
        require(
            areWeFucking == false,
            "TOO LATE. this should happen first."
        );
        
        // how many we're keeping
        uint maxWanks = ARBITRARY_QUANTITY - SEXY*25 - MEME*4 - MUCH*6; // 595
        uint latestId = _tokenIdTracker.current();

        require(
            latestId < maxWanks,
            "TOO LATE. all the dev mints are minted."
        );

        // limit the number for minting
        uint toWank;
        if (_numWanks < ARBITRARY_LIMIT) {
            toWank = _numWanks;
        } else {
            toWank = ARBITRARY_LIMIT;
        }

        // mint the max number if possible
        if (latestId+toWank < maxWanks) {
            gasm(toWank);
        } else {
            uint wanksLeft = maxWanks - latestId;
            // else mint as many as possible
            gasm(wanksLeft);
        }
    }

    // this seems to be important for something
    function _beforeTokenTransfer(address from, address to, uint tokenId) internal virtual override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // and this one too seems to be doing something
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    // future stuff for onchain stuff

    address public artContractAddress;
    CryptoJunksArt artContract;

    function setArtContract(address _address) external onlyOwner {
        // set the adress
        artContractAddress = _address;
        // set the contract 
        artContract = CryptoJunksArt(_address);
    }

    function getArt(uint tokenId) public view returns (string memory) {
        require(_exists(tokenId), "OOPS. token does not exist.");

        // really hope I get to this someday
        require(artContractAddress != address(0), "TODO. art contract has not been implemented.");

        return artContract.getArtForJunkId(tokenId);
    }
}

// who knows if this will even work someday?
contract CryptoJunksArt {
    function getArtForJunkId(uint _tokenId) public view returns (string memory) {}
}

// ps. what the fuck is the meaning of stonehenge?

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "./extensions/IERC721Enumerable.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}. 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 || ERC721.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 || ERC721.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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` 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 { }
}

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

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 9 of 15 : 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 10 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "byzantium",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ARBITRARY_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ARBITRARY_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MEME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MUCH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"P","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Q","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"R","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"S","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEXY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"T","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"U","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Z","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"areWeFucking","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"artContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"exposeJunk","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numFucks","type":"uint256"}],"name":"fuck","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getArt","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPaid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hits","type":"uint256"}],"name":"howMuchBondage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hit","type":"uint256"}],"name":"howMuchForAHit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ohShitLetsFuckingGo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ohShitSomethingHappened","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setArtContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","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":"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":"uint256","name":"_numWanks","type":"uint256"}],"name":"wank","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600b81526020017f43727970746f4a756e6b730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4a554e4b000000000000000000000000000000000000000000000000000000008152506000620000b46200018c640100000000026401000000009004565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600190805190602001906200016a92919062000194565b5080600290805190602001906200018392919062000194565b505050620002a9565b600033905090565b828054620001a29062000244565b90600052602060002090601f016020900481019282620001c6576000855562000212565b82601f10620001e157805160ff191683800117855562000212565b8280016001018555821562000212579182015b8281111562000211578251825591602001919060010190620001f4565b5b50905062000221919062000225565b5090565b5b808211156200024057600081600090555060010162000226565b5090565b600060028204905060018216806200025d57607f821691505b602082108114156200027457620002736200027a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61570680620002b96000396000f3fe6080604052600436106102a5576000357c0100000000000000000000000000000000000000000000000000000000900480634f6ccce7116101775780638da5cb5b116100de578063c87b56dd11610097578063c87b56dd146109e2578063cf41d6f814610a1f578063e493ef8c14610a29578063e8a3d48514610a54578063e985e9c514610a7f578063f2fde38b14610abc576102a5565b80638da5cb5b146108d45780639360e0db146108ff578063938e3d7b1461093c57806395d89b4114610965578063a22cb46514610990578063b88d4fde146109b9576102a5565b806370a082311161013057806370a08231146107d1578063715018a61461080e57806384b4fd9f1461082557806386773861146108505780638b8fbd921461086c5780638c4796c714610897576102a5565b80634f6ccce7146106c157806355f804b3146106fe5780635993368e146107275780635ed7970a146107525780636352211e1461077d5780636fe4a992146107ba576102a5565b80632688454a1161021b57806342842e0e116101d457806342842e0e146105b357806342966c68146105dc5780634361187d146106055780634980e1be1461062e5780634be1c796146106595780634e708d4514610684576102a5565b80632688454a146104a1578063297a9446146104cc5780632bc80f3a146104f55780632e7b0948146105205780632f745c591461054b578063390858c114610588576102a5565b806318160ddd1161026d57806318160ddd146103a35780631c801363146103ce5780631df48c20146103f95780631fdb772a1461042457806321c20ae31461043b57806323b872dd14610478576102a5565b806301ffc9a7146102aa57806306e431d3146102e757806306fdde0314610312578063081812fc1461033d578063095ea7b31461037a575b600080fd5b3480156102b657600080fd5b506102d160048036038101906102cc9190613f45565b610ae5565b6040516102de91906145f5565b60405180910390f35b3480156102f357600080fd5b506102fc610af7565b6040516103099190614992565b60405180910390f35b34801561031e57600080fd5b50610327610afd565b6040516103349190614610565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190614019565b610b8f565b604051610371919061456c565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613f09565b610c14565b005b3480156103af57600080fd5b506103b8610d2c565b6040516103c59190614992565b60405180910390f35b3480156103da57600080fd5b506103e3610d39565b6040516103f09190614992565b60405180910390f35b34801561040557600080fd5b5061040e610d3e565b60405161041b91906145f5565b60405180910390f35b34801561043057600080fd5b50610439610d51565b005b34801561044757600080fd5b50610462600480360381019061045d9190614019565b610dea565b60405161046f9190614992565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190613e03565b611199565b005b3480156104ad57600080fd5b506104b66111f9565b6040516104c39190614610565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613d9e565b611215565b005b34801561050157600080fd5b5061050a611316565b6040516105179190614610565b60405180910390f35b34801561052c57600080fd5b50610535611332565b6040516105429190614992565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613f09565b611338565b60405161057f9190614992565b60405180910390f35b34801561059457600080fd5b5061059d6113dd565b6040516105aa9190614610565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190613e03565b6113f9565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190614019565b611419565b005b34801561061157600080fd5b5061062c60048036038101906106279190614019565b611475565b005b34801561063a57600080fd5b50610643611642565b6040516106509190614610565b60405180910390f35b34801561066557600080fd5b5061066e61167b565b60405161067b9190614610565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190613d9e565b611697565b6040516106b891906145d3565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190614019565b611813565b6040516106f59190614992565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190613f97565b6118aa565b005b34801561073357600080fd5b5061073c611940565b6040516107499190614992565b60405180910390f35b34801561075e57600080fd5b50610767611946565b6040516107749190614992565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190614019565b61194b565b6040516107b1919061456c565b60405180910390f35b3480156107c657600080fd5b506107cf6119fd565b005b3480156107dd57600080fd5b506107f860048036038101906107f39190613d9e565b611a96565b6040516108059190614992565b60405180910390f35b34801561081a57600080fd5b50610823611b4e565b005b34801561083157600080fd5b5061083a611c88565b604051610847919061456c565b60405180910390f35b61086a60048036038101906108659190614019565b611cae565b005b34801561087857600080fd5b50610881611e00565b60405161088e9190614610565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190614019565b611e1c565b6040516108cb9190614610565b60405180910390f35b3480156108e057600080fd5b506108e9611fcb565b6040516108f6919061456c565b60405180910390f35b34801561090b57600080fd5b5061092660048036038101906109219190614019565b611ff4565b6040516109339190614992565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613f97565b6120a7565b005b34801561097157600080fd5b5061097a61213d565b6040516109879190614610565b60405180910390f35b34801561099c57600080fd5b506109b760048036038101906109b29190613ecd565b6121cf565b005b3480156109c557600080fd5b506109e060048036038101906109db9190613e52565b612350565b005b3480156109ee57600080fd5b50610a096004803603810190610a049190614019565b6123b2565b604051610a169190614610565b60405180910390f35b610a2761240d565b005b348015610a3557600080fd5b50610a3e6124e7565b604051610a4b9190614610565b60405180910390f35b348015610a6057600080fd5b50610a69612520565b604051610a769190614610565b60405180910390f35b348015610a8b57600080fd5b50610aa66004803603810190610aa19190613dc7565b6125ae565b604051610ab391906145f5565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613d9e565b612642565b005b6000610af0826127eb565b9050919050565b6103e881565b606060018054610b0c90614c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3890614c7b565b8015610b855780601f10610b5a57610100808354040283529160200191610b85565b820191906000526020600020905b815481529060010190602001808311610b6857829003601f168201915b5050505050905090565b6000610b9a82612865565b610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090614832565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1f8261194b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c87906148b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610caf6128d1565b73ffffffffffffffffffffffffffffffffffffffff161480610cde5750610cdd81610cd86128d1565b6125ae565b5b610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490614732565b60405180910390fd5b610d2783836128d9565b505050565b6000600980549050905090565b603281565b600c60009054906101000a900460ff1681565b610d596128d1565b73ffffffffffffffffffffffffffffffffffffffff16610d77611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490614852565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b60006127108210610dfe5760009050611194565b6045612710610e0d9190614b91565b8210610e23576713fbe85edc9000009050611194565b6101a46045612710610e359190614b91565b610e3f9190614b91565b8210610e5557670c59ea48da1900009050611194565b6101a4600b6045610e669190614b37565b612710610e739190614b91565b610e7d9190614b91565b8210610e93576707a1fe16027700009050611194565b6103e86101a4600c6045610ea79190614b37565b612710610eb49190614b91565b610ebe9190614b91565b610ec89190614b91565b8210610ede576704b7ec32d7a200009050611194565b60026103e8610eed9190614b37565b60026101a4610efc9190614b37565b600c6045610f0a9190614b37565b612710610f179190614b91565b610f219190614b91565b610f2b9190614b91565b8210610f41576702ea11e32ad500009050611194565b60046103e8610f509190614b37565b60026101a4610f5f9190614b37565b600d6045610f6d9190614b37565b612710610f7a9190614b91565b610f849190614b91565b610f8e9190614b91565b8210610fa4576701cdda4faccd00009050611194565b60056103e8610fb39190614b37565b60036101a4610fc29190614b37565b600d6045610fd09190614b37565b612710610fdd9190614b91565b610fe79190614b91565b610ff19190614b91565b82106110075767011c37937e0800009050611194565b60066103e86110169190614b37565b60036101a46110259190614b37565b600e60456110339190614b37565b6127106110409190614b91565b61104a9190614b91565b6110549190614b91565b82106110695766b1a2bc2ec500009050611194565b60066103e86110789190614b37565b60036101a46110879190614b37565b601860456110959190614b37565b6127106110a29190614b91565b6110ac9190614b91565b6110b69190614b91565b82106110cb57666a94d74f4300009050611194565b60066103e86110da9190614b37565b60046101a46110e99190614b37565b601860456110f79190614b37565b6127106111049190614b91565b61110e9190614b91565b6111189190614b91565b821061112d5766470de4df8200009050611194565b60066103e861113c9190614b37565b60046101a461114b9190614b37565b601960456111599190614b37565b6127106111669190614b91565b6111709190614b91565b61117a9190614b91565b821061118f57662386f26fc100009050611194565b600090505b919050565b6111aa6111a46128d1565b82612992565b6111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e0906148f2565b60405180910390fd5b6111f4838383612a70565b505050565b6040518060800160405280604181526020016156906041913981565b61121d6128d1565b73ffffffffffffffffffffffffffffffffffffffff1661123b611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890614852565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6040518060600160405280603781526020016156596037913981565b6101a481565b600061134383611a96565b8210611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90614632565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6040518060600160405280602f81526020016155cd602f913981565b61141483838360405180602001604052806000815250612350565b505050565b61142a6114246128d1565b82612992565b611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090614972565b60405180910390fd5b61147281612ccc565b50565b61147d6128d1565b73ffffffffffffffffffffffffffffffffffffffff1661149b611fcb565b73ffffffffffffffffffffffffffffffffffffffff16146114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890614852565b60405180910390fd5b60001515600c60009054906101000a900460ff16151514611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90614892565b60405180910390fd5b600060066103e86115589190614b37565b60046101a46115679190614b37565b601960456115759190614b37565b6127106115829190614b91565b61158c9190614b91565b6115969190614b91565b905060006115a4600b612ddd565b90508181106115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90614812565b60405180910390fd5b600060328410156115fb57839050611600565b603290505b82818361160d9190614ab0565b10156116215761161c81612deb565b61163c565b6000828461162f9190614b91565b905061163a81612deb565b505b50505050565b6040518060400160405280601881526020017f4d7920626967676573742070726f626c656d277320796f75000000000000000081525081565b6040518060600160405280603581526020016155fc6035913981565b606060006116a483611a96565b9050600081141561172757600067ffffffffffffffff8111156116f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561171e5781602001602082028036833780820191505090505b5091505061180e565b60008167ffffffffffffffff811115611769577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117975781602001602082028036833780820191505090505b50905060005b82811015611807576117af8582611338565b8282815181106117e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806117ff90614cde565b91505061179d565b5080925050505b919050565b600061181d610d2c565b821061185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590614932565b60405180910390fd5b60098281548110611898577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6118b26128d1565b73ffffffffffffffffffffffffffffffffffffffff166118d0611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d90614852565b60405180910390fd5b80600d908051906020019061193c929190613b5a565b5050565b61271081565b604581565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90614792565b60405180910390fd5b80915050919050565b611a056128d1565b73ffffffffffffffffffffffffffffffffffffffff16611a23611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090614852565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90614772565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b566128d1565b73ffffffffffffffffffffffffffffffffffffffff16611b74611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190614852565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60011515600c60009054906101000a900460ff16151514611d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfb90614752565b60405180910390fd5b612710611d11600b612ddd565b10611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d48906148d2565b60405180910390fd5b61271081611d5f600b612ddd565b611d699190614ab0565b10611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090614952565b60405180910390fd5b611db281611ff4565b341015611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb906147b2565b60405180910390fd5b611dfd81612deb565b50565b6040518060600160405280602881526020016156316028913981565b6060611e2782612865565b611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d90614712565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef906147d2565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663562ec3d8836040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611f6f9190614992565b60006040518083038186803b158015611f8757600080fd5b505afa158015611f9b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611fc49190613fd8565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061271082612004600b612ddd565b61200e9190614ab0565b1061204e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204590614952565b60405180910390fd5b6000805b8381101561209d576000612066600b612ddd565b905061207c82826120779190614ab0565b610dea565b836120879190614ab0565b925050808061209590614cde565b915050612052565b8192505050919050565b6120af6128d1565b73ffffffffffffffffffffffffffffffffffffffff166120cd611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a90614852565b60405180910390fd5b80600e9080519060200190612139929190613b5a565b5050565b60606002805461214c90614c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461217890614c7b565b80156121c55780601f1061219a576101008083540402835291602001916121c5565b820191906000526020600020905b8154815290600101906020018083116121a857829003601f168201915b5050505050905090565b6121d76128d1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c906146d2565b60405180910390fd5b80600660006122526128d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122ff6128d1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161234491906145f5565b60405180910390a35050565b61236161235b6128d1565b83612992565b6123a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612397906148f2565b60405180910390fd5b6123ac84848484612e74565b50505050565b606060006123be612ed0565b905060006123cb84612f62565b90506000825114156123e1578092505050612408565b81816040516020016123f4929190614548565b604051602081830303815290604052925050505b919050565b6124156128d1565b73ffffffffffffffffffffffffffffffffffffffff16612433611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614612489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248090614852565b60405180910390fd5b6124916128d1565b73ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f193505050506124e557600080fd5b565b6040518060400160405280601281526020017f43616e204920736179206d7920736869743f000000000000000000000000000081525081565b600e805461252d90614c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461255990614c7b565b80156125a65780601f1061257b576101008083540402835291602001916125a6565b820191906000526020600020905b81548152906001019060200180831161258957829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61264a6128d1565b73ffffffffffffffffffffffffffffffffffffffff16612668611fcb565b73ffffffffffffffffffffffffffffffffffffffff16146126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590614852565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561272e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272590614672565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061285e575061285d8261312e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661294c8361194b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061299d82612865565b6129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d3906146f2565b60405180910390fd5b60006129e78361194b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a5657508373ffffffffffffffffffffffffffffffffffffffff16612a3e84610b8f565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a675750612a6681856125ae565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a908261194b565b73ffffffffffffffffffffffffffffffffffffffff1614612ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612add90614872565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4d906146b2565b60405180910390fd5b612b61838383613210565b612b6c6000826128d9565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bbc9190614b91565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c139190614ab0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612cd78261194b565b9050612ce581600084613210565b612cf06000836128d9565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d409190614b91565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600081600001549050919050565b6032811115612e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2690614912565b60405180910390fd5b60005b81811015612e70576000612e46600b612ddd565b9050612e523382613220565b612e5c600b61323e565b508080612e6890614cde565b915050612e32565b5050565b612e7f848484612a70565b612e8b84848484613254565b612eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec190614652565b60405180910390fd5b50505050565b6060600d8054612edf90614c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054612f0b90614c7b565b8015612f585780601f10612f2d57610100808354040283529160200191612f58565b820191906000526020600020905b815481529060010190602001808311612f3b57829003601f168201915b5050505050905090565b60606000821415612faa576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613129565b600082905060005b60008214612fdc578080612fc590614cde565b915050600a82612fd59190614b06565b9150612fb2565b60008167ffffffffffffffff81111561301e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130505781602001600182028036833780820191505090505b5090505b60008514613122576001826130699190614b91565b9150600a856130789190614d27565b60306130849190614ab0565b7f0100000000000000000000000000000000000000000000000000000000000000028183815181106130df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561311b9190614b06565b9450613054565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806131f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613209575061320882613423565b5b9050919050565b61321b83838361348d565b505050565b61323a8282604051806020016040528060008152506135a1565b5050565b6001816000016000828254019250508190555050565b60006132758473ffffffffffffffffffffffffffffffffffffffff166135fc565b15613416578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261329e6128d1565b8786866040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016132dc9493929190614587565b602060405180830381600087803b1580156132f657600080fd5b505af192505050801561332757506040513d601f19601f820116820180604052508101906133249190613f6e565b60015b6133aa573d8060008114613357576040519150601f19603f3d011682016040523d82523d6000602084013e61335c565b606091505b506000815114156133a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339990614652565b60405180910390fd5b805181602001fd5b63150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061341b565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61349883838361360f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134db576134d681613614565b61351a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461351957613518838261365d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561355d57613558816137ca565b61359c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461359b5761359a828261390d565b5b5b505050565b6135ab838361398c565b6135b86000848484613254565b6135f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ee90614652565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161366a84611a96565b6136749190614b91565b9050600060086000848152602001908152602001600020549050818114613759576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506137de9190614b91565b90506000600a6000848152602001908152602001600020549050600060098381548110613834577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806009838154811061387c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806138f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061391883611a96565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139f3906147f2565b60405180910390fd5b613a0581612865565b15613a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a3c90614692565b60405180910390fd5b613a5160008383613210565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613aa19190614ab0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613b6690614c7b565b90600052602060002090601f016020900481019282613b885760008555613bcf565b82601f10613ba157805160ff1916838001178555613bcf565b82800160010185558215613bcf579182015b82811115613bce578251825591602001919060010190613bb3565b5b509050613bdc9190613be0565b5090565b5b80821115613bf9576000816000905550600101613be1565b5090565b6000613c10613c0b846149d2565b6149ad565b905082815260208101848484011115613c2857600080fd5b613c33848285614c39565b509392505050565b6000613c4e613c4984614a03565b6149ad565b905082815260208101848484011115613c6657600080fd5b613c71848285614c39565b509392505050565b6000613c8c613c8784614a03565b6149ad565b905082815260208101848484011115613ca457600080fd5b613caf848285614c48565b509392505050565b600081359050613cc681615570565b92915050565b600081359050613cdb81615587565b92915050565b600081359050613cf08161559e565b92915050565b600081519050613d058161559e565b92915050565b600082601f830112613d1c57600080fd5b8135613d2c848260208601613bfd565b91505092915050565b600082601f830112613d4657600080fd5b8135613d56848260208601613c3b565b91505092915050565b600082601f830112613d7057600080fd5b8151613d80848260208601613c79565b91505092915050565b600081359050613d98816155b5565b92915050565b600060208284031215613db057600080fd5b6000613dbe84828501613cb7565b91505092915050565b60008060408385031215613dda57600080fd5b6000613de885828601613cb7565b9250506020613df985828601613cb7565b9150509250929050565b600080600060608486031215613e1857600080fd5b6000613e2686828701613cb7565b9350506020613e3786828701613cb7565b9250506040613e4886828701613d89565b9150509250925092565b60008060008060808587031215613e6857600080fd5b6000613e7687828801613cb7565b9450506020613e8787828801613cb7565b9350506040613e9887828801613d89565b925050606085013567ffffffffffffffff811115613eb557600080fd5b613ec187828801613d0b565b91505092959194509250565b60008060408385031215613ee057600080fd5b6000613eee85828601613cb7565b9250506020613eff85828601613ccc565b9150509250929050565b60008060408385031215613f1c57600080fd5b6000613f2a85828601613cb7565b9250506020613f3b85828601613d89565b9150509250929050565b600060208284031215613f5757600080fd5b6000613f6584828501613ce1565b91505092915050565b600060208284031215613f8057600080fd5b6000613f8e84828501613cf6565b91505092915050565b600060208284031215613fa957600080fd5b600082013567ffffffffffffffff811115613fc357600080fd5b613fcf84828501613d35565b91505092915050565b600060208284031215613fea57600080fd5b600082015167ffffffffffffffff81111561400457600080fd5b61401084828501613d5f565b91505092915050565b60006020828403121561402b57600080fd5b600061403984828501613d89565b91505092915050565b600061404e838361452a565b60208301905092915050565b61406381614bc5565b82525050565b600061407482614a44565b61407e8185614a72565b935061408983614a34565b8060005b838110156140ba5781516140a18882614042565b97506140ac83614a65565b92505060018101905061408d565b5085935050505092915050565b6140d081614bd7565b82525050565b60006140e182614a4f565b6140eb8185614a83565b93506140fb818560208601614c48565b61410481614e14565b840191505092915050565b600061411a82614a5a565b6141248185614a94565b9350614134818560208601614c48565b61413d81614e14565b840191505092915050565b600061415382614a5a565b61415d8185614aa5565b935061416d818560208601614c48565b80840191505092915050565b6000614186602b83614a94565b915061419182614e25565b604082019050919050565b60006141a9603283614a94565b91506141b482614e74565b604082019050919050565b60006141cc602683614a94565b91506141d782614ec3565b604082019050919050565b60006141ef601c83614a94565b91506141fa82614f12565b602082019050919050565b6000614212602483614a94565b915061421d82614f3b565b604082019050919050565b6000614235601983614a94565b915061424082614f8a565b602082019050919050565b6000614258602c83614a94565b915061426382614fb3565b604082019050919050565b600061427b601b83614a94565b915061428682615002565b602082019050919050565b600061429e603883614a94565b91506142a98261502b565b604082019050919050565b60006142c1601f83614a94565b91506142cc8261507a565b602082019050919050565b60006142e4602a83614a94565b91506142ef826150a3565b604082019050919050565b6000614307602983614a94565b9150614312826150f2565b604082019050919050565b600061432a601e83614a94565b915061433582615141565b602082019050919050565b600061434d602c83614a94565b91506143588261516a565b604082019050919050565b6000614370602083614a94565b915061437b826151b9565b602082019050919050565b6000614393602783614a94565b915061439e826151e2565b604082019050919050565b60006143b6602c83614a94565b91506143c182615231565b604082019050919050565b60006143d9602083614a94565b91506143e482615280565b602082019050919050565b60006143fc602983614a94565b9150614407826152a9565b604082019050919050565b600061441f602383614a94565b915061442a826152f8565b604082019050919050565b6000614442602183614a94565b915061444d82615347565b604082019050919050565b6000614465602383614a94565b915061447082615396565b604082019050919050565b6000614488603183614a94565b9150614493826153e5565b604082019050919050565b60006144ab603583614a94565b91506144b682615434565b604082019050919050565b60006144ce602c83614a94565b91506144d982615483565b604082019050919050565b60006144f1602c83614a94565b91506144fc826154d2565b604082019050919050565b6000614514603083614a94565b915061451f82615521565b604082019050919050565b61453381614c2f565b82525050565b61454281614c2f565b82525050565b60006145548285614148565b91506145608284614148565b91508190509392505050565b6000602082019050614581600083018461405a565b92915050565b600060808201905061459c600083018761405a565b6145a9602083018661405a565b6145b66040830185614539565b81810360608301526145c881846140d6565b905095945050505050565b600060208201905081810360008301526145ed8184614069565b905092915050565b600060208201905061460a60008301846140c7565b92915050565b6000602082019050818103600083015261462a818461410f565b905092915050565b6000602082019050818103600083015261464b81614179565b9050919050565b6000602082019050818103600083015261466b8161419c565b9050919050565b6000602082019050818103600083015261468b816141bf565b9050919050565b600060208201905081810360008301526146ab816141e2565b9050919050565b600060208201905081810360008301526146cb81614205565b9050919050565b600060208201905081810360008301526146eb81614228565b9050919050565b6000602082019050818103600083015261470b8161424b565b9050919050565b6000602082019050818103600083015261472b8161426e565b9050919050565b6000602082019050818103600083015261474b81614291565b9050919050565b6000602082019050818103600083015261476b816142b4565b9050919050565b6000602082019050818103600083015261478b816142d7565b9050919050565b600060208201905081810360008301526147ab816142fa565b9050919050565b600060208201905081810360008301526147cb8161431d565b9050919050565b600060208201905081810360008301526147eb81614340565b9050919050565b6000602082019050818103600083015261480b81614363565b9050919050565b6000602082019050818103600083015261482b81614386565b9050919050565b6000602082019050818103600083015261484b816143a9565b9050919050565b6000602082019050818103600083015261486b816143cc565b9050919050565b6000602082019050818103600083015261488b816143ef565b9050919050565b600060208201905081810360008301526148ab81614412565b9050919050565b600060208201905081810360008301526148cb81614435565b9050919050565b600060208201905081810360008301526148eb81614458565b9050919050565b6000602082019050818103600083015261490b8161447b565b9050919050565b6000602082019050818103600083015261492b8161449e565b9050919050565b6000602082019050818103600083015261494b816144c1565b9050919050565b6000602082019050818103600083015261496b816144e4565b9050919050565b6000602082019050818103600083015261498b81614507565b9050919050565b60006020820190506149a76000830184614539565b92915050565b60006149b76149c8565b90506149c38282614cad565b919050565b6000604051905090565b600067ffffffffffffffff8211156149ed576149ec614de5565b5b6149f682614e14565b9050602081019050919050565b600067ffffffffffffffff821115614a1e57614a1d614de5565b5b614a2782614e14565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614abb82614c2f565b9150614ac683614c2f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614afb57614afa614d58565b5b828201905092915050565b6000614b1182614c2f565b9150614b1c83614c2f565b925082614b2c57614b2b614d87565b5b828204905092915050565b6000614b4282614c2f565b9150614b4d83614c2f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b8657614b85614d58565b5b828202905092915050565b6000614b9c82614c2f565b9150614ba783614c2f565b925082821015614bba57614bb9614d58565b5b828203905092915050565b6000614bd082614c0f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c66578082015181840152602081019050614c4b565b83811115614c75576000848401525b50505050565b60006002820490506001821680614c9357607f821691505b60208210811415614ca757614ca6614db6565b5b50919050565b614cb682614e14565b810181811067ffffffffffffffff82111715614cd557614cd4614de5565b5b80604052505050565b6000614ce982614c2f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d1c57614d1b614d58565b5b600182019050919050565b6000614d3282614c2f565b9150614d3d83614c2f565b925082614d4d57614d4c614d87565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f4f50532e20746f6b656e20646f6573206e6f742065786973742e0000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f544f4f204541524c592e2073616c65206861736e277420737461727465642e00600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f544f4f204c4954544c452e20706c732073656e64206d6f6172206574682e0000600082015250565b7f544f444f2e2061727420636f6e747261637420686173206e6f74206265656e2060008201527f696d706c656d656e7465642e0000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f544f4f204c4154452e20616c6c2074686520646576206d696e7473206172652060008201527f6d696e7465642e00000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f544f4f204c4154452e20746869732073686f756c642068617070656e2066697260008201527f73742e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f544f4f204c4154452e20616c6c206a756e6b732068617665206265656e20736f60008201527f6c642e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f544f4f204d414e592e2045524337323120676173206c696d69747320686f772060008201527f6d7563682066756e2077652063616e20686176652e0000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f544f4f204d414e592e207468657265206172656e27742074686973206d616e7960008201527f206a756e6b73206c6566742e0000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61557981614bc5565b811461558457600080fd5b50565b61559081614bd7565b811461559b57600080fd5b50565b6155a781614be3565b81146155b257600080fd5b50565b6155be81614c2f565b81146155c957600080fd5b5056fe4920646f6e2774207468696e6b207468617420492063616e2068616e646c652074686973207269676874206e6f772e48616c66206f66207468652073686974207370696c6c6564206f75742c20627574206865207374696c6c2077726170706564206974492063616e277420666974206d792068616e6420696e736964652061207072696e676c652063616e4275742049276c6c20626c6f77206d7920646164206265666f72652049206561742061206275727269746f2077697468206120666f726b446f20796f75207468696e6b20492077616e742061206d65737379206275727269746f3f204e6f206f6e652077616e74732061206d65737379206275727269746fa26469706673582212200f1ee1744617e686022f54a07238971f4870a447a423e60df5615c6ef2f526d164736f6c63430008020033

Deployed Bytecode

0x6080604052600436106102a5576000357c0100000000000000000000000000000000000000000000000000000000900480634f6ccce7116101775780638da5cb5b116100de578063c87b56dd11610097578063c87b56dd146109e2578063cf41d6f814610a1f578063e493ef8c14610a29578063e8a3d48514610a54578063e985e9c514610a7f578063f2fde38b14610abc576102a5565b80638da5cb5b146108d45780639360e0db146108ff578063938e3d7b1461093c57806395d89b4114610965578063a22cb46514610990578063b88d4fde146109b9576102a5565b806370a082311161013057806370a08231146107d1578063715018a61461080e57806384b4fd9f1461082557806386773861146108505780638b8fbd921461086c5780638c4796c714610897576102a5565b80634f6ccce7146106c157806355f804b3146106fe5780635993368e146107275780635ed7970a146107525780636352211e1461077d5780636fe4a992146107ba576102a5565b80632688454a1161021b57806342842e0e116101d457806342842e0e146105b357806342966c68146105dc5780634361187d146106055780634980e1be1461062e5780634be1c796146106595780634e708d4514610684576102a5565b80632688454a146104a1578063297a9446146104cc5780632bc80f3a146104f55780632e7b0948146105205780632f745c591461054b578063390858c114610588576102a5565b806318160ddd1161026d57806318160ddd146103a35780631c801363146103ce5780631df48c20146103f95780631fdb772a1461042457806321c20ae31461043b57806323b872dd14610478576102a5565b806301ffc9a7146102aa57806306e431d3146102e757806306fdde0314610312578063081812fc1461033d578063095ea7b31461037a575b600080fd5b3480156102b657600080fd5b506102d160048036038101906102cc9190613f45565b610ae5565b6040516102de91906145f5565b60405180910390f35b3480156102f357600080fd5b506102fc610af7565b6040516103099190614992565b60405180910390f35b34801561031e57600080fd5b50610327610afd565b6040516103349190614610565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190614019565b610b8f565b604051610371919061456c565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613f09565b610c14565b005b3480156103af57600080fd5b506103b8610d2c565b6040516103c59190614992565b60405180910390f35b3480156103da57600080fd5b506103e3610d39565b6040516103f09190614992565b60405180910390f35b34801561040557600080fd5b5061040e610d3e565b60405161041b91906145f5565b60405180910390f35b34801561043057600080fd5b50610439610d51565b005b34801561044757600080fd5b50610462600480360381019061045d9190614019565b610dea565b60405161046f9190614992565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190613e03565b611199565b005b3480156104ad57600080fd5b506104b66111f9565b6040516104c39190614610565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613d9e565b611215565b005b34801561050157600080fd5b5061050a611316565b6040516105179190614610565b60405180910390f35b34801561052c57600080fd5b50610535611332565b6040516105429190614992565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613f09565b611338565b60405161057f9190614992565b60405180910390f35b34801561059457600080fd5b5061059d6113dd565b6040516105aa9190614610565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d59190613e03565b6113f9565b005b3480156105e857600080fd5b5061060360048036038101906105fe9190614019565b611419565b005b34801561061157600080fd5b5061062c60048036038101906106279190614019565b611475565b005b34801561063a57600080fd5b50610643611642565b6040516106509190614610565b60405180910390f35b34801561066557600080fd5b5061066e61167b565b60405161067b9190614610565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190613d9e565b611697565b6040516106b891906145d3565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190614019565b611813565b6040516106f59190614992565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190613f97565b6118aa565b005b34801561073357600080fd5b5061073c611940565b6040516107499190614992565b60405180910390f35b34801561075e57600080fd5b50610767611946565b6040516107749190614992565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190614019565b61194b565b6040516107b1919061456c565b60405180910390f35b3480156107c657600080fd5b506107cf6119fd565b005b3480156107dd57600080fd5b506107f860048036038101906107f39190613d9e565b611a96565b6040516108059190614992565b60405180910390f35b34801561081a57600080fd5b50610823611b4e565b005b34801561083157600080fd5b5061083a611c88565b604051610847919061456c565b60405180910390f35b61086a60048036038101906108659190614019565b611cae565b005b34801561087857600080fd5b50610881611e00565b60405161088e9190614610565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190614019565b611e1c565b6040516108cb9190614610565b60405180910390f35b3480156108e057600080fd5b506108e9611fcb565b6040516108f6919061456c565b60405180910390f35b34801561090b57600080fd5b5061092660048036038101906109219190614019565b611ff4565b6040516109339190614992565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613f97565b6120a7565b005b34801561097157600080fd5b5061097a61213d565b6040516109879190614610565b60405180910390f35b34801561099c57600080fd5b506109b760048036038101906109b29190613ecd565b6121cf565b005b3480156109c557600080fd5b506109e060048036038101906109db9190613e52565b612350565b005b3480156109ee57600080fd5b50610a096004803603810190610a049190614019565b6123b2565b604051610a169190614610565b60405180910390f35b610a2761240d565b005b348015610a3557600080fd5b50610a3e6124e7565b604051610a4b9190614610565b60405180910390f35b348015610a6057600080fd5b50610a69612520565b604051610a769190614610565b60405180910390f35b348015610a8b57600080fd5b50610aa66004803603810190610aa19190613dc7565b6125ae565b604051610ab391906145f5565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613d9e565b612642565b005b6000610af0826127eb565b9050919050565b6103e881565b606060018054610b0c90614c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3890614c7b565b8015610b855780601f10610b5a57610100808354040283529160200191610b85565b820191906000526020600020905b815481529060010190602001808311610b6857829003601f168201915b5050505050905090565b6000610b9a82612865565b610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090614832565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1f8261194b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c87906148b2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610caf6128d1565b73ffffffffffffffffffffffffffffffffffffffff161480610cde5750610cdd81610cd86128d1565b6125ae565b5b610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490614732565b60405180910390fd5b610d2783836128d9565b505050565b6000600980549050905090565b603281565b600c60009054906101000a900460ff1681565b610d596128d1565b73ffffffffffffffffffffffffffffffffffffffff16610d77611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490614852565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b60006127108210610dfe5760009050611194565b6045612710610e0d9190614b91565b8210610e23576713fbe85edc9000009050611194565b6101a46045612710610e359190614b91565b610e3f9190614b91565b8210610e5557670c59ea48da1900009050611194565b6101a4600b6045610e669190614b37565b612710610e739190614b91565b610e7d9190614b91565b8210610e93576707a1fe16027700009050611194565b6103e86101a4600c6045610ea79190614b37565b612710610eb49190614b91565b610ebe9190614b91565b610ec89190614b91565b8210610ede576704b7ec32d7a200009050611194565b60026103e8610eed9190614b37565b60026101a4610efc9190614b37565b600c6045610f0a9190614b37565b612710610f179190614b91565b610f219190614b91565b610f2b9190614b91565b8210610f41576702ea11e32ad500009050611194565b60046103e8610f509190614b37565b60026101a4610f5f9190614b37565b600d6045610f6d9190614b37565b612710610f7a9190614b91565b610f849190614b91565b610f8e9190614b91565b8210610fa4576701cdda4faccd00009050611194565b60056103e8610fb39190614b37565b60036101a4610fc29190614b37565b600d6045610fd09190614b37565b612710610fdd9190614b91565b610fe79190614b91565b610ff19190614b91565b82106110075767011c37937e0800009050611194565b60066103e86110169190614b37565b60036101a46110259190614b37565b600e60456110339190614b37565b6127106110409190614b91565b61104a9190614b91565b6110549190614b91565b82106110695766b1a2bc2ec500009050611194565b60066103e86110789190614b37565b60036101a46110879190614b37565b601860456110959190614b37565b6127106110a29190614b91565b6110ac9190614b91565b6110b69190614b91565b82106110cb57666a94d74f4300009050611194565b60066103e86110da9190614b37565b60046101a46110e99190614b37565b601860456110f79190614b37565b6127106111049190614b91565b61110e9190614b91565b6111189190614b91565b821061112d5766470de4df8200009050611194565b60066103e861113c9190614b37565b60046101a461114b9190614b37565b601960456111599190614b37565b6127106111669190614b91565b6111709190614b91565b61117a9190614b91565b821061118f57662386f26fc100009050611194565b600090505b919050565b6111aa6111a46128d1565b82612992565b6111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e0906148f2565b60405180910390fd5b6111f4838383612a70565b505050565b6040518060800160405280604181526020016156906041913981565b61121d6128d1565b73ffffffffffffffffffffffffffffffffffffffff1661123b611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890614852565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6040518060600160405280603781526020016156596037913981565b6101a481565b600061134383611a96565b8210611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90614632565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6040518060600160405280602f81526020016155cd602f913981565b61141483838360405180602001604052806000815250612350565b505050565b61142a6114246128d1565b82612992565b611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090614972565b60405180910390fd5b61147281612ccc565b50565b61147d6128d1565b73ffffffffffffffffffffffffffffffffffffffff1661149b611fcb565b73ffffffffffffffffffffffffffffffffffffffff16146114f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e890614852565b60405180910390fd5b60001515600c60009054906101000a900460ff16151514611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90614892565b60405180910390fd5b600060066103e86115589190614b37565b60046101a46115679190614b37565b601960456115759190614b37565b6127106115829190614b91565b61158c9190614b91565b6115969190614b91565b905060006115a4600b612ddd565b90508181106115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90614812565b60405180910390fd5b600060328410156115fb57839050611600565b603290505b82818361160d9190614ab0565b10156116215761161c81612deb565b61163c565b6000828461162f9190614b91565b905061163a81612deb565b505b50505050565b6040518060400160405280601881526020017f4d7920626967676573742070726f626c656d277320796f75000000000000000081525081565b6040518060600160405280603581526020016155fc6035913981565b606060006116a483611a96565b9050600081141561172757600067ffffffffffffffff8111156116f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561171e5781602001602082028036833780820191505090505b5091505061180e565b60008167ffffffffffffffff811115611769577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117975781602001602082028036833780820191505090505b50905060005b82811015611807576117af8582611338565b8282815181106117e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806117ff90614cde565b91505061179d565b5080925050505b919050565b600061181d610d2c565b821061185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590614932565b60405180910390fd5b60098281548110611898577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6118b26128d1565b73ffffffffffffffffffffffffffffffffffffffff166118d0611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d90614852565b60405180910390fd5b80600d908051906020019061193c929190613b5a565b5050565b61271081565b604581565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90614792565b60405180910390fd5b80915050919050565b611a056128d1565b73ffffffffffffffffffffffffffffffffffffffff16611a23611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090614852565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90614772565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b566128d1565b73ffffffffffffffffffffffffffffffffffffffff16611b74611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190614852565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60011515600c60009054906101000a900460ff16151514611d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfb90614752565b60405180910390fd5b612710611d11600b612ddd565b10611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d48906148d2565b60405180910390fd5b61271081611d5f600b612ddd565b611d699190614ab0565b10611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090614952565b60405180910390fd5b611db281611ff4565b341015611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb906147b2565b60405180910390fd5b611dfd81612deb565b50565b6040518060600160405280602881526020016156316028913981565b6060611e2782612865565b611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d90614712565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef906147d2565b60405180910390fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663562ec3d8836040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611f6f9190614992565b60006040518083038186803b158015611f8757600080fd5b505afa158015611f9b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611fc49190613fd8565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061271082612004600b612ddd565b61200e9190614ab0565b1061204e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204590614952565b60405180910390fd5b6000805b8381101561209d576000612066600b612ddd565b905061207c82826120779190614ab0565b610dea565b836120879190614ab0565b925050808061209590614cde565b915050612052565b8192505050919050565b6120af6128d1565b73ffffffffffffffffffffffffffffffffffffffff166120cd611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a90614852565b60405180910390fd5b80600e9080519060200190612139929190613b5a565b5050565b60606002805461214c90614c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461217890614c7b565b80156121c55780601f1061219a576101008083540402835291602001916121c5565b820191906000526020600020905b8154815290600101906020018083116121a857829003601f168201915b5050505050905090565b6121d76128d1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c906146d2565b60405180910390fd5b80600660006122526128d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122ff6128d1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161234491906145f5565b60405180910390a35050565b61236161235b6128d1565b83612992565b6123a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612397906148f2565b60405180910390fd5b6123ac84848484612e74565b50505050565b606060006123be612ed0565b905060006123cb84612f62565b90506000825114156123e1578092505050612408565b81816040516020016123f4929190614548565b604051602081830303815290604052925050505b919050565b6124156128d1565b73ffffffffffffffffffffffffffffffffffffffff16612433611fcb565b73ffffffffffffffffffffffffffffffffffffffff1614612489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248090614852565b60405180910390fd5b6124916128d1565b73ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f193505050506124e557600080fd5b565b6040518060400160405280601281526020017f43616e204920736179206d7920736869743f000000000000000000000000000081525081565b600e805461252d90614c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461255990614c7b565b80156125a65780601f1061257b576101008083540402835291602001916125a6565b820191906000526020600020905b81548152906001019060200180831161258957829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61264a6128d1565b73ffffffffffffffffffffffffffffffffffffffff16612668611fcb565b73ffffffffffffffffffffffffffffffffffffffff16146126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590614852565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561272e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272590614672565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061285e575061285d8261312e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661294c8361194b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061299d82612865565b6129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d3906146f2565b60405180910390fd5b60006129e78361194b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a5657508373ffffffffffffffffffffffffffffffffffffffff16612a3e84610b8f565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a675750612a6681856125ae565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a908261194b565b73ffffffffffffffffffffffffffffffffffffffff1614612ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612add90614872565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4d906146b2565b60405180910390fd5b612b61838383613210565b612b6c6000826128d9565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bbc9190614b91565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c139190614ab0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612cd78261194b565b9050612ce581600084613210565b612cf06000836128d9565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d409190614b91565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600081600001549050919050565b6032811115612e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2690614912565b60405180910390fd5b60005b81811015612e70576000612e46600b612ddd565b9050612e523382613220565b612e5c600b61323e565b508080612e6890614cde565b915050612e32565b5050565b612e7f848484612a70565b612e8b84848484613254565b612eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec190614652565b60405180910390fd5b50505050565b6060600d8054612edf90614c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054612f0b90614c7b565b8015612f585780601f10612f2d57610100808354040283529160200191612f58565b820191906000526020600020905b815481529060010190602001808311612f3b57829003601f168201915b5050505050905090565b60606000821415612faa576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613129565b600082905060005b60008214612fdc578080612fc590614cde565b915050600a82612fd59190614b06565b9150612fb2565b60008167ffffffffffffffff81111561301e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130505781602001600182028036833780820191505090505b5090505b60008514613122576001826130699190614b91565b9150600a856130789190614d27565b60306130849190614ab0565b7f0100000000000000000000000000000000000000000000000000000000000000028183815181106130df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561311b9190614b06565b9450613054565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806131f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613209575061320882613423565b5b9050919050565b61321b83838361348d565b505050565b61323a8282604051806020016040528060008152506135a1565b5050565b6001816000016000828254019250508190555050565b60006132758473ffffffffffffffffffffffffffffffffffffffff166135fc565b15613416578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261329e6128d1565b8786866040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016132dc9493929190614587565b602060405180830381600087803b1580156132f657600080fd5b505af192505050801561332757506040513d601f19601f820116820180604052508101906133249190613f6e565b60015b6133aa573d8060008114613357576040519150601f19603f3d011682016040523d82523d6000602084013e61335c565b606091505b506000815114156133a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339990614652565b60405180910390fd5b805181602001fd5b63150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061341b565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61349883838361360f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134db576134d681613614565b61351a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461351957613518838261365d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561355d57613558816137ca565b61359c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461359b5761359a828261390d565b5b5b505050565b6135ab838361398c565b6135b86000848484613254565b6135f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ee90614652565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161366a84611a96565b6136749190614b91565b9050600060086000848152602001908152602001600020549050818114613759576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506137de9190614b91565b90506000600a6000848152602001908152602001600020549050600060098381548110613834577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806009838154811061387c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806138f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061391883611a96565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139f3906147f2565b60405180910390fd5b613a0581612865565b15613a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a3c90614692565b60405180910390fd5b613a5160008383613210565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613aa19190614ab0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613b6690614c7b565b90600052602060002090601f016020900481019282613b885760008555613bcf565b82601f10613ba157805160ff1916838001178555613bcf565b82800160010185558215613bcf579182015b82811115613bce578251825591602001919060010190613bb3565b5b509050613bdc9190613be0565b5090565b5b80821115613bf9576000816000905550600101613be1565b5090565b6000613c10613c0b846149d2565b6149ad565b905082815260208101848484011115613c2857600080fd5b613c33848285614c39565b509392505050565b6000613c4e613c4984614a03565b6149ad565b905082815260208101848484011115613c6657600080fd5b613c71848285614c39565b509392505050565b6000613c8c613c8784614a03565b6149ad565b905082815260208101848484011115613ca457600080fd5b613caf848285614c48565b509392505050565b600081359050613cc681615570565b92915050565b600081359050613cdb81615587565b92915050565b600081359050613cf08161559e565b92915050565b600081519050613d058161559e565b92915050565b600082601f830112613d1c57600080fd5b8135613d2c848260208601613bfd565b91505092915050565b600082601f830112613d4657600080fd5b8135613d56848260208601613c3b565b91505092915050565b600082601f830112613d7057600080fd5b8151613d80848260208601613c79565b91505092915050565b600081359050613d98816155b5565b92915050565b600060208284031215613db057600080fd5b6000613dbe84828501613cb7565b91505092915050565b60008060408385031215613dda57600080fd5b6000613de885828601613cb7565b9250506020613df985828601613cb7565b9150509250929050565b600080600060608486031215613e1857600080fd5b6000613e2686828701613cb7565b9350506020613e3786828701613cb7565b9250506040613e4886828701613d89565b9150509250925092565b60008060008060808587031215613e6857600080fd5b6000613e7687828801613cb7565b9450506020613e8787828801613cb7565b9350506040613e9887828801613d89565b925050606085013567ffffffffffffffff811115613eb557600080fd5b613ec187828801613d0b565b91505092959194509250565b60008060408385031215613ee057600080fd5b6000613eee85828601613cb7565b9250506020613eff85828601613ccc565b9150509250929050565b60008060408385031215613f1c57600080fd5b6000613f2a85828601613cb7565b9250506020613f3b85828601613d89565b9150509250929050565b600060208284031215613f5757600080fd5b6000613f6584828501613ce1565b91505092915050565b600060208284031215613f8057600080fd5b6000613f8e84828501613cf6565b91505092915050565b600060208284031215613fa957600080fd5b600082013567ffffffffffffffff811115613fc357600080fd5b613fcf84828501613d35565b91505092915050565b600060208284031215613fea57600080fd5b600082015167ffffffffffffffff81111561400457600080fd5b61401084828501613d5f565b91505092915050565b60006020828403121561402b57600080fd5b600061403984828501613d89565b91505092915050565b600061404e838361452a565b60208301905092915050565b61406381614bc5565b82525050565b600061407482614a44565b61407e8185614a72565b935061408983614a34565b8060005b838110156140ba5781516140a18882614042565b97506140ac83614a65565b92505060018101905061408d565b5085935050505092915050565b6140d081614bd7565b82525050565b60006140e182614a4f565b6140eb8185614a83565b93506140fb818560208601614c48565b61410481614e14565b840191505092915050565b600061411a82614a5a565b6141248185614a94565b9350614134818560208601614c48565b61413d81614e14565b840191505092915050565b600061415382614a5a565b61415d8185614aa5565b935061416d818560208601614c48565b80840191505092915050565b6000614186602b83614a94565b915061419182614e25565b604082019050919050565b60006141a9603283614a94565b91506141b482614e74565b604082019050919050565b60006141cc602683614a94565b91506141d782614ec3565b604082019050919050565b60006141ef601c83614a94565b91506141fa82614f12565b602082019050919050565b6000614212602483614a94565b915061421d82614f3b565b604082019050919050565b6000614235601983614a94565b915061424082614f8a565b602082019050919050565b6000614258602c83614a94565b915061426382614fb3565b604082019050919050565b600061427b601b83614a94565b915061428682615002565b602082019050919050565b600061429e603883614a94565b91506142a98261502b565b604082019050919050565b60006142c1601f83614a94565b91506142cc8261507a565b602082019050919050565b60006142e4602a83614a94565b91506142ef826150a3565b604082019050919050565b6000614307602983614a94565b9150614312826150f2565b604082019050919050565b600061432a601e83614a94565b915061433582615141565b602082019050919050565b600061434d602c83614a94565b91506143588261516a565b604082019050919050565b6000614370602083614a94565b915061437b826151b9565b602082019050919050565b6000614393602783614a94565b915061439e826151e2565b604082019050919050565b60006143b6602c83614a94565b91506143c182615231565b604082019050919050565b60006143d9602083614a94565b91506143e482615280565b602082019050919050565b60006143fc602983614a94565b9150614407826152a9565b604082019050919050565b600061441f602383614a94565b915061442a826152f8565b604082019050919050565b6000614442602183614a94565b915061444d82615347565b604082019050919050565b6000614465602383614a94565b915061447082615396565b604082019050919050565b6000614488603183614a94565b9150614493826153e5565b604082019050919050565b60006144ab603583614a94565b91506144b682615434565b604082019050919050565b60006144ce602c83614a94565b91506144d982615483565b604082019050919050565b60006144f1602c83614a94565b91506144fc826154d2565b604082019050919050565b6000614514603083614a94565b915061451f82615521565b604082019050919050565b61453381614c2f565b82525050565b61454281614c2f565b82525050565b60006145548285614148565b91506145608284614148565b91508190509392505050565b6000602082019050614581600083018461405a565b92915050565b600060808201905061459c600083018761405a565b6145a9602083018661405a565b6145b66040830185614539565b81810360608301526145c881846140d6565b905095945050505050565b600060208201905081810360008301526145ed8184614069565b905092915050565b600060208201905061460a60008301846140c7565b92915050565b6000602082019050818103600083015261462a818461410f565b905092915050565b6000602082019050818103600083015261464b81614179565b9050919050565b6000602082019050818103600083015261466b8161419c565b9050919050565b6000602082019050818103600083015261468b816141bf565b9050919050565b600060208201905081810360008301526146ab816141e2565b9050919050565b600060208201905081810360008301526146cb81614205565b9050919050565b600060208201905081810360008301526146eb81614228565b9050919050565b6000602082019050818103600083015261470b8161424b565b9050919050565b6000602082019050818103600083015261472b8161426e565b9050919050565b6000602082019050818103600083015261474b81614291565b9050919050565b6000602082019050818103600083015261476b816142b4565b9050919050565b6000602082019050818103600083015261478b816142d7565b9050919050565b600060208201905081810360008301526147ab816142fa565b9050919050565b600060208201905081810360008301526147cb8161431d565b9050919050565b600060208201905081810360008301526147eb81614340565b9050919050565b6000602082019050818103600083015261480b81614363565b9050919050565b6000602082019050818103600083015261482b81614386565b9050919050565b6000602082019050818103600083015261484b816143a9565b9050919050565b6000602082019050818103600083015261486b816143cc565b9050919050565b6000602082019050818103600083015261488b816143ef565b9050919050565b600060208201905081810360008301526148ab81614412565b9050919050565b600060208201905081810360008301526148cb81614435565b9050919050565b600060208201905081810360008301526148eb81614458565b9050919050565b6000602082019050818103600083015261490b8161447b565b9050919050565b6000602082019050818103600083015261492b8161449e565b9050919050565b6000602082019050818103600083015261494b816144c1565b9050919050565b6000602082019050818103600083015261496b816144e4565b9050919050565b6000602082019050818103600083015261498b81614507565b9050919050565b60006020820190506149a76000830184614539565b92915050565b60006149b76149c8565b90506149c38282614cad565b919050565b6000604051905090565b600067ffffffffffffffff8211156149ed576149ec614de5565b5b6149f682614e14565b9050602081019050919050565b600067ffffffffffffffff821115614a1e57614a1d614de5565b5b614a2782614e14565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614abb82614c2f565b9150614ac683614c2f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614afb57614afa614d58565b5b828201905092915050565b6000614b1182614c2f565b9150614b1c83614c2f565b925082614b2c57614b2b614d87565b5b828204905092915050565b6000614b4282614c2f565b9150614b4d83614c2f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b8657614b85614d58565b5b828202905092915050565b6000614b9c82614c2f565b9150614ba783614c2f565b925082821015614bba57614bb9614d58565b5b828203905092915050565b6000614bd082614c0f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c66578082015181840152602081019050614c4b565b83811115614c75576000848401525b50505050565b60006002820490506001821680614c9357607f821691505b60208210811415614ca757614ca6614db6565b5b50919050565b614cb682614e14565b810181811067ffffffffffffffff82111715614cd557614cd4614de5565b5b80604052505050565b6000614ce982614c2f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d1c57614d1b614d58565b5b600182019050919050565b6000614d3282614c2f565b9150614d3d83614c2f565b925082614d4d57614d4c614d87565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f4f50532e20746f6b656e20646f6573206e6f742065786973742e0000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f544f4f204541524c592e2073616c65206861736e277420737461727465642e00600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f544f4f204c4954544c452e20706c732073656e64206d6f6172206574682e0000600082015250565b7f544f444f2e2061727420636f6e747261637420686173206e6f74206265656e2060008201527f696d706c656d656e7465642e0000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f544f4f204c4154452e20616c6c2074686520646576206d696e7473206172652060008201527f6d696e7465642e00000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f544f4f204c4154452e20746869732073686f756c642068617070656e2066697260008201527f73742e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f544f4f204c4154452e20616c6c206a756e6b732068617665206265656e20736f60008201527f6c642e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f544f4f204d414e592e2045524337323120676173206c696d69747320686f772060008201527f6d7563682066756e2077652063616e20686176652e0000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f544f4f204d414e592e207468657265206172656e27742074686973206d616e7960008201527f206a756e6b73206c6566742e0000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61557981614bc5565b811461558457600080fd5b50565b61559081614bd7565b811461559b57600080fd5b50565b6155a781614be3565b81146155b257600080fd5b50565b6155be81614c2f565b81146155c957600080fd5b5056fe4920646f6e2774207468696e6b207468617420492063616e2068616e646c652074686973207269676874206e6f772e48616c66206f66207468652073686974207370696c6c6564206f75742c20627574206865207374696c6c2077726170706564206974492063616e277420666974206d792068616e6420696e736964652061207072696e676c652063616e4275742049276c6c20626c6f77206d7920646164206265666f72652049206561742061206275727269746f2077697468206120666f726b446f20796f75207468696e6b20492077616e742061206d65737379206275727269746f3f204e6f206f6e652077616e74732061206d65737379206275727269746fa26469706673582212200f1ee1744617e686022f54a07238971f4870a447a423e60df5615c6ef2f526d164736f6c63430008020033

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.