ETH Price: $2,724.38 (+4.50%)

Token

SkullKids: Generations (SKGENS)
 

Overview

Max Total Supply

2,200 SKGENS

Holders

231

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Jewel Cases Creations: Deployer
Balance
1 SKGENS
0x9aa141d5990c129fdb11b2dcef43b572852d58e8
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SkullKids

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : SkullKids.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/*
SkullKids: Generations

BADFROOT x SPYR

                       ;#######m
                       @#b@   1#b
                        7##`   ##
                         ^@#   @#
                           @#  @#
                     ,,,,,  ## ]#b ,,sm####me,
                ,###M%"775W### j###MT7||..`"^5@##m,
             ,##M|                              `5@##w
           ,##"                                    ,|%##N
          @##                     ,s###Mm"Wg        'V,"##W
         @#b   #"sm#Q           ###########Q%Q        "N @##
        ]##   #@######m       @##############j#        ^# @##
        @#b  @]#########     #################@b        jb]##p
        @#b  @]#########p  #@#################j#         #j##b
        @#b  1d#########bb]b##################]b         b]##b
        ^##   b@########M~]M#################b@           ###
         @#b    \#######b jb#################]b          @##
          @#Q    ^5@##b     @###############;`          ###`
           %#N         ##m   7############b'          ;###
            ^@#p      %#@#M    "%######M7            @##C
              7#N                                   ###`
           ,s#####p                                @####@##g
         ,###M`   7W                              @#b    b3#b
         @##        @                            ]#      b@##
         @##Jp       @            ,,,           ##       '7%###
     ,#####Q#b        |"Wm, ,,sm#####mg,    ,a##\            "##
    ]###|            '7%mm|"%@##m,|j@###@###W7               .##
    @#b                   '7%WmQ%@##@m"^          ,,emeg,,,;##M
    j##,     ,,smmmg,          ,mW`.         ,e###MT|^|7j555|
      7%#####WT"^||"@###M= .*^,            mw25%########M%%@#M
         ,,ssss,sm###M".                       '    ^|      7##
       ###Q"777"7``           ,a######Mw,                    @#
      ###`                ,a###T`    '7%W###w,            ,a##b
     ]##p              ,###T`              ^"%##p        ##T~
      @#QW           @#M"                      "#W      ]#b
       '7@#p        @#b                          @#Mms###"
          ##       ##b                             ^^^``
          3##,  ,a##"
            "5WW87.

---

# BADFROOT TEAM

## Badfroot (Jack Davidson)
Artist/Creator of SkullKids
* Website: https://badfroot.com
* Twitter: @theBadfroot


## Jeff Sarris
Brand/Strategy/Developer
* Website: https://SPYR.me
* Twitter: @jeffSARRIS

---

# BUILDING YOUR OWN NFT PROJECT?

## Need someone to handle the tech?
Work with Jeff at https://RYPS.co

## Need help developing your brand and business?
Work with Jeff at https://SPYR.me

---

Alpha  =^.^=

*/

import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./extensions/ERC721AQueryable.sol";


contract SkullKids is ERC721AQueryable, Ownable, ReentrancyGuard {
    string  public baseURI;
    
    address public proxyRegistryAddress;

    address public badfroot;
    address public spyr;

    bytes32 public godsMerkleRoot;
    bytes32 public immortalsMerkleRoot;
    bytes32 public frootFrensMerkleRoot;

    uint256 public constant MAX_SUPPLY = 9800;
    uint256 public constant MAX_PER_TX = 25;

    uint256 public constant godsPrice = 0.01 ether;
    uint256 public constant immortalsPrice = 0.015 ether;
    uint256 public publicPrice = 0.03 ether;

    bool public immortalsSaleActive;
    bool public frootFrensSaleActive;
    bool public publicSaleActive;

    mapping(address => bool) public projectProxy;

    constructor(string memory _setBaseURI,address _proxyRegistryAddress,address _badfroot,address _spyr)
        ERC721A("SkullKids: Generations", "SKGENS") {
        
        // Init Constants
        baseURI = _setBaseURI;
        proxyRegistryAddress = _proxyRegistryAddress;
        badfroot = _badfroot;
        spyr = _spyr;
    }
    

    // Modifiers
    modifier onlyImmortalsActive() {
        require(immortalsSaleActive, "Immortal sale is not live!");
        _;
    }

    modifier onlyFrootFrensActive() {
        require(frootFrensSaleActive, "Froot Frens sale is not live!");
        _;
    }
    
    modifier onlyPublicActive() {
        require(publicSaleActive, "Public sale is not live!");
        _;
    }
    // END Modifiers


    // Set Functions
    function setBaseURI(string memory _setBaseURI) public onlyOwner {
        baseURI = _setBaseURI;
    }

    function setPublicPrice(uint256 _publicPrice) external onlyOwner {
        publicPrice = _publicPrice;
    }

    function setPayoutAddresses(address _badfroot,address _spyr) external onlyOwner {
        badfroot = _badfroot;
        spyr = _spyr;
    }
    // END Set Functions


    // Merkle Functions
    function setMerkleRoots(bytes32 _godsMerkleRoot,bytes32 _immortalsMerkleRoot,bytes32 _frootFrensMerkleRoot) external onlyOwner {    
        godsMerkleRoot = _godsMerkleRoot;
        immortalsMerkleRoot = _immortalsMerkleRoot;
        frootFrensMerkleRoot = _frootFrensMerkleRoot;
    }
    
    function setGodsMerkleRoot(bytes32 _godsMerkleRoot) external onlyOwner {    
        godsMerkleRoot = _godsMerkleRoot;
    }

    function setImmortalsMerkleRoot(bytes32 _immortalsMerkleRoot) external onlyOwner {
        immortalsMerkleRoot = _immortalsMerkleRoot;
    }

    function setFrootFrensMerkleRoot(bytes32 _frootFrensMerkleRoot) external onlyOwner {
        frootFrensMerkleRoot = _frootFrensMerkleRoot;
    }
    // END Merkle Functions


    // Mint Functions
    function godsMint(uint256 _quantity, bytes32[] calldata _proof) external payable onlyImmortalsActive nonReentrant() {
        require(MerkleProof.verify(_proof, godsMerkleRoot, keccak256(abi.encodePacked(msg.sender))), "Sorry, you're not an Immortal God!");
        require(_quantity <= MAX_PER_TX, "Sorry! You can only mint a maximum of 25 SkullKids per transaction!");
        require(godsPrice * _quantity == msg.value, "Wrong amount of ETH sent");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Exceeds maximum supply");

        _safeMint(msg.sender, _quantity);
    }


    function immortalsMint(uint256 _quantity, bytes32[] calldata _proof) external payable onlyImmortalsActive nonReentrant() {
        require(MerkleProof.verify(_proof, immortalsMerkleRoot, keccak256(abi.encodePacked(msg.sender))), "Sorry, you're not an Immortal!");
        require(_quantity <= MAX_PER_TX, "Sorry! You can only mint a maximum of 25 SkullKids per transaction!");
        require(immortalsPrice * _quantity == msg.value, "Wrong amount of ETH sent");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Exceeds maximum supply");

        _safeMint(msg.sender, _quantity);
    }
    

    function frootFrensMint(uint256 _quantity, bytes32[] calldata _proof) external payable onlyFrootFrensActive nonReentrant() {
        require(MerkleProof.verify(_proof, frootFrensMerkleRoot, keccak256(abi.encodePacked(msg.sender))), "Sorry, you're not a Froot Fren!");
        require(_quantity <= MAX_PER_TX, "Sorry! You can only mint a maximum of 25 SkullKids per transaction!");
        require(publicPrice * _quantity == msg.value, "Wrong amount of ETH sent");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Exceeds maximum supply");

        _safeMint(msg.sender, _quantity);
    }

    function publicMint(uint256 _quantity) external payable onlyPublicActive nonReentrant() {
        require(_quantity <= MAX_PER_TX, "Sorry! You can only mint a maximum of 25 SkullKids per transaction!");
        require(publicPrice * _quantity == msg.value, "Wrong amount of ETH sent");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Exceeds maximum supply");

        _safeMint( msg.sender, _quantity);
    } 

    // Dev minting function 
    function devMint(address _to, uint256 _quantity) external onlyOwner {
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Exceeds maximum supply");
        _safeMint(_to, _quantity);
    }
    // END Mint Functions


    // Toggle Sales
    function toggleImmortalsSale() external onlyOwner {
        immortalsSaleActive = !immortalsSaleActive;
    }

    function toggleFrootFrensSale() external onlyOwner {
        frootFrensSaleActive = !frootFrensSaleActive;
    }

    function togglePublicSale() external onlyOwner {
        publicSaleActive = !publicSaleActive;
        
        if (publicSaleActive) {
            delete frootFrensMerkleRoot;// Tiny gas savings on transaction
            frootFrensSaleActive = false;
        }
    }
    // END Toggle Sales


    // Override start token in ERC721A
    function _startTokenId() internal view virtual override returns (uint256) {
        return 201;
    }

    // Override _baseURI
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }


    // Withdraw Funds to Badfroot and SPYR
    function withdraw() public payable onlyOwner {
        uint256 _balance = address(this).balance;
        uint256 percent = _balance / 100;
        
        // 75% to Badfroot (Jack Davidson)
        require(payable(badfroot).send(percent * 75));

        // 25% to SPYR (Jeff Sarris)
        require(payable(spyr).send(percent * 25));
    }


    // Proxy Functions
    function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function flipProxyState(address _proxyAddress) public onlyOwner {
        projectProxy[_proxyAddress] = !projectProxy[_proxyAddress];
    }

    // OpenSea Secondary Contract Approval - Removes initial approval gas fee from sellers
    // Allow future contract approval
    function isApprovedForAll(address _owner, address _operator) public view override returns (bool) {
        OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == _operator || projectProxy[_operator]) return true;
        return super.isApprovedForAll(_owner, _operator);
    }
    // END Proxy Functions

}

contract OwnableDelegateProxy { }
contract OpenSeaProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

File 2 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 14 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../ERC721A.sol';

error InvalidQueryRange();

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _currentIndex) {
            return ownership;
        }
        ownership = _ownerships[tokenId];
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _currentIndex;
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, _currentIndex)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

File 8 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 9 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_setBaseURI","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"address","name":"_badfroot","type":"address"},{"internalType":"address","name":"_spyr","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"badfroot","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frootFrensMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"frootFrensMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"frootFrensSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"godsMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"godsMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"godsPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"immortalsMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"immortalsMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"immortalsPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"immortalsSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_setBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_frootFrensMerkleRoot","type":"bytes32"}],"name":"setFrootFrensMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_godsMerkleRoot","type":"bytes32"}],"name":"setGodsMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_immortalsMerkleRoot","type":"bytes32"}],"name":"setImmortalsMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_godsMerkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"_immortalsMerkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"_frootFrensMerkleRoot","type":"bytes32"}],"name":"setMerkleRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_badfroot","type":"address"},{"internalType":"address","name":"_spyr","type":"address"}],"name":"setPayoutAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"spyr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleFrootFrensSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleImmortalsSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052666a94d74f4300006011553480156200001c57600080fd5b506040516200634638038062006346833981810160405281019062000042919062000416565b6040518060400160405280601681526020017f536b756c6c4b6964733a2047656e65726174696f6e73000000000000000000008152506040518060400160405280600681526020017f534b47454e5300000000000000000000000000000000000000000000000000008152508160029080519060200190620000c6929190620002dd565b508060039080519060200190620000df929190620002dd565b50620000f06200020660201b60201c565b6000819055505050620001186200010c6200020f60201b60201c565b6200021760201b60201c565b600160098190555083600a908051906020019062000138929190620002dd565b5082600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000659565b600060c9905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002eb9062000564565b90600052602060002090601f0160209004810192826200030f57600085556200035b565b82601f106200032a57805160ff19168380011785556200035b565b828001600101855582156200035b579182015b828111156200035a5782518255916020019190600101906200033d565b5b5090506200036a91906200036e565b5090565b5b80821115620003895760008160009055506001016200036f565b5090565b6000620003a46200039e84620004c4565b6200049b565b905082815260208101848484011115620003bd57600080fd5b620003ca8482856200052e565b509392505050565b600081519050620003e3816200063f565b92915050565b600082601f830112620003fb57600080fd5b81516200040d8482602086016200038d565b91505092915050565b600080600080608085870312156200042d57600080fd5b600085015167ffffffffffffffff8111156200044857600080fd5b6200045687828801620003e9565b94505060206200046987828801620003d2565b93505060406200047c87828801620003d2565b92505060606200048f87828801620003d2565b91505092959194509250565b6000620004a7620004ba565b9050620004b582826200059a565b919050565b6000604051905090565b600067ffffffffffffffff821115620004e257620004e1620005ff565b5b620004ed826200062e565b9050602081019050919050565b600062000507826200050e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200054e57808201518184015260208101905062000531565b838111156200055e576000848401525b50505050565b600060028204905060018216806200057d57607f821691505b60208210811415620005945762000593620005d0565b5b50919050565b620005a5826200062e565b810181811067ffffffffffffffff82111715620005c757620005c6620005ff565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200064a81620004fa565b81146200065657600080fd5b50565b615cdd80620006696000396000f3fe60806040526004361061034e5760003560e01c806370a08231116101c6578063bc8893b4116100f7578063d8eeb54311610095578063f28e09f91161006f578063f28e09f914610be3578063f2fde38b14610c0c578063f43a22dc14610c35578063f73c814b14610c605761034e565b8063d8eeb54314610b66578063e222c7f914610b8f578063e985e9c514610ba65761034e565b8063c6275255116100d1578063c627525514610aac578063c87b56dd14610ad5578063cd7c032614610b12578063d26ea6c014610b3d5761034e565b8063bc8893b414610a19578063c23dc68f14610a44578063c3ff9f1014610a815761034e565b806395d89b4111610164578063a945bf801161013e578063a945bf801461097e578063b56b8a84146109a9578063b6495dd0146109d4578063b88d4fde146109f05761034e565b806395d89b41146108ed57806399a2557a14610918578063a22cb465146109555761034e565b80637ee3aaea116101a05780637ee3aaea1461082f5780638462151c1461085a5780638da5cb5b146108975780639267dba4146108c25761034e565b806370a08231146107bf578063715018a6146107fc5780637a58d942146108135761034e565b806323b872dd116102a057806355f804b31161023e5780635ee00fb5116102185780635ee00fb514610712578063627804af1461072e5780636352211e146107575780636c0360eb146107945761034e565b806355f804b31461066f5780635bab26e2146106985780635bbb2177146106d55761034e565b80633ccfd60b1161027a5780633ccfd60b146105e657806341d70afd146105f057806342842e0e1461061b5780634d6ca6c5146106445761034e565b806323b872dd146105765780632db115441461059f57806332cb6b0c146105bb5761034e565b806308298d3d1161030d5780631445f1cb116102e75780631445f1cb146104e057806318160ddd146104f75780631b21dff0146105225780631d25874d1461054d5761034e565b806308298d3d14610463578063095ea7b31461048c5780630d2839f2146104b55761034e565b8062e6178f14610353578062f9ae541461036a57806301ffc9a71461039357806306684652146103d057806306fdde03146103fb578063081812fc14610426575b600080fd5b34801561035f57600080fd5b50610368610c89565b005b34801561037657600080fd5b50610391600480360381019061038c9190614b91565b610d31565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190614be0565b610dc7565b6040516103c7919061524d565b60405180910390f35b3480156103dc57600080fd5b506103e5610ea9565b6040516103f29190615440565b60405180910390f35b34801561040757600080fd5b50610410610eb4565b60405161041d9190615283565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190614c9c565b610f46565b60405161045a91906151a2565b60405180910390f35b34801561046f57600080fd5b5061048a6004803603810190610485919061495a565b610fc2565b005b34801561049857600080fd5b506104b360048036038101906104ae9190614a9c565b6110c4565b005b3480156104c157600080fd5b506104ca6111cf565b6040516104d79190615268565b60405180910390f35b3480156104ec57600080fd5b506104f56111d5565b005b34801561050357600080fd5b5061050c61127d565b6040516105199190615440565b60405180910390f35b34801561052e57600080fd5b50610537611294565b6040516105449190615268565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190614b68565b61129a565b005b34801561058257600080fd5b5061059d60048036038101906105989190614996565b611320565b005b6105b960048036038101906105b49190614c9c565b611330565b005b3480156105c757600080fd5b506105d06114cc565b6040516105dd9190615440565b60405180910390f35b6105ee6114d2565b005b3480156105fc57600080fd5b50610605611640565b6040516106129190615440565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190614996565b61164b565b005b34801561065057600080fd5b5061065961166b565b6040516106669190615268565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190614c5b565b611671565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190614931565b611707565b6040516106cc919061524d565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190614b27565b611727565b6040516107099190615209565b60405180910390f35b61072c60048036038101906107279190614cc5565b61185a565b005b34801561073a57600080fd5b5061075560048036038101906107509190614a9c565b611ab0565b005b34801561076357600080fd5b5061077e60048036038101906107799190614c9c565b611b91565b60405161078b91906151a2565b60405180910390f35b3480156107a057600080fd5b506107a9611ba7565b6040516107b69190615283565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190614931565b611c35565b6040516107f39190615440565b60405180910390f35b34801561080857600080fd5b50610811611d05565b005b61082d60048036038101906108289190614cc5565b611d8d565b005b34801561083b57600080fd5b50610844611fe3565b60405161085191906151a2565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190614931565b612009565b60405161088e919061522b565b60405180910390f35b3480156108a357600080fd5b506108ac612257565b6040516108b991906151a2565b60405180910390f35b3480156108ce57600080fd5b506108d7612281565b6040516108e4919061524d565b60405180910390f35b3480156108f957600080fd5b50610902612294565b60405161090f9190615283565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190614ad8565b612326565b60405161094c919061522b565b60405180910390f35b34801561096157600080fd5b5061097c60048036038101906109779190614a60565b612639565b005b34801561098a57600080fd5b506109936127b1565b6040516109a09190615440565b60405180910390f35b3480156109b557600080fd5b506109be6127b7565b6040516109cb919061524d565b60405180910390f35b6109ee60048036038101906109e99190614cc5565b6127ca565b005b3480156109fc57600080fd5b50610a176004803603810190610a1291906149e5565b612a1b565b005b348015610a2557600080fd5b50610a2e612a97565b604051610a3b919061524d565b60405180910390f35b348015610a5057600080fd5b50610a6b6004803603810190610a669190614c9c565b612aaa565b604051610a789190615425565b60405180910390f35b348015610a8d57600080fd5b50610a96612bc7565b604051610aa391906151a2565b60405180910390f35b348015610ab857600080fd5b50610ad36004803603810190610ace9190614c9c565b612bed565b005b348015610ae157600080fd5b50610afc6004803603810190610af79190614c9c565b612c73565b604051610b099190615283565b60405180910390f35b348015610b1e57600080fd5b50610b27612d12565b604051610b3491906151a2565b60405180910390f35b348015610b4957600080fd5b50610b646004803603810190610b5f9190614931565b612d38565b005b348015610b7257600080fd5b50610b8d6004803603810190610b889190614b68565b612df8565b005b348015610b9b57600080fd5b50610ba4612e7e565b005b348015610bb257600080fd5b50610bcd6004803603810190610bc8919061495a565b612f5d565b604051610bda919061524d565b60405180910390f35b348015610bef57600080fd5b50610c0a6004803603810190610c059190614b68565b6130b3565b005b348015610c1857600080fd5b50610c336004803603810190610c2e9190614931565b613139565b005b348015610c4157600080fd5b50610c4a613231565b604051610c579190615440565b60405180910390f35b348015610c6c57600080fd5b50610c876004803603810190610c829190614931565b613236565b005b610c91613359565b73ffffffffffffffffffffffffffffffffffffffff16610caf612257565b73ffffffffffffffffffffffffffffffffffffffff1614610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90615325565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b610d39613359565b73ffffffffffffffffffffffffffffffffffffffff16610d57612257565b73ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490615325565b60405180910390fd5b82600e8190555081600f8190555080601081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e9257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ea25750610ea182613361565b5b9050919050565b66354a6ba7a1800081565b606060028054610ec3906157be565b80601f0160208091040260200160405190810160405280929190818152602001828054610eef906157be565b8015610f3c5780601f10610f1157610100808354040283529160200191610f3c565b820191906000526020600020905b815481529060010190602001808311610f1f57829003601f168201915b5050505050905090565b6000610f51826133cb565b610f87576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610fca613359565b73ffffffffffffffffffffffffffffffffffffffff16610fe8612257565b73ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590615325565b60405180910390fd5b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60006110cf82611b91565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611137576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611156613359565b73ffffffffffffffffffffffffffffffffffffffff1614158015611188575061118681611181613359565b612f5d565b155b156111bf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111ca838383613419565b505050565b600f5481565b6111dd613359565b73ffffffffffffffffffffffffffffffffffffffff166111fb612257565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890615325565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550565b60006112876134cb565b6001546000540303905090565b60105481565b6112a2613359565b73ffffffffffffffffffffffffffffffffffffffff166112c0612257565b73ffffffffffffffffffffffffffffffffffffffff1614611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90615325565b60405180910390fd5b80600f8190555050565b61132b8383836134d4565b505050565b601260029054906101000a900460ff1661137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690615405565b60405180910390fd5b600260095414156113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc906153c5565b60405180910390fd5b60026009819055506019811115611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890615345565b60405180910390fd5b3481601154611420919061564a565b14611460576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611457906153e5565b60405180910390fd5b6126488161146c61127d565b61147691906155c3565b11156114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90615365565b60405180910390fd5b6114c1338261398a565b600160098190555050565b61264881565b6114da613359565b73ffffffffffffffffffffffffffffffffffffffff166114f8612257565b73ffffffffffffffffffffffffffffffffffffffff161461154e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154590615325565b60405180910390fd5b600047905060006064826115629190615619565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc604b836115ad919061564a565b9081150290604051600060405180830381858888f193505050506115d057600080fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601983611619919061564a565b9081150290604051600060405180830381858888f1935050505061163c57600080fd5b5050565b662386f26fc1000081565b61166683838360405180602001604052806000815250612a1b565b505050565b600e5481565b611679613359565b73ffffffffffffffffffffffffffffffffffffffff16611697612257565b73ffffffffffffffffffffffffffffffffffffffff16146116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490615325565b60405180910390fd5b80600a9080519060200190611703929190614608565b5050565b60136020528060005260406000206000915054906101000a900460ff1681565b606060008251905060008167ffffffffffffffff811115611771577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117aa57816020015b61179761468e565b81526020019060019003908161178f5790505b50905060005b82811461184f576118008582815181106117f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612aaa565b828281518110611839577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101819052508060010190506117b0565b508092505050919050565b601260009054906101000a900460ff166118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a0906153a5565b60405180910390fd5b600260095414156118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e6906153c5565b60405180910390fd5b600260098190555061196b828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f54336040516020016119509190615163565b604051602081830303815290604052805190602001206139a8565b6119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a190615385565b60405180910390fd5b60198311156119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e590615345565b60405180910390fd5b348366354a6ba7a18000611a02919061564a565b14611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a39906153e5565b60405180910390fd5b61264883611a4e61127d565b611a5891906155c3565b1115611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9090615365565b60405180910390fd5b611aa3338461398a565b6001600981905550505050565b611ab8613359565b73ffffffffffffffffffffffffffffffffffffffff16611ad6612257565b73ffffffffffffffffffffffffffffffffffffffff1614611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2390615325565b60405180910390fd5b61264881611b3861127d565b611b4291906155c3565b1115611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a90615365565b60405180910390fd5b611b8d828261398a565b5050565b6000611b9c826139bf565b600001519050919050565b600a8054611bb4906157be565b80601f0160208091040260200160405190810160405280929190818152602001828054611be0906157be565b8015611c2d5780601f10611c0257610100808354040283529160200191611c2d565b820191906000526020600020905b815481529060010190602001808311611c1057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611d0d613359565b73ffffffffffffffffffffffffffffffffffffffff16611d2b612257565b73ffffffffffffffffffffffffffffffffffffffff1614611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890615325565b60405180910390fd5b611d8b6000613c4e565b565b601260009054906101000a900460ff16611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd3906153a5565b60405180910390fd5b60026009541415611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e19906153c5565b60405180910390fd5b6002600981905550611e9e828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5433604051602001611e839190615163565b604051602081830303815290604052805190602001206139a8565b611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490615305565b60405180910390fd5b6019831115611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890615345565b60405180910390fd5b3483662386f26fc10000611f35919061564a565b14611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c906153e5565b60405180910390fd5b61264883611f8161127d565b611f8b91906155c3565b1115611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390615365565b60405180910390fd5b611fd6338461398a565b6001600981905550505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600080600061201985611c35565b905060008167ffffffffffffffff81111561205d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561208b5781602001602082028036833780820191505090505b50905061209661468e565b60006120a06134cb565b90505b83861461224957600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050915081604001511561217c5761223e565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121bc57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561223d5780838780600101985081518110612230577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b8060010190506120a3565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601260019054906101000a900460ff1681565b6060600380546122a3906157be565b80601f01602080910402602001604051908101604052809291908181526020018280546122cf906157be565b801561231c5780601f106122f15761010080835404028352916020019161231c565b820191906000526020600020905b8154815290600101906020018083116122ff57829003601f168201915b5050505050905090565b6060818310612361576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060005490506123716134cb565b851015612383576123806134cb565b94505b8084111561238f578093505b600061239a87611c35565b9050848610156123bd5760008686039050818110156123b7578091505b506123c2565b600090505b60008167ffffffffffffffff811115612404577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156124325781602001602082028036833780820191505090505b509050600082141561244a5780945050505050612632565b600061245588612aaa565b90506000816040015161246a57816000015190505b60008990505b8881141580156124805750848714155b1561262457600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050925082604001511561255757612619565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461259757826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612618578084888060010199508151811061260b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b806001019050612470565b508583528296505050505050505b9392505050565b612641613359565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006126b3613359565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612760613359565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127a5919061524d565b60405180910390a35050565b60115481565b601260009054906101000a900460ff1681565b601260019054906101000a900460ff16612819576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612810906152e5565b60405180910390fd5b6002600954141561285f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612856906153c5565b60405180910390fd5b60026009819055506128db828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601054336040516020016128c09190615163565b604051602081830303815290604052805190602001206139a8565b61291a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612911906152c5565b60405180910390fd5b601983111561295e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295590615345565b60405180910390fd5b348360115461296d919061564a565b146129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a4906153e5565b60405180910390fd5b612648836129b961127d565b6129c391906155c3565b1115612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb90615365565b60405180910390fd5b612a0e338461398a565b6001600981905550505050565b612a268484846134d4565b612a458373ffffffffffffffffffffffffffffffffffffffff16613d14565b8015612a5a5750612a5884848484613d37565b155b15612a91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b601260029054906101000a900460ff1681565b612ab261468e565b612aba61468e565b612ac26134cb565b831080612ad157506000548310155b15612adf5780915050612bc2565b600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115612bb55780915050612bc2565b612bbe836139bf565b9150505b919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612bf5613359565b73ffffffffffffffffffffffffffffffffffffffff16612c13612257565b73ffffffffffffffffffffffffffffffffffffffff1614612c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6090615325565b60405180910390fd5b8060118190555050565b6060612c7e826133cb565b612cb4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612cbe613e97565b9050600081511415612cdf5760405180602001604052806000815250612d0a565b80612ce984613f29565b604051602001612cfa92919061517e565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612d40613359565b73ffffffffffffffffffffffffffffffffffffffff16612d5e612257565b73ffffffffffffffffffffffffffffffffffffffff1614612db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dab90615325565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612e00613359565b73ffffffffffffffffffffffffffffffffffffffff16612e1e612257565b73ffffffffffffffffffffffffffffffffffffffff1614612e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6b90615325565b60405180910390fd5b8060108190555050565b612e86613359565b73ffffffffffffffffffffffffffffffffffffffff16612ea4612257565b73ffffffffffffffffffffffffffffffffffffffff1614612efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef190615325565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550601260029054906101000a900460ff1615612f5b576010600090556000601260016101000a81548160ff0219169083151502179055505b565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401612fd591906151a2565b60206040518083038186803b158015612fed57600080fd5b505afa158015613001573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130259190614c32565b73ffffffffffffffffffffffffffffffffffffffff1614806130905750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561309f5760019150506130ad565b6130a984846140d6565b9150505b92915050565b6130bb613359565b73ffffffffffffffffffffffffffffffffffffffff166130d9612257565b73ffffffffffffffffffffffffffffffffffffffff161461312f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312690615325565b60405180910390fd5b80600e8190555050565b613141613359565b73ffffffffffffffffffffffffffffffffffffffff1661315f612257565b73ffffffffffffffffffffffffffffffffffffffff16146131b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ac90615325565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321c906152a5565b60405180910390fd5b61322e81613c4e565b50565b601981565b61323e613359565b73ffffffffffffffffffffffffffffffffffffffff1661325c612257565b73ffffffffffffffffffffffffffffffffffffffff16146132b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a990615325565b60405180910390fd5b601360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816133d66134cb565b111580156133e5575060005482105b8015613412575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600060c9905090565b60006134df826139bf565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461354a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661356b613359565b73ffffffffffffffffffffffffffffffffffffffff16148061359a575061359985613594613359565b612f5d565b5b806135df57506135a8613359565b73ffffffffffffffffffffffffffffffffffffffff166135c784610f46565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613618576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561367f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61368c858585600161416a565b61369860008487613419565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561391857600054821461391757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139838585856001614170565b5050505050565b6139a4828260405180602001604052806000815250614176565b5050565b6000826139b58584614188565b1490509392505050565b6139c761468e565b6000829050806139d56134cb565b111580156139e4575060005481105b15613c17576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613c1557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613af9578092505050613c49565b5b600115613c1457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613c0f578092505050613c49565b613afa565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613d5d613359565b8786866040518563ffffffff1660e01b8152600401613d7f94939291906151bd565b602060405180830381600087803b158015613d9957600080fd5b505af1925050508015613dca57506040513d601f19601f82011682018060405250810190613dc79190614c09565b60015b613e44573d8060008114613dfa576040519150601f19603f3d011682016040523d82523d6000602084013e613dff565b606091505b50600081511415613e3c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054613ea6906157be565b80601f0160208091040260200160405190810160405280929190818152602001828054613ed2906157be565b8015613f1f5780601f10613ef457610100808354040283529160200191613f1f565b820191906000526020600020905b815481529060010190602001808311613f0257829003601f168201915b5050505050905090565b60606000821415613f71576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506140d1565b600082905060005b60008214613fa3578080613f8c90615821565b915050600a82613f9c9190615619565b9150613f79565b60008167ffffffffffffffff811115613fe5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156140175781602001600182028036833780820191505090505b5090505b600085146140ca5760018261403091906156a4565b9150600a8561403f919061588e565b603061404b91906155c3565b60f81b818381518110614087577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856140c39190615619565b945061401b565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6141838383836001614223565b505050565b60008082905060005b84518110156142185760008582815181106141d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116141f7576141f083826145f1565b9250614204565b61420181846145f1565b92505b50808061421090615821565b915050614191565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415614290576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156142cb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6142d8600086838761416a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156144a257506144a18773ffffffffffffffffffffffffffffffffffffffff16613d14565b5b15614568575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46145176000888480600101955088613d37565b61454d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156144a857826000541461456357600080fd5b6145d4565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614569575b8160008190555050506145ea6000868387614170565b5050505050565b600082600052816020526040600020905092915050565b828054614614906157be565b90600052602060002090601f016020900481019282614636576000855561467d565b82601f1061464f57805160ff191683800117855561467d565b8280016001018555821561467d579182015b8281111561467c578251825591602001919060010190614661565b5b50905061468a91906146d1565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156146ea5760008160009055506001016146d2565b5090565b60006147016146fc84615480565b61545b565b9050808382526020820190508285602086028201111561472057600080fd5b60005b858110156147505781614736888261491c565b845260208401935060208301925050600181019050614723565b5050509392505050565b600061476d614768846154ac565b61545b565b90508281526020810184848401111561478557600080fd5b61479084828561577c565b509392505050565b60006147ab6147a6846154dd565b61545b565b9050828152602081018484840111156147c357600080fd5b6147ce84828561577c565b509392505050565b6000813590506147e581615c1d565b92915050565b60008083601f8401126147fd57600080fd5b8235905067ffffffffffffffff81111561481657600080fd5b60208301915083602082028301111561482e57600080fd5b9250929050565b600082601f83011261484657600080fd5b81356148568482602086016146ee565b91505092915050565b60008135905061486e81615c34565b92915050565b60008135905061488381615c4b565b92915050565b60008135905061489881615c62565b92915050565b6000815190506148ad81615c62565b92915050565b600082601f8301126148c457600080fd5b81356148d484826020860161475a565b91505092915050565b6000815190506148ec81615c79565b92915050565b600082601f83011261490357600080fd5b8135614913848260208601614798565b91505092915050565b60008135905061492b81615c90565b92915050565b60006020828403121561494357600080fd5b6000614951848285016147d6565b91505092915050565b6000806040838503121561496d57600080fd5b600061497b858286016147d6565b925050602061498c858286016147d6565b9150509250929050565b6000806000606084860312156149ab57600080fd5b60006149b9868287016147d6565b93505060206149ca868287016147d6565b92505060406149db8682870161491c565b9150509250925092565b600080600080608085870312156149fb57600080fd5b6000614a09878288016147d6565b9450506020614a1a878288016147d6565b9350506040614a2b8782880161491c565b925050606085013567ffffffffffffffff811115614a4857600080fd5b614a54878288016148b3565b91505092959194509250565b60008060408385031215614a7357600080fd5b6000614a81858286016147d6565b9250506020614a928582860161485f565b9150509250929050565b60008060408385031215614aaf57600080fd5b6000614abd858286016147d6565b9250506020614ace8582860161491c565b9150509250929050565b600080600060608486031215614aed57600080fd5b6000614afb868287016147d6565b9350506020614b0c8682870161491c565b9250506040614b1d8682870161491c565b9150509250925092565b600060208284031215614b3957600080fd5b600082013567ffffffffffffffff811115614b5357600080fd5b614b5f84828501614835565b91505092915050565b600060208284031215614b7a57600080fd5b6000614b8884828501614874565b91505092915050565b600080600060608486031215614ba657600080fd5b6000614bb486828701614874565b9350506020614bc586828701614874565b9250506040614bd686828701614874565b9150509250925092565b600060208284031215614bf257600080fd5b6000614c0084828501614889565b91505092915050565b600060208284031215614c1b57600080fd5b6000614c298482850161489e565b91505092915050565b600060208284031215614c4457600080fd5b6000614c52848285016148dd565b91505092915050565b600060208284031215614c6d57600080fd5b600082013567ffffffffffffffff811115614c8757600080fd5b614c93848285016148f2565b91505092915050565b600060208284031215614cae57600080fd5b6000614cbc8482850161491c565b91505092915050565b600080600060408486031215614cda57600080fd5b6000614ce88682870161491c565b935050602084013567ffffffffffffffff811115614d0557600080fd5b614d11868287016147eb565b92509250509250925092565b6000614d2983836150b2565b60608301905092915050565b6000614d418383615136565b60208301905092915050565b614d56816156d8565b82525050565b614d65816156d8565b82525050565b614d7c614d77826156d8565b61586a565b82525050565b6000614d8d8261552e565b614d978185615574565b9350614da28361550e565b8060005b83811015614dd3578151614dba8882614d1d565b9750614dc58361555a565b925050600181019050614da6565b5085935050505092915050565b6000614deb82615539565b614df58185615585565b9350614e008361551e565b8060005b83811015614e31578151614e188882614d35565b9750614e2383615567565b925050600181019050614e04565b5085935050505092915050565b614e47816156ea565b82525050565b614e56816156ea565b82525050565b614e65816156f6565b82525050565b6000614e7682615544565b614e808185615596565b9350614e9081856020860161578b565b614e998161597b565b840191505092915050565b6000614eaf8261554f565b614eb981856155a7565b9350614ec981856020860161578b565b614ed28161597b565b840191505092915050565b6000614ee88261554f565b614ef281856155b8565b9350614f0281856020860161578b565b80840191505092915050565b6000614f1b6026836155a7565b9150614f2682615999565b604082019050919050565b6000614f3e601f836155a7565b9150614f49826159e8565b602082019050919050565b6000614f61601d836155a7565b9150614f6c82615a11565b602082019050919050565b6000614f846022836155a7565b9150614f8f82615a3a565b604082019050919050565b6000614fa76020836155a7565b9150614fb282615a89565b602082019050919050565b6000614fca6043836155a7565b9150614fd582615ab2565b606082019050919050565b6000614fed6016836155a7565b9150614ff882615b27565b602082019050919050565b6000615010601e836155a7565b915061501b82615b50565b602082019050919050565b6000615033601a836155a7565b915061503e82615b79565b602082019050919050565b6000615056601f836155a7565b915061506182615ba2565b602082019050919050565b60006150796018836155a7565b915061508482615bcb565b602082019050919050565b600061509c6018836155a7565b91506150a782615bf4565b602082019050919050565b6060820160008201516150c86000850182614d4d565b5060208201516150db6020850182615154565b5060408201516150ee6040850182614e3e565b50505050565b60608201600082015161510a6000850182614d4d565b50602082015161511d6020850182615154565b5060408201516151306040850182614e3e565b50505050565b61513f8161575e565b82525050565b61514e8161575e565b82525050565b61515d81615768565b82525050565b600061516f8284614d6b565b60148201915081905092915050565b600061518a8285614edd565b91506151968284614edd565b91508190509392505050565b60006020820190506151b76000830184614d5c565b92915050565b60006080820190506151d26000830187614d5c565b6151df6020830186614d5c565b6151ec6040830185615145565b81810360608301526151fe8184614e6b565b905095945050505050565b600060208201905081810360008301526152238184614d82565b905092915050565b600060208201905081810360008301526152458184614de0565b905092915050565b60006020820190506152626000830184614e4d565b92915050565b600060208201905061527d6000830184614e5c565b92915050565b6000602082019050818103600083015261529d8184614ea4565b905092915050565b600060208201905081810360008301526152be81614f0e565b9050919050565b600060208201905081810360008301526152de81614f31565b9050919050565b600060208201905081810360008301526152fe81614f54565b9050919050565b6000602082019050818103600083015261531e81614f77565b9050919050565b6000602082019050818103600083015261533e81614f9a565b9050919050565b6000602082019050818103600083015261535e81614fbd565b9050919050565b6000602082019050818103600083015261537e81614fe0565b9050919050565b6000602082019050818103600083015261539e81615003565b9050919050565b600060208201905081810360008301526153be81615026565b9050919050565b600060208201905081810360008301526153de81615049565b9050919050565b600060208201905081810360008301526153fe8161506c565b9050919050565b6000602082019050818103600083015261541e8161508f565b9050919050565b600060608201905061543a60008301846150f4565b92915050565b60006020820190506154556000830184615145565b92915050565b6000615465615476565b905061547182826157f0565b919050565b6000604051905090565b600067ffffffffffffffff82111561549b5761549a61594c565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156154c7576154c661594c565b5b6154d08261597b565b9050602081019050919050565b600067ffffffffffffffff8211156154f8576154f761594c565b5b6155018261597b565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006155ce8261575e565b91506155d98361575e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561560e5761560d6158bf565b5b828201905092915050565b60006156248261575e565b915061562f8361575e565b92508261563f5761563e6158ee565b5b828204905092915050565b60006156558261575e565b91506156608361575e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615699576156986158bf565b5b828202905092915050565b60006156af8261575e565b91506156ba8361575e565b9250828210156156cd576156cc6158bf565b5b828203905092915050565b60006156e38261573e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000615737826156d8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156157a957808201518184015260208101905061578e565b838111156157b8576000848401525b50505050565b600060028204905060018216806157d657607f821691505b602082108114156157ea576157e961591d565b5b50919050565b6157f98261597b565b810181811067ffffffffffffffff821117156158185761581761594c565b5b80604052505050565b600061582c8261575e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561585f5761585e6158bf565b5b600182019050919050565b60006158758261587c565b9050919050565b60006158878261598c565b9050919050565b60006158998261575e565b91506158a48361575e565b9250826158b4576158b36158ee565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c20796f75277265206e6f7420612046726f6f74204672656e2100600082015250565b7f46726f6f74204672656e732073616c65206973206e6f74206c69766521000000600082015250565b7f536f7272792c20796f75277265206e6f7420616e20496d6d6f7274616c20476f60008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f7272792120596f752063616e206f6e6c79206d696e742061206d6178696d60008201527f756d206f6620323520536b756c6c4b69647320706572207472616e736163746960208201527f6f6e210000000000000000000000000000000000000000000000000000000000604082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f536f7272792c20796f75277265206e6f7420616e20496d6d6f7274616c210000600082015250565b7f496d6d6f7274616c2073616c65206973206e6f74206c69766521000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b7f5075626c69632073616c65206973206e6f74206c697665210000000000000000600082015250565b615c26816156d8565b8114615c3157600080fd5b50565b615c3d816156ea565b8114615c4857600080fd5b50565b615c54816156f6565b8114615c5f57600080fd5b50565b615c6b81615700565b8114615c7657600080fd5b50565b615c828161572c565b8114615c8d57600080fd5b50565b615c998161575e565b8114615ca457600080fd5b5056fea2646970667358221220b47e3cf813c53bb8fd21eab9495dfa793283ddb6e09b6aedad67362f798f47b064736f6c634300080400330000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000293d6d6f9721e7d9df9f36ee56866a8ceaf0a26d00000000000000000000000040d1a7ba8c2af1934142194b83a87209cc82bd31000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6170692e727970732e636f2f736b756c6c6b6964732f69642f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061034e5760003560e01c806370a08231116101c6578063bc8893b4116100f7578063d8eeb54311610095578063f28e09f91161006f578063f28e09f914610be3578063f2fde38b14610c0c578063f43a22dc14610c35578063f73c814b14610c605761034e565b8063d8eeb54314610b66578063e222c7f914610b8f578063e985e9c514610ba65761034e565b8063c6275255116100d1578063c627525514610aac578063c87b56dd14610ad5578063cd7c032614610b12578063d26ea6c014610b3d5761034e565b8063bc8893b414610a19578063c23dc68f14610a44578063c3ff9f1014610a815761034e565b806395d89b4111610164578063a945bf801161013e578063a945bf801461097e578063b56b8a84146109a9578063b6495dd0146109d4578063b88d4fde146109f05761034e565b806395d89b41146108ed57806399a2557a14610918578063a22cb465146109555761034e565b80637ee3aaea116101a05780637ee3aaea1461082f5780638462151c1461085a5780638da5cb5b146108975780639267dba4146108c25761034e565b806370a08231146107bf578063715018a6146107fc5780637a58d942146108135761034e565b806323b872dd116102a057806355f804b31161023e5780635ee00fb5116102185780635ee00fb514610712578063627804af1461072e5780636352211e146107575780636c0360eb146107945761034e565b806355f804b31461066f5780635bab26e2146106985780635bbb2177146106d55761034e565b80633ccfd60b1161027a5780633ccfd60b146105e657806341d70afd146105f057806342842e0e1461061b5780634d6ca6c5146106445761034e565b806323b872dd146105765780632db115441461059f57806332cb6b0c146105bb5761034e565b806308298d3d1161030d5780631445f1cb116102e75780631445f1cb146104e057806318160ddd146104f75780631b21dff0146105225780631d25874d1461054d5761034e565b806308298d3d14610463578063095ea7b31461048c5780630d2839f2146104b55761034e565b8062e6178f14610353578062f9ae541461036a57806301ffc9a71461039357806306684652146103d057806306fdde03146103fb578063081812fc14610426575b600080fd5b34801561035f57600080fd5b50610368610c89565b005b34801561037657600080fd5b50610391600480360381019061038c9190614b91565b610d31565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190614be0565b610dc7565b6040516103c7919061524d565b60405180910390f35b3480156103dc57600080fd5b506103e5610ea9565b6040516103f29190615440565b60405180910390f35b34801561040757600080fd5b50610410610eb4565b60405161041d9190615283565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190614c9c565b610f46565b60405161045a91906151a2565b60405180910390f35b34801561046f57600080fd5b5061048a6004803603810190610485919061495a565b610fc2565b005b34801561049857600080fd5b506104b360048036038101906104ae9190614a9c565b6110c4565b005b3480156104c157600080fd5b506104ca6111cf565b6040516104d79190615268565b60405180910390f35b3480156104ec57600080fd5b506104f56111d5565b005b34801561050357600080fd5b5061050c61127d565b6040516105199190615440565b60405180910390f35b34801561052e57600080fd5b50610537611294565b6040516105449190615268565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190614b68565b61129a565b005b34801561058257600080fd5b5061059d60048036038101906105989190614996565b611320565b005b6105b960048036038101906105b49190614c9c565b611330565b005b3480156105c757600080fd5b506105d06114cc565b6040516105dd9190615440565b60405180910390f35b6105ee6114d2565b005b3480156105fc57600080fd5b50610605611640565b6040516106129190615440565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190614996565b61164b565b005b34801561065057600080fd5b5061065961166b565b6040516106669190615268565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190614c5b565b611671565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190614931565b611707565b6040516106cc919061524d565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190614b27565b611727565b6040516107099190615209565b60405180910390f35b61072c60048036038101906107279190614cc5565b61185a565b005b34801561073a57600080fd5b5061075560048036038101906107509190614a9c565b611ab0565b005b34801561076357600080fd5b5061077e60048036038101906107799190614c9c565b611b91565b60405161078b91906151a2565b60405180910390f35b3480156107a057600080fd5b506107a9611ba7565b6040516107b69190615283565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190614931565b611c35565b6040516107f39190615440565b60405180910390f35b34801561080857600080fd5b50610811611d05565b005b61082d60048036038101906108289190614cc5565b611d8d565b005b34801561083b57600080fd5b50610844611fe3565b60405161085191906151a2565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190614931565b612009565b60405161088e919061522b565b60405180910390f35b3480156108a357600080fd5b506108ac612257565b6040516108b991906151a2565b60405180910390f35b3480156108ce57600080fd5b506108d7612281565b6040516108e4919061524d565b60405180910390f35b3480156108f957600080fd5b50610902612294565b60405161090f9190615283565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190614ad8565b612326565b60405161094c919061522b565b60405180910390f35b34801561096157600080fd5b5061097c60048036038101906109779190614a60565b612639565b005b34801561098a57600080fd5b506109936127b1565b6040516109a09190615440565b60405180910390f35b3480156109b557600080fd5b506109be6127b7565b6040516109cb919061524d565b60405180910390f35b6109ee60048036038101906109e99190614cc5565b6127ca565b005b3480156109fc57600080fd5b50610a176004803603810190610a1291906149e5565b612a1b565b005b348015610a2557600080fd5b50610a2e612a97565b604051610a3b919061524d565b60405180910390f35b348015610a5057600080fd5b50610a6b6004803603810190610a669190614c9c565b612aaa565b604051610a789190615425565b60405180910390f35b348015610a8d57600080fd5b50610a96612bc7565b604051610aa391906151a2565b60405180910390f35b348015610ab857600080fd5b50610ad36004803603810190610ace9190614c9c565b612bed565b005b348015610ae157600080fd5b50610afc6004803603810190610af79190614c9c565b612c73565b604051610b099190615283565b60405180910390f35b348015610b1e57600080fd5b50610b27612d12565b604051610b3491906151a2565b60405180910390f35b348015610b4957600080fd5b50610b646004803603810190610b5f9190614931565b612d38565b005b348015610b7257600080fd5b50610b8d6004803603810190610b889190614b68565b612df8565b005b348015610b9b57600080fd5b50610ba4612e7e565b005b348015610bb257600080fd5b50610bcd6004803603810190610bc8919061495a565b612f5d565b604051610bda919061524d565b60405180910390f35b348015610bef57600080fd5b50610c0a6004803603810190610c059190614b68565b6130b3565b005b348015610c1857600080fd5b50610c336004803603810190610c2e9190614931565b613139565b005b348015610c4157600080fd5b50610c4a613231565b604051610c579190615440565b60405180910390f35b348015610c6c57600080fd5b50610c876004803603810190610c829190614931565b613236565b005b610c91613359565b73ffffffffffffffffffffffffffffffffffffffff16610caf612257565b73ffffffffffffffffffffffffffffffffffffffff1614610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc90615325565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b610d39613359565b73ffffffffffffffffffffffffffffffffffffffff16610d57612257565b73ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490615325565b60405180910390fd5b82600e8190555081600f8190555080601081905550505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e9257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ea25750610ea182613361565b5b9050919050565b66354a6ba7a1800081565b606060028054610ec3906157be565b80601f0160208091040260200160405190810160405280929190818152602001828054610eef906157be565b8015610f3c5780601f10610f1157610100808354040283529160200191610f3c565b820191906000526020600020905b815481529060010190602001808311610f1f57829003601f168201915b5050505050905090565b6000610f51826133cb565b610f87576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610fca613359565b73ffffffffffffffffffffffffffffffffffffffff16610fe8612257565b73ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590615325565b60405180910390fd5b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60006110cf82611b91565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611137576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611156613359565b73ffffffffffffffffffffffffffffffffffffffff1614158015611188575061118681611181613359565b612f5d565b155b156111bf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111ca838383613419565b505050565b600f5481565b6111dd613359565b73ffffffffffffffffffffffffffffffffffffffff166111fb612257565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890615325565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550565b60006112876134cb565b6001546000540303905090565b60105481565b6112a2613359565b73ffffffffffffffffffffffffffffffffffffffff166112c0612257565b73ffffffffffffffffffffffffffffffffffffffff1614611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90615325565b60405180910390fd5b80600f8190555050565b61132b8383836134d4565b505050565b601260029054906101000a900460ff1661137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690615405565b60405180910390fd5b600260095414156113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc906153c5565b60405180910390fd5b60026009819055506019811115611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890615345565b60405180910390fd5b3481601154611420919061564a565b14611460576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611457906153e5565b60405180910390fd5b6126488161146c61127d565b61147691906155c3565b11156114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90615365565b60405180910390fd5b6114c1338261398a565b600160098190555050565b61264881565b6114da613359565b73ffffffffffffffffffffffffffffffffffffffff166114f8612257565b73ffffffffffffffffffffffffffffffffffffffff161461154e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154590615325565b60405180910390fd5b600047905060006064826115629190615619565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc604b836115ad919061564a565b9081150290604051600060405180830381858888f193505050506115d057600080fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc601983611619919061564a565b9081150290604051600060405180830381858888f1935050505061163c57600080fd5b5050565b662386f26fc1000081565b61166683838360405180602001604052806000815250612a1b565b505050565b600e5481565b611679613359565b73ffffffffffffffffffffffffffffffffffffffff16611697612257565b73ffffffffffffffffffffffffffffffffffffffff16146116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490615325565b60405180910390fd5b80600a9080519060200190611703929190614608565b5050565b60136020528060005260406000206000915054906101000a900460ff1681565b606060008251905060008167ffffffffffffffff811115611771577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156117aa57816020015b61179761468e565b81526020019060019003908161178f5790505b50905060005b82811461184f576118008582815181106117f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612aaa565b828281518110611839577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101819052508060010190506117b0565b508092505050919050565b601260009054906101000a900460ff166118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a0906153a5565b60405180910390fd5b600260095414156118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e6906153c5565b60405180910390fd5b600260098190555061196b828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f54336040516020016119509190615163565b604051602081830303815290604052805190602001206139a8565b6119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a190615385565b60405180910390fd5b60198311156119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e590615345565b60405180910390fd5b348366354a6ba7a18000611a02919061564a565b14611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a39906153e5565b60405180910390fd5b61264883611a4e61127d565b611a5891906155c3565b1115611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9090615365565b60405180910390fd5b611aa3338461398a565b6001600981905550505050565b611ab8613359565b73ffffffffffffffffffffffffffffffffffffffff16611ad6612257565b73ffffffffffffffffffffffffffffffffffffffff1614611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2390615325565b60405180910390fd5b61264881611b3861127d565b611b4291906155c3565b1115611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a90615365565b60405180910390fd5b611b8d828261398a565b5050565b6000611b9c826139bf565b600001519050919050565b600a8054611bb4906157be565b80601f0160208091040260200160405190810160405280929190818152602001828054611be0906157be565b8015611c2d5780601f10611c0257610100808354040283529160200191611c2d565b820191906000526020600020905b815481529060010190602001808311611c1057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611d0d613359565b73ffffffffffffffffffffffffffffffffffffffff16611d2b612257565b73ffffffffffffffffffffffffffffffffffffffff1614611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890615325565b60405180910390fd5b611d8b6000613c4e565b565b601260009054906101000a900460ff16611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd3906153a5565b60405180910390fd5b60026009541415611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e19906153c5565b60405180910390fd5b6002600981905550611e9e828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5433604051602001611e839190615163565b604051602081830303815290604052805190602001206139a8565b611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed490615305565b60405180910390fd5b6019831115611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890615345565b60405180910390fd5b3483662386f26fc10000611f35919061564a565b14611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c906153e5565b60405180910390fd5b61264883611f8161127d565b611f8b91906155c3565b1115611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390615365565b60405180910390fd5b611fd6338461398a565b6001600981905550505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600080600061201985611c35565b905060008167ffffffffffffffff81111561205d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561208b5781602001602082028036833780820191505090505b50905061209661468e565b60006120a06134cb565b90505b83861461224957600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050915081604001511561217c5761223e565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121bc57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561223d5780838780600101985081518110612230577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b8060010190506120a3565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601260019054906101000a900460ff1681565b6060600380546122a3906157be565b80601f01602080910402602001604051908101604052809291908181526020018280546122cf906157be565b801561231c5780601f106122f15761010080835404028352916020019161231c565b820191906000526020600020905b8154815290600101906020018083116122ff57829003601f168201915b5050505050905090565b6060818310612361576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060005490506123716134cb565b851015612383576123806134cb565b94505b8084111561238f578093505b600061239a87611c35565b9050848610156123bd5760008686039050818110156123b7578091505b506123c2565b600090505b60008167ffffffffffffffff811115612404577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156124325781602001602082028036833780820191505090505b509050600082141561244a5780945050505050612632565b600061245588612aaa565b90506000816040015161246a57816000015190505b60008990505b8881141580156124805750848714155b1561262457600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050925082604001511561255757612619565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461259757826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612618578084888060010199508151811061260b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b5b806001019050612470565b508583528296505050505050505b9392505050565b612641613359565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006126b3613359565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612760613359565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127a5919061524d565b60405180910390a35050565b60115481565b601260009054906101000a900460ff1681565b601260019054906101000a900460ff16612819576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612810906152e5565b60405180910390fd5b6002600954141561285f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612856906153c5565b60405180910390fd5b60026009819055506128db828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601054336040516020016128c09190615163565b604051602081830303815290604052805190602001206139a8565b61291a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612911906152c5565b60405180910390fd5b601983111561295e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295590615345565b60405180910390fd5b348360115461296d919061564a565b146129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a4906153e5565b60405180910390fd5b612648836129b961127d565b6129c391906155c3565b1115612a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fb90615365565b60405180910390fd5b612a0e338461398a565b6001600981905550505050565b612a268484846134d4565b612a458373ffffffffffffffffffffffffffffffffffffffff16613d14565b8015612a5a5750612a5884848484613d37565b155b15612a91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b601260029054906101000a900460ff1681565b612ab261468e565b612aba61468e565b612ac26134cb565b831080612ad157506000548310155b15612adf5780915050612bc2565b600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115612bb55780915050612bc2565b612bbe836139bf565b9150505b919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612bf5613359565b73ffffffffffffffffffffffffffffffffffffffff16612c13612257565b73ffffffffffffffffffffffffffffffffffffffff1614612c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6090615325565b60405180910390fd5b8060118190555050565b6060612c7e826133cb565b612cb4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612cbe613e97565b9050600081511415612cdf5760405180602001604052806000815250612d0a565b80612ce984613f29565b604051602001612cfa92919061517e565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612d40613359565b73ffffffffffffffffffffffffffffffffffffffff16612d5e612257565b73ffffffffffffffffffffffffffffffffffffffff1614612db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dab90615325565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612e00613359565b73ffffffffffffffffffffffffffffffffffffffff16612e1e612257565b73ffffffffffffffffffffffffffffffffffffffff1614612e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6b90615325565b60405180910390fd5b8060108190555050565b612e86613359565b73ffffffffffffffffffffffffffffffffffffffff16612ea4612257565b73ffffffffffffffffffffffffffffffffffffffff1614612efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef190615325565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550601260029054906101000a900460ff1615612f5b576010600090556000601260016101000a81548160ff0219169083151502179055505b565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401612fd591906151a2565b60206040518083038186803b158015612fed57600080fd5b505afa158015613001573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130259190614c32565b73ffffffffffffffffffffffffffffffffffffffff1614806130905750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561309f5760019150506130ad565b6130a984846140d6565b9150505b92915050565b6130bb613359565b73ffffffffffffffffffffffffffffffffffffffff166130d9612257565b73ffffffffffffffffffffffffffffffffffffffff161461312f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312690615325565b60405180910390fd5b80600e8190555050565b613141613359565b73ffffffffffffffffffffffffffffffffffffffff1661315f612257565b73ffffffffffffffffffffffffffffffffffffffff16146131b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ac90615325565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321c906152a5565b60405180910390fd5b61322e81613c4e565b50565b601981565b61323e613359565b73ffffffffffffffffffffffffffffffffffffffff1661325c612257565b73ffffffffffffffffffffffffffffffffffffffff16146132b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a990615325565b60405180910390fd5b601360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816133d66134cb565b111580156133e5575060005482105b8015613412575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600060c9905090565b60006134df826139bf565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461354a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661356b613359565b73ffffffffffffffffffffffffffffffffffffffff16148061359a575061359985613594613359565b612f5d565b5b806135df57506135a8613359565b73ffffffffffffffffffffffffffffffffffffffff166135c784610f46565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613618576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561367f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61368c858585600161416a565b61369860008487613419565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561391857600054821461391757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139838585856001614170565b5050505050565b6139a4828260405180602001604052806000815250614176565b5050565b6000826139b58584614188565b1490509392505050565b6139c761468e565b6000829050806139d56134cb565b111580156139e4575060005481105b15613c17576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613c1557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613af9578092505050613c49565b5b600115613c1457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613c0f578092505050613c49565b613afa565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613d5d613359565b8786866040518563ffffffff1660e01b8152600401613d7f94939291906151bd565b602060405180830381600087803b158015613d9957600080fd5b505af1925050508015613dca57506040513d601f19601f82011682018060405250810190613dc79190614c09565b60015b613e44573d8060008114613dfa576040519150601f19603f3d011682016040523d82523d6000602084013e613dff565b606091505b50600081511415613e3c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054613ea6906157be565b80601f0160208091040260200160405190810160405280929190818152602001828054613ed2906157be565b8015613f1f5780601f10613ef457610100808354040283529160200191613f1f565b820191906000526020600020905b815481529060010190602001808311613f0257829003601f168201915b5050505050905090565b60606000821415613f71576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506140d1565b600082905060005b60008214613fa3578080613f8c90615821565b915050600a82613f9c9190615619565b9150613f79565b60008167ffffffffffffffff811115613fe5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156140175781602001600182028036833780820191505090505b5090505b600085146140ca5760018261403091906156a4565b9150600a8561403f919061588e565b603061404b91906155c3565b60f81b818381518110614087577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856140c39190615619565b945061401b565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6141838383836001614223565b505050565b60008082905060005b84518110156142185760008582815181106141d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116141f7576141f083826145f1565b9250614204565b61420181846145f1565b92505b50808061421090615821565b915050614191565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415614290576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156142cb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6142d8600086838761416a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156144a257506144a18773ffffffffffffffffffffffffffffffffffffffff16613d14565b5b15614568575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46145176000888480600101955088613d37565b61454d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156144a857826000541461456357600080fd5b6145d4565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614569575b8160008190555050506145ea6000868387614170565b5050505050565b600082600052816020526040600020905092915050565b828054614614906157be565b90600052602060002090601f016020900481019282614636576000855561467d565b82601f1061464f57805160ff191683800117855561467d565b8280016001018555821561467d579182015b8281111561467c578251825591602001919060010190614661565b5b50905061468a91906146d1565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156146ea5760008160009055506001016146d2565b5090565b60006147016146fc84615480565b61545b565b9050808382526020820190508285602086028201111561472057600080fd5b60005b858110156147505781614736888261491c565b845260208401935060208301925050600181019050614723565b5050509392505050565b600061476d614768846154ac565b61545b565b90508281526020810184848401111561478557600080fd5b61479084828561577c565b509392505050565b60006147ab6147a6846154dd565b61545b565b9050828152602081018484840111156147c357600080fd5b6147ce84828561577c565b509392505050565b6000813590506147e581615c1d565b92915050565b60008083601f8401126147fd57600080fd5b8235905067ffffffffffffffff81111561481657600080fd5b60208301915083602082028301111561482e57600080fd5b9250929050565b600082601f83011261484657600080fd5b81356148568482602086016146ee565b91505092915050565b60008135905061486e81615c34565b92915050565b60008135905061488381615c4b565b92915050565b60008135905061489881615c62565b92915050565b6000815190506148ad81615c62565b92915050565b600082601f8301126148c457600080fd5b81356148d484826020860161475a565b91505092915050565b6000815190506148ec81615c79565b92915050565b600082601f83011261490357600080fd5b8135614913848260208601614798565b91505092915050565b60008135905061492b81615c90565b92915050565b60006020828403121561494357600080fd5b6000614951848285016147d6565b91505092915050565b6000806040838503121561496d57600080fd5b600061497b858286016147d6565b925050602061498c858286016147d6565b9150509250929050565b6000806000606084860312156149ab57600080fd5b60006149b9868287016147d6565b93505060206149ca868287016147d6565b92505060406149db8682870161491c565b9150509250925092565b600080600080608085870312156149fb57600080fd5b6000614a09878288016147d6565b9450506020614a1a878288016147d6565b9350506040614a2b8782880161491c565b925050606085013567ffffffffffffffff811115614a4857600080fd5b614a54878288016148b3565b91505092959194509250565b60008060408385031215614a7357600080fd5b6000614a81858286016147d6565b9250506020614a928582860161485f565b9150509250929050565b60008060408385031215614aaf57600080fd5b6000614abd858286016147d6565b9250506020614ace8582860161491c565b9150509250929050565b600080600060608486031215614aed57600080fd5b6000614afb868287016147d6565b9350506020614b0c8682870161491c565b9250506040614b1d8682870161491c565b9150509250925092565b600060208284031215614b3957600080fd5b600082013567ffffffffffffffff811115614b5357600080fd5b614b5f84828501614835565b91505092915050565b600060208284031215614b7a57600080fd5b6000614b8884828501614874565b91505092915050565b600080600060608486031215614ba657600080fd5b6000614bb486828701614874565b9350506020614bc586828701614874565b9250506040614bd686828701614874565b9150509250925092565b600060208284031215614bf257600080fd5b6000614c0084828501614889565b91505092915050565b600060208284031215614c1b57600080fd5b6000614c298482850161489e565b91505092915050565b600060208284031215614c4457600080fd5b6000614c52848285016148dd565b91505092915050565b600060208284031215614c6d57600080fd5b600082013567ffffffffffffffff811115614c8757600080fd5b614c93848285016148f2565b91505092915050565b600060208284031215614cae57600080fd5b6000614cbc8482850161491c565b91505092915050565b600080600060408486031215614cda57600080fd5b6000614ce88682870161491c565b935050602084013567ffffffffffffffff811115614d0557600080fd5b614d11868287016147eb565b92509250509250925092565b6000614d2983836150b2565b60608301905092915050565b6000614d418383615136565b60208301905092915050565b614d56816156d8565b82525050565b614d65816156d8565b82525050565b614d7c614d77826156d8565b61586a565b82525050565b6000614d8d8261552e565b614d978185615574565b9350614da28361550e565b8060005b83811015614dd3578151614dba8882614d1d565b9750614dc58361555a565b925050600181019050614da6565b5085935050505092915050565b6000614deb82615539565b614df58185615585565b9350614e008361551e565b8060005b83811015614e31578151614e188882614d35565b9750614e2383615567565b925050600181019050614e04565b5085935050505092915050565b614e47816156ea565b82525050565b614e56816156ea565b82525050565b614e65816156f6565b82525050565b6000614e7682615544565b614e808185615596565b9350614e9081856020860161578b565b614e998161597b565b840191505092915050565b6000614eaf8261554f565b614eb981856155a7565b9350614ec981856020860161578b565b614ed28161597b565b840191505092915050565b6000614ee88261554f565b614ef281856155b8565b9350614f0281856020860161578b565b80840191505092915050565b6000614f1b6026836155a7565b9150614f2682615999565b604082019050919050565b6000614f3e601f836155a7565b9150614f49826159e8565b602082019050919050565b6000614f61601d836155a7565b9150614f6c82615a11565b602082019050919050565b6000614f846022836155a7565b9150614f8f82615a3a565b604082019050919050565b6000614fa76020836155a7565b9150614fb282615a89565b602082019050919050565b6000614fca6043836155a7565b9150614fd582615ab2565b606082019050919050565b6000614fed6016836155a7565b9150614ff882615b27565b602082019050919050565b6000615010601e836155a7565b915061501b82615b50565b602082019050919050565b6000615033601a836155a7565b915061503e82615b79565b602082019050919050565b6000615056601f836155a7565b915061506182615ba2565b602082019050919050565b60006150796018836155a7565b915061508482615bcb565b602082019050919050565b600061509c6018836155a7565b91506150a782615bf4565b602082019050919050565b6060820160008201516150c86000850182614d4d565b5060208201516150db6020850182615154565b5060408201516150ee6040850182614e3e565b50505050565b60608201600082015161510a6000850182614d4d565b50602082015161511d6020850182615154565b5060408201516151306040850182614e3e565b50505050565b61513f8161575e565b82525050565b61514e8161575e565b82525050565b61515d81615768565b82525050565b600061516f8284614d6b565b60148201915081905092915050565b600061518a8285614edd565b91506151968284614edd565b91508190509392505050565b60006020820190506151b76000830184614d5c565b92915050565b60006080820190506151d26000830187614d5c565b6151df6020830186614d5c565b6151ec6040830185615145565b81810360608301526151fe8184614e6b565b905095945050505050565b600060208201905081810360008301526152238184614d82565b905092915050565b600060208201905081810360008301526152458184614de0565b905092915050565b60006020820190506152626000830184614e4d565b92915050565b600060208201905061527d6000830184614e5c565b92915050565b6000602082019050818103600083015261529d8184614ea4565b905092915050565b600060208201905081810360008301526152be81614f0e565b9050919050565b600060208201905081810360008301526152de81614f31565b9050919050565b600060208201905081810360008301526152fe81614f54565b9050919050565b6000602082019050818103600083015261531e81614f77565b9050919050565b6000602082019050818103600083015261533e81614f9a565b9050919050565b6000602082019050818103600083015261535e81614fbd565b9050919050565b6000602082019050818103600083015261537e81614fe0565b9050919050565b6000602082019050818103600083015261539e81615003565b9050919050565b600060208201905081810360008301526153be81615026565b9050919050565b600060208201905081810360008301526153de81615049565b9050919050565b600060208201905081810360008301526153fe8161506c565b9050919050565b6000602082019050818103600083015261541e8161508f565b9050919050565b600060608201905061543a60008301846150f4565b92915050565b60006020820190506154556000830184615145565b92915050565b6000615465615476565b905061547182826157f0565b919050565b6000604051905090565b600067ffffffffffffffff82111561549b5761549a61594c565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156154c7576154c661594c565b5b6154d08261597b565b9050602081019050919050565b600067ffffffffffffffff8211156154f8576154f761594c565b5b6155018261597b565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006155ce8261575e565b91506155d98361575e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561560e5761560d6158bf565b5b828201905092915050565b60006156248261575e565b915061562f8361575e565b92508261563f5761563e6158ee565b5b828204905092915050565b60006156558261575e565b91506156608361575e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615699576156986158bf565b5b828202905092915050565b60006156af8261575e565b91506156ba8361575e565b9250828210156156cd576156cc6158bf565b5b828203905092915050565b60006156e38261573e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000615737826156d8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156157a957808201518184015260208101905061578e565b838111156157b8576000848401525b50505050565b600060028204905060018216806157d657607f821691505b602082108114156157ea576157e961591d565b5b50919050565b6157f98261597b565b810181811067ffffffffffffffff821117156158185761581761594c565b5b80604052505050565b600061582c8261575e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561585f5761585e6158bf565b5b600182019050919050565b60006158758261587c565b9050919050565b60006158878261598c565b9050919050565b60006158998261575e565b91506158a48361575e565b9250826158b4576158b36158ee565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c20796f75277265206e6f7420612046726f6f74204672656e2100600082015250565b7f46726f6f74204672656e732073616c65206973206e6f74206c69766521000000600082015250565b7f536f7272792c20796f75277265206e6f7420616e20496d6d6f7274616c20476f60008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f7272792120596f752063616e206f6e6c79206d696e742061206d6178696d60008201527f756d206f6620323520536b756c6c4b69647320706572207472616e736163746960208201527f6f6e210000000000000000000000000000000000000000000000000000000000604082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f536f7272792c20796f75277265206e6f7420616e20496d6d6f7274616c210000600082015250565b7f496d6d6f7274616c2073616c65206973206e6f74206c69766521000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b7f5075626c69632073616c65206973206e6f74206c697665210000000000000000600082015250565b615c26816156d8565b8114615c3157600080fd5b50565b615c3d816156ea565b8114615c4857600080fd5b50565b615c54816156f6565b8114615c5f57600080fd5b50565b615c6b81615700565b8114615c7657600080fd5b50565b615c828161572c565b8114615c8d57600080fd5b50565b615c998161575e565b8114615ca457600080fd5b5056fea2646970667358221220b47e3cf813c53bb8fd21eab9495dfa793283ddb6e09b6aedad67362f798f47b064736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000293d6d6f9721e7d9df9f36ee56866a8ceaf0a26d00000000000000000000000040d1a7ba8c2af1934142194b83a87209cc82bd31000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6170692e727970732e636f2f736b756c6c6b6964732f69642f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _setBaseURI (string): https://api.ryps.co/skullkids/id/
Arg [1] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [2] : _badfroot (address): 0x293d6d6f9721e7d9DF9F36ee56866a8cEaf0A26D
Arg [3] : _spyr (address): 0x40d1A7BA8c2Af1934142194B83a87209CC82bd31

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [2] : 000000000000000000000000293d6d6f9721e7d9df9f36ee56866a8ceaf0a26d
Arg [3] : 00000000000000000000000040d1a7ba8c2af1934142194b83a87209cc82bd31
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [5] : 68747470733a2f2f6170692e727970732e636f2f736b756c6c6b6964732f6964
Arg [6] : 2f00000000000000000000000000000000000000000000000000000000000000


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.