ETH Price: $3,166.83 (-4.32%)
Gas: 8 Gwei

Token

Ugly People (UPG)
 

Overview

Max Total Supply

10,000 UPG

Holders

4,825

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sleepylu.eth
Balance
3 UPG
0xeb3148c7565bf349a0955ede112f956ca53a7c84
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Ugly People is an art-focused NFT collection of 10,000 Ugly People let loose on the Ethereum Blockchain, from the visionary mind of street artist Jorge "El Niño" Torrealba.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UglyPeople

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 25 : UglyPeople.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

import "../lib/0xStandardV2.sol";

contract UglyPeople is OxStandardV2 {
    constructor(
        uint256 _privateSalePrice,
        uint256 _publicSalePrice,
        string memory name,
        string memory symbol,
        uint256 _maxSupply,
        chainlinkParams memory chainlink,
        revenueShareParams memory revenueShare
    ) OxStandardV2(
        _privateSalePrice,
        _publicSalePrice,
        name,
        symbol,
        _maxSupply,
        chainlink,
        revenueShare
    ) {

    }
}

File 2 of 25 : 0xStandardV2.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol";
import "./BlockBasedSale.sol";
import "./EIP712Whitelisting.sol";

contract OxStandardV2 is
    Ownable,
    ERC721,
    ERC721Enumerable,
    EIP712Whitelisting,
    VRFConsumerBase,
    BlockBasedSale,
    ReentrancyGuard
{
    using Address for address;
    using SafeMath for uint256;

    event Airdrop(address[] addresses, uint256 amount);
    event AssignAirdropAddress(address indexed _address);
    event AssignBaseURI(string _value);
    event AssignDefaultURI(string _value);
    event AssignRandomNess(uint256 seed);
    event AssignRevealBlock(uint256 _blockNumber);
    event AssignSettlementBlockNumber(uint256 settlementBlockNumber);
    event DisableDutchAuction();
    event EnableDucthAuction();
    event OGClaim(address indexed _address);
    event PermanentURI(string _value, uint256 indexed _id);
    event Purchased(
        address indexed account,
        uint256 indexed index
    );
    event RandomseedRequested(uint256 timestamp);
    event RandomseedFulfilmentSuccess(
        uint256 timestamp,
        bytes32 requestId,
        uint256 seed
    );
    event RandomseedFulfilmentFail(uint256 timestamp, bytes32 requestId);
    event WithdrawNonPurchaseFund(uint256 balance);

    enum SaleState {
        NotStarted,
        PrivateSaleBeforeWithoutBlock,
        PrivateSaleBeforeWithBlock,
        PrivateSaleDuring,
        PrivateSaleEnd,
        PrivateSaleEndSoldOut,
        PublicSaleBeforeWithoutBlock,
        PublicSaleBeforeWithBlock,
        PublicSaleDuring,
        PublicSaleEnd,
        PublicSaleEndSoldOut,
        PauseSale,
        AllSalesEnd
    }

    PaymentSplitter private _splitter;

    struct chainlinkParams {
        address coordinator;
        address linkToken;
        bytes32 keyHash;
    }

    struct revenueShareParams {
        address[] payees;
        uint256[] shares;
    }

    bool public dutchEnabled = false;
    bool public randomseedRequested = false;

    bytes32 public keyHash;
    bytes32 private hashedSecret;

    uint256 public revealBlock = 0;
    uint256 public seed = 0;
    uint256 public totalOGClaimed = 0;
    uint256 private settlementBlockNumber;

    mapping(address => bool) private _airdropAllowed;
    mapping(address => uint256) private _privateSaleClaimed;
    mapping(address => uint256) private _ogClaimed;

    string public _defaultURI;
    string public _tokenBaseURI;

    constructor(
        uint256 _privateSalePrice,
        uint256 _publicSalePrice,
        string memory name,
        string memory symbol,
        uint256 _maxSupply,
        chainlinkParams memory chainlink,
        revenueShareParams memory revenueShare
    )
        ERC721(name, symbol)
        EIP712Whitelisting(name)
        VRFConsumerBase(chainlink.coordinator, chainlink.linkToken)
    {
        _splitter = new PaymentSplitter(
            revenueShare.payees,
            revenueShare.shares
        );
        keyHash = chainlink.keyHash;
        maxSupply = _maxSupply;
        publicSalePrice = _publicSalePrice;
        privateSalePrice = _privateSalePrice;
    }

    modifier airdropRoleOnly() {
        require(_airdropAllowed[msg.sender], "Only airdrop role allowed.");
        _;
    }

    modifier shareHolderOnly() {
        require(_splitter.shares(msg.sender) > 0, "not a shareholder");
        _;
    }

    function airdrop(address[] memory addresses, uint256 amount)
        external
        nonReentrant
        airdropRoleOnly
    {
        require(
            totalSupply().add(addresses.length.mul(amount)) <= maxSupply,
            "Exceed max supply limit."
        );

        require(
            totalReserveMinted.add(addresses.length.mul(amount)) <= maxReserve,
            "Insufficient reserve."
        );

        totalReserveMinted = totalReserveMinted.add(
            addresses.length.mul(amount)
        );

        for (uint256 i = 0; i < addresses.length; i++) {
            _mintToken(addresses[i], amount);
        }
        emit Airdrop(addresses, amount);
    }

    function setAirdropRole(address addr) external onlyOwner {
        emit AssignAirdropAddress(addr);
        _airdropAllowed[addr] = true;
    }

    function setRevealBlock(uint256 blockNumber) external operatorOnly {
        emit AssignRevealBlock(blockNumber);
        revealBlock = blockNumber;
    }

    function freeze(uint256[] memory ids) external operatorOnly {
        for (uint256 i = 0; i < ids.length; i += 1) {
            emit PermanentURI(tokenURI(ids[i]), ids[i]);
        }
    }

    function mintOg(bytes calldata signature)
        external
        payable
        nonReentrant
        returns (bool)
    {
        require(msg.sender == tx.origin, "Contract is not allowed.");
        require(
            getState() == SaleState.PrivateSaleDuring,
            "Sale not available."
        );

        if (getState() == SaleState.PrivateSaleDuring) {
            require(isOGwhitelisted(signature), "Not OG whitelisted.");
            require(_ogClaimed[msg.sender] == 0, "Already Claimed OG.");
            require(
                totalPrivateSaleMinted.add(1) <= privateSaleCapped,
                "Purchase exceed private sale capped."
            );

            require(msg.value >= getPriceByMode(), "Insufficient funds.");

            emit OGClaim(msg.sender);
            _ogClaimed[msg.sender] = _ogClaimed[msg.sender] + 1;
            totalPrivateSaleMinted = totalPrivateSaleMinted + 1;
            totalOGClaimed = totalOGClaimed + 1;

            _mintToken(msg.sender, 1);

            payable(_splitter).transfer(msg.value);

            return true;
        }

        return false;
    }

    function mintToken(uint256 amount, bytes calldata signature)
        external
        payable
        nonReentrant
        returns (bool)
    {
        require(msg.sender == tx.origin, "Contract is not allowed.");
        require(
            getState() == SaleState.PrivateSaleDuring ||
                getState() == SaleState.PublicSaleDuring,
            "Sale not available."
        );

        if (getState() == SaleState.PublicSaleDuring) {
            require(
                amount <= maxPublicSalePerTx,
                "Mint exceed transaction limits."
            );
            require(
                msg.value >= amount.mul(getPriceByMode()),
                "Insufficient funds."
            );
            require(
                totalSupply().add(amount).add(availableReserve()) <= maxSupply,
                "Purchase exceed max supply."
            );
        }

        if (getState() == SaleState.PrivateSaleDuring) {
            require(isEIP712WhiteListed(signature), "Not whitelisted.");
            require(
                amount <= maxPrivateSalePerTx,
                "Mint exceed transaction limits"
            );
            require(
                _privateSaleClaimed[msg.sender] + amount <=
                    maxWhitelistClaimPerWallet,
                "Mint limit per wallet exceeded."
            );
            require(
                totalPrivateSaleMinted.add(amount) <= privateSaleCapped,
                "Purchase exceed private sale capped."
            );

            require(
                msg.value >= amount.mul(getPriceByMode()),
                "Insufficient funds."
            );
        }

        if (
            getState() == SaleState.PrivateSaleDuring ||
            getState() == SaleState.PublicSaleDuring
        ) {
            _mintToken(msg.sender, amount);
            if (getState() == SaleState.PublicSaleDuring) {
                totalPublicMinted = totalPublicMinted + amount;
            }
            if (getState() == SaleState.PrivateSaleDuring) {
                _privateSaleClaimed[msg.sender] =
                    _privateSaleClaimed[msg.sender] +
                    amount;
                totalPrivateSaleMinted = totalPrivateSaleMinted + amount;
            }
            payable(_splitter).transfer(msg.value);
            
        }

        return true;
    }

    function setBaseURI(string memory baseURI) external governorOnly {
        _tokenBaseURI = baseURI;
        emit AssignBaseURI(baseURI);
    }

    function setDefaultURI(string memory defaultURI) external operatorOnly {
        _defaultURI = defaultURI;
        emit AssignDefaultURI(defaultURI);
    }

    function requestChainlinkVRF() external operatorOnly {
        require(!randomseedRequested, "Chainlink VRF already requested");
        require(
            LINK.balanceOf(address(this)) >= 2000000000000000000,
            "Insufficient LINK"
        );
        requestRandomness(keyHash, 2000000000000000000);
        randomseedRequested = true;
        emit RandomseedRequested(block.timestamp);
    }

    function getState() public view returns (SaleState) {
        uint256 supplyWithoutReserve = maxSupply - maxReserve;
        uint256 mintedWithoutReserve = totalPublicMinted +
            totalPrivateSaleMinted;

        if (
            salePhase != SalePhase.None &&
            overridedSaleState == OverrideSaleState.Close
        ) {
            return SaleState.AllSalesEnd;
        }

        if (
            salePhase != SalePhase.None &&
            overridedSaleState == OverrideSaleState.Pause
        ) {
            return SaleState.PauseSale;
        }

        if (
            salePhase == SalePhase.Public &&
            mintedWithoutReserve == supplyWithoutReserve
        ) {
            return SaleState.PublicSaleEndSoldOut;
        }

        if (salePhase == SalePhase.None) {
            return SaleState.NotStarted;
        }

        if (
            salePhase == SalePhase.Public &&
            publicSale.endBlock > 0 &&
            block.number > publicSale.endBlock
        ) {
            return SaleState.PublicSaleEnd;
        }

        if (
            salePhase == SalePhase.Public &&
            publicSale.beginBlock > 0 &&
            block.number >= publicSale.beginBlock
        ) {
            return SaleState.PublicSaleDuring;
        }

        if (
            salePhase == SalePhase.Public &&
            publicSale.beginBlock > 0 &&
            block.number < publicSale.beginBlock &&
            block.number > privateSale.endBlock
        ) {
            return SaleState.PublicSaleBeforeWithBlock;
        }

        if (
            salePhase == SalePhase.Public &&
            publicSale.beginBlock == 0 &&
            block.number > privateSale.endBlock
        ) {
            return SaleState.PublicSaleBeforeWithoutBlock;
        }

        if (
            salePhase == SalePhase.Private &&
            totalPrivateSaleMinted == privateSaleCapped
        ) {
            return SaleState.PrivateSaleEndSoldOut;
        }

        if (
            salePhase == SalePhase.Private &&
            privateSale.endBlock > 0 &&
            block.number > privateSale.endBlock
        ) {
            return SaleState.PrivateSaleEnd;
        }

        if (
            salePhase == SalePhase.Private &&
            privateSale.beginBlock > 0 &&
            block.number >= privateSale.beginBlock
        ) {
            return SaleState.PrivateSaleDuring;
        }

        if (
            salePhase == SalePhase.Private &&
            privateSale.beginBlock > 0 &&
            block.number < privateSale.beginBlock
        ) {
            return SaleState.PrivateSaleBeforeWithBlock;
        }

        if (salePhase == SalePhase.Private && privateSale.beginBlock == 0) {
            return SaleState.PrivateSaleBeforeWithoutBlock;
        }

        return SaleState.NotStarted;
    }

    function getStartSaleBlock() external view returns (uint256) {
        if (
            SaleState.PrivateSaleBeforeWithBlock == getState() ||
            SaleState.PrivateSaleDuring == getState()
        ) {
            return privateSale.beginBlock;
        }

        if (
            SaleState.PublicSaleBeforeWithBlock == getState() ||
            SaleState.PublicSaleDuring == getState()
        ) {
            return publicSale.beginBlock;
        }

        return 0;
    }

    function getEndSaleBlock() external view returns (uint256) {
        if (
            SaleState.PrivateSaleBeforeWithBlock == getState() ||
            SaleState.PrivateSaleDuring == getState()
        ) {
            return privateSale.endBlock;
        }

        if (
            SaleState.PublicSaleBeforeWithBlock == getState() ||
            SaleState.PublicSaleDuring == getState()
        ) {
            return publicSale.endBlock;
        }

        return 0;
    }

    function tokenBaseURI() external view returns (string memory) {
        return _tokenBaseURI;
    }

    function isRevealed() public view returns (bool) {
        return seed > 0 && revealBlock > 0 && block.number > revealBlock;
    }

    function getMetadata(uint256 tokenId) public view returns (string memory) {
        if (_msgSender() != owner()) {
            require(tokenId <= totalSupply(), "Token not exists.");
        }

        if (!isRevealed()) return "default";

        uint256[] memory metadata = new uint256[](maxSupply + 1);

        for (uint256 i = 1; i <= maxSupply; i += 1) {
            metadata[i] = i;
        }

        for (uint256 i = 2; i <= maxSupply; i += 1) {
            uint256 j = (uint256(keccak256(abi.encode(seed, i))) %
                (maxSupply)) + 1;

            if (j >= 2 && j <= maxSupply) {
                (metadata[i], metadata[j]) = (metadata[j], metadata[i]);
            }
        }

        return Strings.toString(metadata[tokenId]);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(tokenId <= totalSupply(), "Token not exist.");

        return
            isRevealed()
                ? string(
                    abi.encodePacked(
                        _tokenBaseURI,
                        getMetadata(tokenId),
                        ".json"
                    )
                )
                : _defaultURI;
    }

    function availableReserve() public view returns (uint256) {
        return maxReserve - totalReserveMinted;
    }

    function getMaxSupplyByMode() external view returns (uint256) {
        if (getState() == SaleState.PrivateSaleDuring) return privateSaleCapped;
        if (getState() == SaleState.PublicSaleDuring)
            return maxSupply - totalPrivateSaleMinted - maxReserve;
        return 0;
    }

    function getMintedByMode() external view returns (uint256) {
        if (getState() == SaleState.PrivateSaleDuring)
            return totalPrivateSaleMinted;
        if (getState() == SaleState.PublicSaleDuring) return totalPublicMinted;
        return 0;
    }

    function getTransactionCappedByMode() external view returns (uint256) {
        return
            getState() == SaleState.PrivateSaleDuring
                ? maxPrivateSalePerTx
                : maxPublicSalePerTx;
    }

    function availableForSale() external view returns (uint256) {
        return maxSupply - totalSupply();
    }

    function getPriceByMode() public view returns (uint256) {
        if (getState() == SaleState.PrivateSaleDuring) return privateSalePrice;

        if (getState() == SaleState.PublicSaleDuring) {
            if (!dutchEnabled) {
                return publicSalePrice;
            }

            uint256 passedBlock = block.number - publicSale.beginBlock;
            uint256 discountPrice = passedBlock.mul(priceFactor).div(
                discountBlockSize
            );

            if (discountPrice >= publicSalePrice.sub(lowerBoundPrice)) {
                return lowerBoundPrice;
            } else {
                return publicSalePrice.sub(discountPrice);
            }
        }

        return publicSalePrice;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function startPublicSaleBlock() external view returns (uint256) {
        return publicSale.beginBlock;
    }

    function endPublicSaleBlock() external view returns (uint256) {
        return publicSale.endBlock;
    }

    function startPrivateSaleBlock() external view returns (uint256) {
        return privateSale.beginBlock;
    }

    function endPrivateSaleBlock() external view returns (uint256) {
        return privateSale.endBlock;
    }

    function setBlockNumbertoGenSeed(bytes32 _hashedSecret)
        external
        governorOnly
    {
        require(
            bytes(_tokenBaseURI).length != 0,
            "The token base URI is not set yet"
        );
        require(!randomseedRequested, "The random already requested");
        require(
            settlementBlockNumber == 0 ||
                block.number - settlementBlockNumber >= 256,
            "settlementBlockNumber block is already set"
        );

        //set settlementBlockNumber to the future block
        settlementBlockNumber = block.number + 10;
        hashedSecret = _hashedSecret;
        emit AssignSettlementBlockNumber(settlementBlockNumber);
    }

    function setRandomResultToSeed(bytes32 _secret) external governorOnly {
        require(
            settlementBlockNumber != 0,
            "Settlement block number not exists"
        );
        require(
            block.number > settlementBlockNumber,
            "Settlement block number not reached"
        );
        require(
            block.number - settlementBlockNumber < 256,
            "Settlement block number expired."
        );
        require(
            keccak256(abi.encodePacked(_secret)) == hashedSecret,
            "Incorrect secret"
        );

        seed = uint256(
            keccak256(
                abi.encodePacked(blockhash(settlementBlockNumber), _secret)
            )
        );
        randomseedRequested = true;
        emit AssignRandomNess(seed);
    }

    function release(address payable account) external virtual shareHolderOnly {
        require(
            msg.sender == account || msg.sender == owner(),
            "Release: no permission"
        );

        _splitter.release(account);
    }

    function withdraw() external governorOnly {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
        emit WithdrawNonPurchaseFund(balance);
    }

    function enableDutchAuction() external operatorOnly {
        dutchEnabled = true;
        emit EnableDucthAuction();
    }

    function disableDutchAuction() external operatorOnly {
        dutchEnabled = false;
        emit DisableDutchAuction();
    }

    function _mintToken(address addr, uint256 amount) internal returns (bool) {
        for (uint256 i = 0; i < amount; i++) {
            uint256 tokenIndex = totalSupply();
            if (tokenIndex < maxSupply) {
                _safeMint(addr, tokenIndex + 1);
                emit Purchased(addr, tokenIndex);
            }
        }
        return true;
    }

    function fulfillRandomness(bytes32 requestId, uint256 randomNumber)
        internal
        override
    {
        if (randomNumber > 0) {
            seed = randomNumber;
            emit RandomseedFulfilmentSuccess(block.timestamp, requestId, seed);
        } else {
            seed = 1;
            emit RandomseedFulfilmentFail(block.timestamp, requestId);
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
}

File 3 of 25 : 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 25 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol";
import "../utils/Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 5 of 25 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 6 of 25 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 25 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 25 : 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 9 of 25 : 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 10 of 25 : 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 11 of 25 : VRFConsumerBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./interfaces/LinkTokenInterface.sol";

import "./VRFRequestIDBase.sol";

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constuctor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.)
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request.
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {
  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBase expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
  function fulfillRandomness(bytes32 requestId, uint256 randomness) internal virtual;

  /**
   * @dev In order to keep backwards compatibility we have kept the user
   * seed field around. We remove the use of it because given that the blockhash
   * enters later, it overrides whatever randomness the used seed provides.
   * Given that it adds no security, and can easily lead to misunderstandings,
   * we have removed it from usage and can now provide a simpler API.
   */
  uint256 private constant USER_SEED_PLACEHOLDER = 0;

  /**
   * @notice requestRandomness initiates a request for VRF output given _seed
   *
   * @dev The fulfillRandomness method receives the output, once it's provided
   * @dev by the Oracle, and verified by the vrfCoordinator.
   *
   * @dev The _keyHash must already be registered with the VRFCoordinator, and
   * @dev the _fee must exceed the fee specified during registration of the
   * @dev _keyHash.
   *
   * @dev The _seed parameter is vestigial, and is kept only for API
   * @dev compatibility with older versions. It can't *hurt* to mix in some of
   * @dev your own randomness, here, but it's not necessary because the VRF
   * @dev oracle will mix the hash of the block containing your request into the
   * @dev VRF seed it ultimately uses.
   *
   * @param _keyHash ID of public key against which randomness is generated
   * @param _fee The amount of LINK to send with the request
   *
   * @return requestId unique ID for this request
   *
   * @dev The returned requestId can be used to distinguish responses to
   * @dev concurrent requests. It is passed as the first argument to
   * @dev fulfillRandomness.
   */
  function requestRandomness(bytes32 _keyHash, uint256 _fee) internal returns (bytes32 requestId) {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
    // This is the seed passed to VRFCoordinator. The oracle will mix this with
    // the hash of the block containing this request to obtain the seed/input
    // which is finally passed to the VRF cryptographic machinery.
    uint256 vRFSeed = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
    // nonces[_keyHash] must stay in sync with
    // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
    // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
    // This provides protection against the user repeating their input seed,
    // which would result in a predictable/duplicate output, if multiple such
    // requests appeared in the same block.
    nonces[_keyHash] = nonces[_keyHash] + 1;
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface internal immutable LINK;
  address private immutable vrfCoordinator;

  // Nonces for each VRF key from which randomness has been requested.
  //
  // Must stay in sync with VRFCoordinator[_keyHash][this]
  mapping(bytes32 => uint256) /* keyHash */ /* nonce */
    private nonces;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   * @param _link address of LINK token contract
   *
   * @dev https://docs.chain.link/docs/link-token-contracts
   */
  constructor(address _vrfCoordinator, address _link) {
    vrfCoordinator = _vrfCoordinator;
    LINK = LinkTokenInterface(_link);
  }

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomness(bytes32 requestId, uint256 randomness) external {
    require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
    fulfillRandomness(requestId, randomness);
  }
}

File 12 of 25 : BlockBasedSale.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

contract BlockBasedSale is Ownable {
    using SafeMath for uint256;

    event AssignGovernorAddress(address indexed _address);
    event AssignOperatorAddress(address indexed _address);
    event AssignDiscountBlockSize(uint256 size);
    event AssignPriceDecayParameter(
        uint256 _lowerBoundPrice,
        uint256 _priceFactor
    );
    event AssignTransactionLimit(
        uint256 privateSaleLimit,
        uint256 publicSaleLimit,
        uint256 maxWhitelist
    );
    event AssignPrivateSaleConfig(uint256 beginBlock, uint256 endBlock);
    event AssignPublicSaleConfig(uint256 beginBlock, uint256 endBlock);
    event AssignPrivateSalePrice(uint256 price);
    event AssignPublicSalePrice(uint256 price);
    event AssignReserveLimit(uint256 limit);
    event AssignPrivateSapeCap(uint256 cap);
    event EnablePublicSale();
    event EnablePrivateSale();
    event ForceCloseSale();
    event ForcePauseSale();
    event ResetOverridedSaleState();

    enum OverrideSaleState {
        None,
        Pause,
        Close
    }

    enum SalePhase {
        None,
        Private,
        Public
    }

    OverrideSaleState public overridedSaleState = OverrideSaleState.None;
    SalePhase public salePhase = SalePhase.None;
    bool private operatorAssigned;
    bool private governorAssigned;

    address private operatorAddress;
    address private governorAddress;

    uint256 public maxPrivateSalePerTx = 10;
    uint256 public maxPublicSalePerTx = 20;
    uint256 public maxWhitelistClaimPerWallet = 10;

    uint256 public privateSaleCapped = 690;
    uint256 public totalPrivateSaleMinted = 0;
    uint256 public privateSalePrice;

    uint256 public totalPublicMinted = 0;
    uint256 public totalReserveMinted = 0;
    uint256 public maxSupply = 6969;
    uint256 public maxReserve = 169;

    uint256 public discountBlockSize = 180;
    uint256 public lowerBoundPrice = 0;
    uint256 public publicSalePrice;
    uint256 public priceFactor = 1337500000000000;

    struct SaleConfig {
        uint256 beginBlock;
        uint256 endBlock;
    }

    SaleConfig public privateSale;
    SaleConfig public publicSale;

    modifier operatorOnly() {
        require(
            operatorAssigned && msg.sender == operatorAddress,
            "Only operator allowed."
        );
        _;
    }

    modifier governorOnly() {
        require(
            governorAssigned && msg.sender == governorAddress,
            "Only governor allowed."
        );
        _;
    }

    function setOperatorAddress(address _operator) external onlyOwner {
        require(_operator != address(0));
        operatorAddress = _operator;
        operatorAssigned = true;
        emit AssignOperatorAddress(_operator);
    }

    function setGovernorAddress(address _governor) external onlyOwner {
        require(_governor != address(0));
        governorAddress = _governor;
        governorAssigned = true;
        emit AssignGovernorAddress(_governor);
    }

    function setDiscountBlockSize(uint256 size) external operatorOnly {
        discountBlockSize = size;
        emit AssignDiscountBlockSize(size);
    }

    function setPriceDecayParams(uint256 _lowerBoundPrice, uint256 _priceFactor)
        external
        operatorOnly
    {
        require(_lowerBoundPrice >= 0);
        require(_priceFactor <= publicSalePrice);
        lowerBoundPrice = _lowerBoundPrice;
        priceFactor = _priceFactor;
        emit AssignPriceDecayParameter(_lowerBoundPrice, _priceFactor);
    }

    function setTransactionLimit(
        uint256 privateSaleLimit,
        uint256 publicSaleLimit,
        uint256 maxWhitelist
    ) external operatorOnly {
        require(privateSaleLimit > 0);
        require(publicSaleLimit > 0);
        require(maxWhitelist <= privateSaleLimit);
        maxPrivateSalePerTx = privateSaleLimit;
        maxPublicSalePerTx = publicSaleLimit;
        maxWhitelistClaimPerWallet = maxWhitelist;
        emit AssignTransactionLimit(
            privateSaleLimit,
            publicSaleLimit,
            maxWhitelist
        );
    }

    function setPrivateSaleConfig(SaleConfig memory _privateSale)
        external
        operatorOnly
    {
        privateSale = _privateSale;
        emit AssignPrivateSaleConfig(
            _privateSale.beginBlock,
            _privateSale.endBlock
        );
    }

    function setPublicSaleConfig(SaleConfig memory _publicSale)
        external
        operatorOnly
    {
        publicSale = _publicSale;
        emit AssignPublicSaleConfig(
            _publicSale.beginBlock,
            _publicSale.endBlock
        );
    }

    function setPublicSalePrice(uint256 _price) external operatorOnly {
        publicSalePrice = _price;
        emit AssignPublicSalePrice(_price);
    }

    function setPrivateSalePrice(uint256 _price) external operatorOnly {
        privateSalePrice = _price;
        emit AssignPrivateSalePrice(_price);
    }

    function setCloseSale() external operatorOnly {
        overridedSaleState = OverrideSaleState.Close;
        emit ForceCloseSale();
    }

    function setPauseSale() external operatorOnly {
        overridedSaleState = OverrideSaleState.Pause;
        emit ForcePauseSale();
    }

    function resetOverridedSaleState() external operatorOnly {
        overridedSaleState = OverrideSaleState.None;
        emit ResetOverridedSaleState();
    }

    function setReserve(uint256 reserve) external operatorOnly {
        maxReserve = reserve;
        emit AssignReserveLimit(reserve);
    }

    function setPrivateSaleCap(uint256 cap) external operatorOnly {
        privateSaleCapped = cap;
        emit AssignPrivateSapeCap(cap);
    }

    function enablePublicSale() external operatorOnly {
        salePhase = SalePhase.Public;
        emit EnablePublicSale();
    }

    function enablePrivateSale() external operatorOnly {
        salePhase = SalePhase.Private;
        emit EnablePrivateSale();
    }

    function isPrivateSaleSoldOut() external view returns (bool) {
        return totalPrivateSaleMinted == privateSaleCapped;
    }

    function isPublicSaleSoldOut() external view returns (bool) {
        uint256 supplyWithoutReserve = maxSupply - maxReserve;
        uint256 mintedWithoutReserve = totalPublicMinted +
            totalPrivateSaleMinted;
        return supplyWithoutReserve == mintedWithoutReserve;
    }
}

File 13 of 25 : EIP712Whitelisting.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract EIP712Whitelisting is Ownable {
    using ECDSA for bytes32;

    event AssignWhitelistSigningAddress(address indexed _address);
    event AssignOgSigningAddress(address indexed _address);

    // The key used to sign whitelist signatures.
    // We will check to ensure that the key that signed the signature
    // is this one that we expect.
    address whitelistSigningKey = address(0);

    address ogSigningKey = address(0);

    // Domain Separator is the EIP-712 defined structure that defines what contract
    // and chain these signatures can be used for.  This ensures people can't take
    // a signature used to mint on one contract and use it for another, or a signature
    // from testnet to replay on mainnet.
    // It has to be created in the constructor so we can dynamically grab the chainId.
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#definition-of-domainseparator
    bytes32 public DOMAIN_SEPARATOR;

    // The typehash for the data type specified in the structured data
    // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#rationale-for-typehash
    // This should match whats in the client side whitelist signing code
    bytes32 public constant MINTER_TYPEHASH =
        keccak256("Minter(address wallet)");

    constructor(string memory _schemeName) {
        // This should match whats in the client side whitelist signing code
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256(
                    "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
                ),
                // This should match the domain you set in your client side signing.
                keccak256(bytes.concat(bytes(_schemeName), bytes("Whitelist"))),
                keccak256(bytes("1")),
                block.chainid,
                address(this)
            )
        );
    }

    function setWhitelistSigningAddress(address newSigningKey)
        external
        onlyOwner
    {
        whitelistSigningKey = newSigningKey;
        emit AssignWhitelistSigningAddress(newSigningKey);
    }

    function setOgSigningAddress(address newSigningKey) external onlyOwner {
        ogSigningKey = newSigningKey;
        emit AssignOgSigningAddress(newSigningKey);
    }

    modifier requiresWhitelist(bytes calldata signature) {
        require(whitelistSigningKey != address(0), "whitelist not enabled.");
        require(
            getEIP712RecoverAddress(signature) == whitelistSigningKey,
            "Not whitelisted."
        );
        _;
    }

    modifier requiresOg(bytes calldata signature) {
        require(ogSigningKey != address(0), "og not enabled.");
        require(getEIP712RecoverAddress(signature) == ogSigningKey, "Not OG.");
        _;
    }

    function isEIP712WhiteListed(bytes calldata signature)
        public
        view
        returns (bool)
    {
        require(whitelistSigningKey != address(0), "whitelist not enabled.");
        return getEIP712RecoverAddress(signature) == whitelistSigningKey;
    }

    function isOGwhitelisted(bytes calldata signature)
        public
        view
        returns (bool)
    {
        require(ogSigningKey != address(0), "og not enabled.");
        return getEIP712RecoverAddress(signature) == ogSigningKey;
    }

    function getEIP712RecoverAddress(bytes calldata signature)
        internal
        view
        returns (address)
    {
        // Verify EIP-712 signature by recreating the data structure
        // that we signed on the client side, and then using that to recover
        // the address that signed the signature for this data.
        // Signature begin with \x19\x01, see: https://eips.ethereum.org/EIPS/eip-712
        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                DOMAIN_SEPARATOR,
                keccak256(abi.encode(MINTER_TYPEHASH, msg.sender))
            )
        );

        // Use the recover method to see what address was used to create
        // the signature on this data.
        // Note that if the digest doesn't exactly match what was signed we'll
        // get a random recovered address.
        return digest.recover(signature);
    }
}

File 14 of 25 : 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 15 of 25 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 16 of 25 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 17 of 25 : 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 18 of 25 : 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 19 of 25 : 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 20 of 25 : 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 21 of 25 : 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);
}

File 22 of 25 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 23 of 25 : LinkTokenInterface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface LinkTokenInterface {
  function allowance(address owner, address spender) external view returns (uint256 remaining);

  function approve(address spender, uint256 value) external returns (bool success);

  function balanceOf(address owner) external view returns (uint256 balance);

  function decimals() external view returns (uint8 decimalPlaces);

  function decreaseApproval(address spender, uint256 addedValue) external returns (bool success);

  function increaseApproval(address spender, uint256 subtractedValue) external;

  function name() external view returns (string memory tokenName);

  function symbol() external view returns (string memory tokenSymbol);

  function totalSupply() external view returns (uint256 totalTokensIssued);

  function transfer(address to, uint256 value) external returns (bool success);

  function transferAndCall(
    address to,
    uint256 value,
    bytes calldata data
  ) external returns (bool success);

  function transferFrom(
    address from,
    address to,
    uint256 value
  ) external returns (bool success);
}

File 24 of 25 : VRFRequestIDBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract VRFRequestIDBase {
  /**
   * @notice returns the seed which is actually input to the VRF coordinator
   *
   * @dev To prevent repetition of VRF output due to repetition of the
   * @dev user-supplied seed, that seed is combined in a hash with the
   * @dev user-specific nonce, and the address of the consuming contract. The
   * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
   * @dev the final seed, but the nonce does protect against repetition in
   * @dev requests which are included in a single block.
   *
   * @param _userSeed VRF seed input provided by user
   * @param _requester Address of the requesting contract
   * @param _nonce User-specific nonce at the time of the request
   */
  function makeVRFInputSeed(
    bytes32 _keyHash,
    uint256 _userSeed,
    address _requester,
    uint256 _nonce
  ) internal pure returns (uint256) {
    return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
  }

  /**
   * @notice Returns the id for this request
   * @param _keyHash The serviceAgreement ID to be used for this request
   * @param _vRFInputSeed The seed to be passed directly to the VRF
   * @return The id for this request
   *
   * @dev Note that _vRFInputSeed is not the seed passed by the consuming
   * @dev contract, but the one generated by makeVRFInputSeed
   */
  function makeRequestId(bytes32 _keyHash, uint256 _vRFInputSeed) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
  }
}

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

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_privateSalePrice","type":"uint256"},{"internalType":"uint256","name":"_publicSalePrice","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"components":[{"internalType":"address","name":"coordinator","type":"address"},{"internalType":"address","name":"linkToken","type":"address"},{"internalType":"bytes32","name":"keyHash","type":"bytes32"}],"internalType":"struct OxStandardV2.chainlinkParams","name":"chainlink","type":"tuple"},{"components":[{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"internalType":"struct OxStandardV2.revenueShareParams","name":"revenueShare","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"addresses","type":"address[]"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Airdrop","type":"event"},{"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":"_address","type":"address"}],"name":"AssignAirdropAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"}],"name":"AssignBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"}],"name":"AssignDefaultURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"size","type":"uint256"}],"name":"AssignDiscountBlockSize","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"AssignGovernorAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"AssignOgSigningAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"AssignOperatorAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_lowerBoundPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_priceFactor","type":"uint256"}],"name":"AssignPriceDecayParameter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"beginBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endBlock","type":"uint256"}],"name":"AssignPrivateSaleConfig","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"AssignPrivateSalePrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cap","type":"uint256"}],"name":"AssignPrivateSapeCap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"beginBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endBlock","type":"uint256"}],"name":"AssignPublicSaleConfig","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"AssignPublicSalePrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"seed","type":"uint256"}],"name":"AssignRandomNess","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"limit","type":"uint256"}],"name":"AssignReserveLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_blockNumber","type":"uint256"}],"name":"AssignRevealBlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"settlementBlockNumber","type":"uint256"}],"name":"AssignSettlementBlockNumber","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"privateSaleLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"publicSaleLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxWhitelist","type":"uint256"}],"name":"AssignTransactionLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"AssignWhitelistSigningAddress","type":"event"},{"anonymous":false,"inputs":[],"name":"DisableDutchAuction","type":"event"},{"anonymous":false,"inputs":[],"name":"EnableDucthAuction","type":"event"},{"anonymous":false,"inputs":[],"name":"EnablePrivateSale","type":"event"},{"anonymous":false,"inputs":[],"name":"EnablePublicSale","type":"event"},{"anonymous":false,"inputs":[],"name":"ForceCloseSale","type":"event"},{"anonymous":false,"inputs":[],"name":"ForcePauseSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"OGClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"}],"name":"Purchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"requestId","type":"bytes32"}],"name":"RandomseedFulfilmentFail","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"requestId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"seed","type":"uint256"}],"name":"RandomseedFulfilmentSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"RandomseedRequested","type":"event"},{"anonymous":false,"inputs":[],"name":"ResetOverridedSaleState","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"WithdrawNonPurchaseFund","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_defaultURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"availableReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"disableDutchAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"discountBlockSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableDutchAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endPrivateSaleBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endPublicSaleBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEndSaleBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupplyByMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintedByMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceByMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStartSaleBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getState","outputs":[{"internalType":"enum OxStandardV2.SaleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTransactionCappedByMode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"isEIP712WhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"isOGwhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPrivateSaleSoldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleSoldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keyHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lowerBoundPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPrivateSalePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSalePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistClaimPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintOg","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overridedSaleState","outputs":[{"internalType":"enum BlockBasedSale.OverrideSaleState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSale","outputs":[{"internalType":"uint256","name":"beginBlock","type":"uint256"},{"internalType":"uint256","name":"endBlock","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleCapped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"uint256","name":"beginBlock","type":"uint256"},{"internalType":"uint256","name":"endBlock","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomseedRequested","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestChainlinkVRF","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetOverridedSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealBlock","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePhase","outputs":[{"internalType":"enum BlockBasedSale.SalePhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setAirdropRole","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hashedSecret","type":"bytes32"}],"name":"setBlockNumbertoGenSeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setCloseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"defaultURI","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"size","type":"uint256"}],"name":"setDiscountBlockSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governor","type":"address"}],"name":"setGovernorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigningKey","type":"address"}],"name":"setOgSigningAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperatorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lowerBoundPrice","type":"uint256"},{"internalType":"uint256","name":"_priceFactor","type":"uint256"}],"name":"setPriceDecayParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"setPrivateSaleCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"beginBlock","type":"uint256"},{"internalType":"uint256","name":"endBlock","type":"uint256"}],"internalType":"struct BlockBasedSale.SaleConfig","name":"_privateSale","type":"tuple"}],"name":"setPrivateSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrivateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"beginBlock","type":"uint256"},{"internalType":"uint256","name":"endBlock","type":"uint256"}],"internalType":"struct BlockBasedSale.SaleConfig","name":"_publicSale","type":"tuple"}],"name":"setPublicSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_secret","type":"bytes32"}],"name":"setRandomResultToSeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reserve","type":"uint256"}],"name":"setReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"setRevealBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"privateSaleLimit","type":"uint256"},{"internalType":"uint256","name":"publicSaleLimit","type":"uint256"},{"internalType":"uint256","name":"maxWhitelist","type":"uint256"}],"name":"setTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigningKey","type":"address"}],"name":"setWhitelistSigningAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrivateSaleBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startPublicSaleBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalOGClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPrivateSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReserveMinted","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":"nonpayable","type":"function"}]

60c0604052600b80546001600160a01b0319908116909155600c80549091169055600f805461ffff19169055600a6011819055601460128190556013919091556102b290556000601581905560178190556018819055611b3960195560a9601a5560b4601b55601c8190556604c072fc631800601e556024805461ffff60a01b19169055602781905560288190556029553480156200009d57600080fd5b506040516200796738038062007967833981016040819052620000c09162000671565b8686868686868681600001518260200151868787620000ee620000e86200029760201b60201c565b6200029b565b815162000103906001906020850190620002eb565b50805162000119906002906020840190620002eb565b5050507f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f816040518060400160405280600981526020016815da1a5d195b1a5cdd60ba1b8152506040516020016200017392919062000774565b60408051808303601f190181528282528051602091820120838301835260018452603160f81b938201939093528151908101939093528201527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160408051601f19818403018152908290528051602091820120600d556001600160a01b0394851660a0529290931660805250600160235582519083015190916200022b906200037a565b62000238929190620007a7565b604051809103906000f08015801562000255573d6000803e3d6000fd5b50602480546001600160a01b0319166001600160a01b039290921691909117905550604001516025556019555050601d55601655506200086b95505050505050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002f9906200082f565b90600052602060002090601f0160209004810192826200031d576000855562000368565b82601f106200033857805160ff191683800117855562000368565b8280016001018555821562000368579182015b82811115620003685782518255916020019190600101906200034b565b506200037692915062000388565b5090565b611160806200680783390190565b5b8082111562000376576000815560010162000389565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715620003da57620003da6200039f565b60405290565b604051606081016001600160401b0381118282101715620003da57620003da6200039f565b604051601f8201601f191681016001600160401b03811182821017156200043057620004306200039f565b604052919050565b60005b83811015620004555781810151838201526020016200043b565b8381111562000465576000848401525b50505050565b600082601f8301126200047d57600080fd5b81516001600160401b038111156200049957620004996200039f565b620004ae601f8201601f191660200162000405565b818152846020838601011115620004c457600080fd5b620004d782602083016020870162000438565b949350505050565b80516001600160a01b0381168114620004f757600080fd5b919050565b60006001600160401b038211156200051857620005186200039f565b5060051b60200190565b600082601f8301126200053457600080fd5b815160206200054d6200054783620004fc565b62000405565b82815260059290921b840181019181810190868411156200056d57600080fd5b8286015b848110156200058a578051835291830191830162000571565b509695505050505050565b600060408284031215620005a857600080fd5b620005b2620003b5565b82519091506001600160401b0380821115620005cd57600080fd5b818401915084601f830112620005e257600080fd5b81516020620005f56200054783620004fc565b82815260059290921b840181019181810190888411156200061557600080fd5b948201945b838610156200063e576200062e86620004df565b825294820194908201906200061a565b865250858101519350828411156200065557600080fd5b620006638785880162000522565b818601525050505092915050565b60008060008060008060008789036101208112156200068f57600080fd5b885160208a015160408b015191995097506001600160401b0380821115620006b657600080fd5b620006c48c838d016200046b565b975060608b0151915080821115620006db57600080fd5b620006e98c838d016200046b565b965060808b015195506060609f19840112156200070557600080fd5b6200070f620003e0565b92506200071f60a08c01620004df565b83526200072f60c08c01620004df565b602084015260e08b015160408401526101008b0151929450808311156200075557600080fd5b5050620007658a828b0162000595565b91505092959891949750929550565b600083516200078881846020880162000438565b8351908301906200079e81836020880162000438565b01949350505050565b604080825283519082018190526000906020906060840190828701845b82811015620007eb5781516001600160a01b031684529284019290840190600101620007c4565b5050508381038285015284518082528583019183019060005b81811015620008225783518352928401929184019160010162000804565b5090979650505050505050565b600181811c908216806200084457607f821691505b6020821081036200086557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051615f686200089f60003960008181612db40152614988015260008181613ae201526149590152615f686000f3fe6080604052600436106105aa5760003560e01c80637bc36e04116102f3578063c87b56dd1161019b578063dd7f40cc116100e7578063e985e9c5116100a0578063f2fde38b1161007a578063f2fde38b14611040578063f3b3a9fa14611060578063f560d41514611076578063fa4d280c1461108c57600080fd5b8063e985e9c514610fcb578063efc4bc7c14611014578063eff70c381461102a57600080fd5b8063dd7f40cc14610f21578063dfa3a2e314610f41578063dfb2866d14610f61578063dfe363ef14610f77578063e4f2487a14610f8c578063e5d1ea4114610fab57600080fd5b8063d0b77ab411610154578063d5abeb011161012e578063d5abeb0114610eaa578063d898ce6914610ec0578063da1b9e0814610ee1578063da324a3014610f0157600080fd5b8063d0b77ab414610e67578063d1fe033d14610e80578063d2c1f20614610e9557600080fd5b8063c87b56dd14610dd2578063c91621c214610df2578063c9a8d9f714610e07578063ca997aa014610e1c578063ccc5d84714610e32578063cd77083314610e4757600080fd5b8063a22cb4651161025a578063b88d4fde11610213578063bbc33aa5116101ed578063bbc33aa514610d68578063be008ccb14610d7d578063c204642c14610d92578063c5e56c6414610db257600080fd5b8063b88d4fde14610d18578063b8c672d714610d38578063ba1f879f14610d4d57600080fd5b8063a22cb46514610c66578063a2fb7b5d14610c86578063a574cea414610cad578063b083bbbd14610ccd578063b5154dae14610ce2578063b87ced4e14610cf857600080fd5b806392fb4967116102ac57806392fb496714610bbb57806394985ddd14610bdb57806395d89b4114610bfb57806399f4832814610c105780639b6860c814610c305780639fc184ae14610c4657600080fd5b80637bc36e0414610b115780637d94792a14610b31578063839ed56c14610b475780638da5cb5b14610b675780639024fc9614610b855780639265f1d914610b9b57600080fd5b80633ccfd60b116104565780635e162699116103bd578063644bd7fa11610376578063715018a611610350578063715018a614610ab257806373b19e8f14610ac7578063776451b014610adc578063791a251914610af157600080fd5b8063644bd7fa14610a6757806366bb81c714610a7c57806370a0823114610a9257600080fd5b80635e162699146109dd5780635e9f9613146109f357806361728f3914610a085780636238e9f414610a1e5780636352211e14610a3157806363fea81c14610a5157600080fd5b80634f6ccce71161040f5780634f6ccce71461093357806354214f691461095357806355f804b3146109685780635626e4041461098857806356c4aedd146109a857806358e39b90146109bd57600080fd5b80633ccfd60b1461089f5780634256dbe3146108b457806342842e0e146108d457806344732180146108f457806347326dc2146109095780634e99b8001461091e57600080fd5b806319165587116105155780632f745c59116104ce5780633828914a116104a85780633828914a1461083f578063398c0ec1146108555780633c5d1c081461086a5780633ca4fb761461088a57600080fd5b80632f745c59146107d957806333bc1c5c146107f95780633644e5151461082957600080fd5b806319165587146107385780631e428ac2146107585780632316b4da1461076e57806323b872dd14610783578063266dab34146107a35780632f1d5a60146107b957600080fd5b8063095ea7b311610567578063095ea7b3146106975780630960e71c146106b95780630f30cde0146106ce5780631197705e146106e157806318160ddd146107015780631865c57d1461071657600080fd5b806301ffc9a7146105af57806302410f47146105e4578063031ab9f514610605578063048e0aa01461062857806306fdde031461063d578063081812fc1461065f575b600080fd5b3480156105bb57600080fd5b506105cf6105ca36600461542d565b6110c0565b60405190151581526020015b60405180910390f35b3480156105f057600080fd5b506024546105cf90600160a81b900460ff1681565b34801561061157600080fd5b5061061a6110d1565b6040519081526020016105db565b34801561063457600080fd5b506105cf61116f565b34801561064957600080fd5b506106526111a0565b6040516105db91906154a2565b34801561066b57600080fd5b5061067f61067a3660046154b5565b611232565b6040516001600160a01b0390911681526020016105db565b3480156106a357600080fd5b506106b76106b23660046154e3565b6112cc565b005b3480156106c557600080fd5b5060225461061a565b6105cf6106dc366004615550565b6113e1565b3480156106ed57600080fd5b506106b76106fc36600461559b565b61188d565b34801561070d57600080fd5b5060095461061a565b34801561072257600080fd5b5061072b611928565b6040516105db91906155ce565b34801561074457600080fd5b506106b761075336600461559b565b611cd2565b34801561076457600080fd5b5061061a60295481565b34801561077a57600080fd5b506106b7611e48565b34801561078f57600080fd5b506106b761079e3660046155e8565b611ec7565b3480156107af57600080fd5b5061061a60185481565b3480156107c557600080fd5b506106b76107d436600461559b565b611ef8565b3480156107e557600080fd5b5061061a6107f43660046154e3565b611f9a565b34801561080557600080fd5b50602154602254610814919082565b604080519283526020830191909152016105db565b34801561083557600080fd5b5061061a600d5481565b34801561084b57600080fd5b5061061a60175481565b34801561086157600080fd5b5061061a612030565b34801561087657600080fd5b506105cf610885366004615629565b61210a565b34801561089657600080fd5b50610652612185565b3480156108ab57600080fd5b506106b7612213565b3480156108c057600080fd5b506106b76108cf3660046154b5565b6122b9565b3480156108e057600080fd5b506106b76108ef3660046155e8565b612333565b34801561090057600080fd5b506106b761234e565b34801561091557600080fd5b5060215461061a565b34801561092a57600080fd5b506106526123c8565b34801561093f57600080fd5b5061061a61094e3660046154b5565b6123d7565b34801561095f57600080fd5b506105cf61246a565b34801561097457600080fd5b506106b7610983366004615707565b612491565b34801561099457600080fd5b506106b76109a33660046154b5565b612513565b3480156109b457600080fd5b5061065261258d565b3480156109c957600080fd5b506106b76109d836600461559b565b61259a565b3480156109e957600080fd5b5061061a601b5481565b3480156109ff57600080fd5b5061061a61261c565b348015610a1457600080fd5b5061061a60255481565b6105cf610a2c366004615629565b61262e565b348015610a3d57600080fd5b5061067f610a4c3660046154b5565b6128ea565b348015610a5d57600080fd5b5061061a601c5481565b348015610a7357600080fd5b506106b7612961565b348015610a8857600080fd5b5061061a60275481565b348015610a9e57600080fd5b5061061a610aad36600461559b565b6129de565b348015610abe57600080fd5b506106b7612a65565b348015610ad357600080fd5b5061061a612a9b565b348015610ae857600080fd5b5061061a612b01565b348015610afd57600080fd5b506106b7610b0c3660046154b5565b612b51565b348015610b1d57600080fd5b506106b7610b2c3660046154b5565b612bcb565b348015610b3d57600080fd5b5061061a60285481565b348015610b5357600080fd5b506106b7610b623660046154b5565b612c45565b348015610b7357600080fd5b506000546001600160a01b031661067f565b348015610b9157600080fd5b5061061a60155481565b348015610ba757600080fd5b506105cf610bb6366004615629565b612cbf565b348015610bc757600080fd5b506106b7610bd636600461574f565b612d22565b348015610be757600080fd5b506106b7610bf636600461579d565b612da9565b348015610c0757600080fd5b50610652612e2f565b348015610c1c57600080fd5b506106b7610c2b36600461559b565b612e3e565b348015610c3c57600080fd5b5061061a601d5481565b348015610c5257600080fd5b506106b7610c613660046154b5565b612eb2565b348015610c7257600080fd5b506106b7610c813660046157cd565b6130df565b348015610c9257600080fd5b50600f54610ca09060ff1681565b6040516105db9190615816565b348015610cb957600080fd5b50610652610cc83660046154b5565b6130ea565b348015610cd957600080fd5b50601f5461061a565b348015610cee57600080fd5b5061061a60125481565b348015610d0457600080fd5b506106b7610d1336600461574f565b61333f565b348015610d2457600080fd5b506106b7610d33366004615823565b6133c9565b348015610d4457600080fd5b5060205461061a565b348015610d5957600080fd5b50601f54602054610814919082565b348015610d7457600080fd5b5061061a613401565b348015610d8957600080fd5b506106b7613419565b348015610d9e57600080fd5b506106b7610dad3660046158c5565b613496565b348015610dbe57600080fd5b506106b7610dcd3660046154b5565b61367f565b348015610dde57600080fd5b50610652610ded3660046154b5565b613842565b348015610dfe57600080fd5b5061061a61395c565b348015610e1357600080fd5b5061061a61398c565b348015610e2857600080fd5b5061061a60115481565b348015610e3e57600080fd5b506106b7613a24565b348015610e5357600080fd5b506106b7610e6236600461559b565b613bfb565b348015610e7357600080fd5b50601454601554146105cf565b348015610e8c57600080fd5b506106b7613c6f565b348015610ea157600080fd5b506106b7613cf2565b348015610eb657600080fd5b5061061a60195481565b348015610ecc57600080fd5b506024546105cf90600160a01b900460ff1681565b348015610eed57600080fd5b506106b7610efc366004615707565b613d71565b348015610f0d57600080fd5b506106b7610f1c3660046154b5565b613df9565b348015610f2d57600080fd5b506106b7610f3c36600461579d565b613e76565b348015610f4d57600080fd5b506106b7610f5c366004615969565b613f12565b348015610f6d57600080fd5b5061061a601e5481565b348015610f8357600080fd5b506106b7613fd3565b348015610f9857600080fd5b50600f54610ca090610100900460ff1681565b348015610fb757600080fd5b506106b7610fc6366004615995565b614050565b348015610fd757600080fd5b506105cf610fe6366004615a25565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561102057600080fd5b5061061a60145481565b34801561103657600080fd5b5061061a60135481565b34801561104c57600080fd5b506106b761105b36600461559b565b614125565b34801561106c57600080fd5b5061061a601a5481565b34801561108257600080fd5b5061061a60165481565b34801561109857600080fd5b5061061a7f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c981565b60006110cb826141c0565b92915050565b60006110db611928565b600c8111156110ec576110ec6155b8565b6002148061111257506110fd611928565b600c81111561110e5761110e6155b8565b6003145b1561111e575060205490565b611126611928565b600c811115611137576111376155b8565b6007148061115d5750611148611928565b600c811115611159576111596155b8565b6008145b15611169575060225490565b50600090565b600080601a546019546111829190615a69565b905060006015546017546111969190615a80565b9190911492915050565b6060600180546111af90615a98565b80601f01602080910402602001604051908101604052809291908181526020018280546111db90615a98565b80156112285780601f106111fd57610100808354040283529160200191611228565b820191906000526020600020905b81548152906001019060200180831161120b57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166112b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006112d7826128ea565b9050806001600160a01b0316836001600160a01b0316036113445760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016112a7565b336001600160a01b038216148061136057506113608133610fe6565b6113d25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016112a7565b6113dc83836141e5565b505050565b60006002602354036114055760405162461bcd60e51b81526004016112a790615ad2565b60026023553332146114545760405162461bcd60e51b815260206004820152601860248201527721b7b73a3930b1ba1034b9903737ba1030b63637bbb2b21760411b60448201526064016112a7565b600361145e611928565b600c81111561146f5761146f6155b8565b148061149357506008611480611928565b600c811115611491576114916155b8565b145b6114d55760405162461bcd60e51b815260206004820152601360248201527229b0b632903737ba1030bb30b4b630b136329760691b60448201526064016112a7565b60086114df611928565b600c8111156114f0576114f06155b8565b036115e7576012548411156115475760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420657863656564207472616e73616374696f6e206c696d6974732e0060448201526064016112a7565b611559611552612030565b8590614253565b3410156115785760405162461bcd60e51b81526004016112a790615b09565b60195461159961158661261c565b6115938761159360095490565b9061425f565b11156115e75760405162461bcd60e51b815260206004820152601b60248201527f507572636861736520657863656564206d617820737570706c792e000000000060448201526064016112a7565b60036115f1611928565b600c811115611602576116026155b8565b0361176657611611838361210a565b6116505760405162461bcd60e51b815260206004820152601060248201526f2737ba103bb434ba32b634b9ba32b21760811b60448201526064016112a7565b6011548411156116a25760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420657863656564207472616e73616374696f6e206c696d697473000060448201526064016112a7565b601354336000908152602c60205260409020546116c0908690615a80565b111561170e5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74206c696d6974207065722077616c6c65742065786365656465642e0060448201526064016112a7565b60145460155461171e908661425f565b111561173c5760405162461bcd60e51b81526004016112a790615b36565b611747611552612030565b3410156117665760405162461bcd60e51b81526004016112a790615b09565b6003611770611928565b600c811115611781576117816155b8565b14806117a557506008611792611928565b600c8111156117a3576117a36155b8565b145b1561187f576117b4338561426b565b5060086117bf611928565b600c8111156117d0576117d06155b8565b036117e757836017546117e39190615a80565b6017555b60036117f1611928565b600c811115611802576118026155b8565b0361184457336000908152602c6020526040902054611822908590615a80565b336000908152602c6020526040902055601554611840908590615a80565b6015555b6024546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561187d573d6000803e3d6000fd5b505b506001806023559392505050565b6000546001600160a01b031633146118b75760405162461bcd60e51b81526004016112a790615b7a565b6001600160a01b0381166118ca57600080fd5b601080546001600160a01b0383166001600160a01b03199091168117909155600f805463ff000000191663010000001790556040517f5b92f2f101ec36b062768cd1330146da74961809b300919c88c6853ca703261590600090a250565b600080601a5460195461193b9190615a69565b9050600060155460175461194f9190615a80565b90506000600f54610100900460ff16600281111561196f5761196f6155b8565b1415801561199357506002600f5460ff166002811115611991576119916155b8565b145b156119a157600c9250505090565b6000600f54610100900460ff1660028111156119bf576119bf6155b8565b141580156119e357506001600f5460ff1660028111156119e1576119e16155b8565b145b156119f157600b9250505090565b6002600f54610100900460ff166002811115611a0f57611a0f6155b8565b148015611a1b57508181145b15611a2957600a9250505090565b6000600f54610100900460ff166002811115611a4757611a476155b8565b03611a555760009250505090565b6002600f54610100900460ff166002811115611a7357611a736155b8565b148015611a81575060225415155b8015611a8e575060225443115b15611a9c5760099250505090565b6002600f54610100900460ff166002811115611aba57611aba6155b8565b148015611ac8575060215415155b8015611ad657506021544310155b15611ae45760089250505090565b6002600f54610100900460ff166002811115611b0257611b026155b8565b148015611b10575060215415155b8015611b1d575060215443105b8015611b2a575060205443115b15611b385760079250505090565b6002600f54610100900460ff166002811115611b5657611b566155b8565b148015611b635750602154155b8015611b70575060205443115b15611b7e5760069250505090565b6001600f54610100900460ff166002811115611b9c57611b9c6155b8565b148015611bac5750601454601554145b15611bba5760059250505090565b6001600f54610100900460ff166002811115611bd857611bd86155b8565b148015611be6575060205415155b8015611bf3575060205443115b15611c015760049250505090565b6001600f54610100900460ff166002811115611c1f57611c1f6155b8565b148015611c2d5750601f5415155b8015611c3b5750601f544310155b15611c495760039250505090565b6001600f54610100900460ff166002811115611c6757611c676155b8565b148015611c755750601f5415155b8015611c825750601f5443105b15611c905760029250505090565b6001600f54610100900460ff166002811115611cae57611cae6155b8565b148015611cbb5750601f54155b15611cc95760019250505090565b60009250505090565b6024805460405163673e156160e11b81523360048201526000926001600160a01b039092169163ce7c2ac29101602060405180830381865afa158015611d1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d409190615baf565b11611d815760405162461bcd60e51b81526020600482015260116024820152703737ba10309039b430b932b437b63232b960791b60448201526064016112a7565b336001600160a01b0382161480611da257506000546001600160a01b031633145b611de75760405162461bcd60e51b81526020600482015260166024820152752932b632b0b9b29d103737903832b936b4b9b9b4b7b760511b60448201526064016112a7565b60248054604051631916558760e01b81526001600160a01b0384811660048301529091169163191655879101600060405180830381600087803b158015611e2d57600080fd5b505af1158015611e41573d6000803e3d6000fd5b5050505050565b600f5462010000900460ff168015611e715750600f54600160201b90046001600160a01b031633145b611e8d5760405162461bcd60e51b81526004016112a790615bc8565b600f805461ff0019166102001790556040517fca29b392f61fad3260f009b6fc1de9d8efda05563601b6c91396b795eeefff2e90600090a1565b611ed133826142f6565b611eed5760405162461bcd60e51b81526004016112a790615bf8565b6113dc8383836143ed565b6000546001600160a01b03163314611f225760405162461bcd60e51b81526004016112a790615b7a565b6001600160a01b038116611f3557600080fd5b600f805462ff0000196001600160a01b038416600160201b81029190911663ff010000600160c01b03199092169190911762010000179091556040517fa508d3b137dbcdf7e06f84833fe4aca137451e1e3309f454a207d8fb85c2ccd890600090a250565b6000611fa5836129de565b82106120075760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016112a7565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000600361203c611928565b600c81111561204d5761204d6155b8565b03612059575060165490565b6008612063611928565b600c811115612074576120746155b8565b0361210357602454600160a01b900460ff166120915750601d5490565b6021546000906120a19043615a69565b905060006120c6601b546120c0601e548561425390919063ffffffff16565b90614594565b90506120df601c54601d546145a090919063ffffffff16565b81106120ef57601c549250505090565b601d546120fc90826145a0565b9250505090565b50601d5490565b600b546000906001600160a01b031661215e5760405162461bcd60e51b81526020600482015260166024820152753bb434ba32b634b9ba103737ba1032b730b13632b21760511b60448201526064016112a7565b600b546001600160a01b031661217484846145ac565b6001600160a01b0316149392505050565b602f805461219290615a98565b80601f01602080910402602001604051908101604052809291908181526020018280546121be90615a98565b801561220b5780601f106121e05761010080835404028352916020019161220b565b820191906000526020600020905b8154815290600101906020018083116121ee57829003601f168201915b505050505081565b600f546301000000900460ff16801561223657506010546001600160a01b031633145b6122525760405162461bcd60e51b81526004016112a790615c49565b6040514790339082156108fc029083906000818181858888f19350505050158015612281573d6000803e3d6000fd5b506040518181527f807631352cb3389b100202fae783b0b18fedc90bd3a438433796cb89462f4fad906020015b60405180910390a150565b600f5462010000900460ff1680156122e25750600f54600160201b90046001600160a01b031633145b6122fe5760405162461bcd60e51b81526004016112a790615bc8565b601a8190556040518181527fe1fb8f58d0fe8f41debc65095588c6530f5b3c96964aee78a164712c7ab7cb3f906020016122ae565b6113dc838383604051806020016040528060008152506133c9565b600f5462010000900460ff1680156123775750600f54600160201b90046001600160a01b031633145b6123935760405162461bcd60e51b81526004016112a790615bc8565b600f805460ff191690556040517f4f0f641a7e3d2c654d00279745eb7cf977b86891e3c7dd11cf315972d02089ce90600090a1565b6060602f80546111af90615a98565b60006123e260095490565b82106124455760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016112a7565b6009828154811061245857612458615c79565b90600052602060002001549050919050565b60008060285411801561247f57506000602754115b801561248c575060275443115b905090565b600f546301000000900460ff1680156124b457506010546001600160a01b031633145b6124d05760405162461bcd60e51b81526004016112a790615c49565b80516124e390602f90602084019061537e565b507f046f9884af089932879d0fd71ed564287ec681b1f36c2671046b7d38455c4cee816040516122ae91906154a2565b600f5462010000900460ff16801561253c5750600f54600160201b90046001600160a01b031633145b6125585760405162461bcd60e51b81526004016112a790615bc8565b60148190556040518181527f7c416455591047caa05876a4b574da92570d3402cc091a549a87b40434833f0a906020016122ae565b602e805461219290615a98565b6000546001600160a01b031633146125c45760405162461bcd60e51b81526004016112a790615b7a565b6040516001600160a01b038216907fa85a8f69b8386043e9a2a9583184a456edfc2b0f7aa3f012334a5f9bdd2b2e8890600090a26001600160a01b03166000908152602b60205260409020805460ff19166001179055565b6000601854601a5461248c9190615a69565b60006002602354036126525760405162461bcd60e51b81526004016112a790615ad2565b60026023553332146126a15760405162461bcd60e51b815260206004820152601860248201527721b7b73a3930b1ba1034b9903737ba1030b63637bbb2b21760411b60448201526064016112a7565b60036126ab611928565b600c8111156126bc576126bc6155b8565b146126ff5760405162461bcd60e51b815260206004820152601360248201527229b0b632903737ba1030bb30b4b630b136329760691b60448201526064016112a7565b6003612709611928565b600c81111561271a5761271a6155b8565b036128db576127298383612cbf565b61276b5760405162461bcd60e51b81526020600482015260136024820152722737ba1027a3903bb434ba32b634b9ba32b21760691b60448201526064016112a7565b336000908152602d6020526040902054156127be5760405162461bcd60e51b815260206004820152601360248201527220b63932b0b23c9021b630b4b6b2b21027a39760691b60448201526064016112a7565b6014546015546127cf90600161425f565b11156127ed5760405162461bcd60e51b81526004016112a790615b36565b6127f5612030565b3410156128145760405162461bcd60e51b81526004016112a790615b09565b60405133907f2862c8db56386bda6e229cbaeca8f93cfce5b587ff57f377a37bae03dbfae58b90600090a2336000908152602d602052604090205461285a906001615a80565b336000908152602d6020526040902055601554612878906001615a80565b601555602954612889906001615a80565b60295561289733600161426b565b506024546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156128d1573d6000803e3d6000fd5b50600190506128df565b5060005b600160235592915050565b6000818152600360205260408120546001600160a01b0316806110cb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016112a7565b600f5462010000900460ff16801561298a5750600f54600160201b90046001600160a01b031633145b6129a65760405162461bcd60e51b81526004016112a790615bc8565b6024805460ff60a01b191690556040517f050c1c12c59ca346497fa402101729d7f0399460ab7989fcda9a4442de17329490600090a1565b60006001600160a01b038216612a495760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016112a7565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314612a8f5760405162461bcd60e51b81526004016112a790615b7a565b612a996000614680565b565b60006003612aa7611928565b600c811115612ab857612ab86155b8565b03612ac4575060145490565b6008612ace611928565b600c811115612adf57612adf6155b8565b0361116957601a54601554601954612af79190615a69565b61248c9190615a69565b60006003612b0d611928565b600c811115612b1e57612b1e6155b8565b03612b2a575060155490565b6008612b34611928565b600c811115612b4557612b456155b8565b03611169575060175490565b600f5462010000900460ff168015612b7a5750600f54600160201b90046001600160a01b031633145b612b965760405162461bcd60e51b81526004016112a790615bc8565b601d8190556040518181527ff959ca468c08c9457955f238a0ad6a31fc63f09b1e9bbafb4e409f19163bbe14906020016122ae565b600f5462010000900460ff168015612bf45750600f54600160201b90046001600160a01b031633145b612c105760405162461bcd60e51b81526004016112a790615bc8565b60168190556040518181527f8ea69d9e909b68c4f14f78ed645aa5bb6e5aaa632c8e2f365618f51f6e103732906020016122ae565b600f5462010000900460ff168015612c6e5750600f54600160201b90046001600160a01b031633145b612c8a5760405162461bcd60e51b81526004016112a790615bc8565b601b8190556040518181527fb554da5220087b9d9a11bb816eaf7e5e194964fae28c86915daf6dc936c0e895906020016122ae565b600c546000906001600160a01b0316612d0c5760405162461bcd60e51b815260206004820152600f60248201526e37b3903737ba1032b730b13632b21760891b60448201526064016112a7565b600c546001600160a01b031661217484846145ac565b600f5462010000900460ff168015612d4b5750600f54600160201b90046001600160a01b031633145b612d675760405162461bcd60e51b81526004016112a790615bc8565b8051601f81905560208083015180825560408051938452918301527ea742ba61fbc2be98048a2bafed46ef5f837610c64f7a83e332b100f6aab07591016122ae565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614612e215760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c0060448201526064016112a7565b612e2b82826146d0565b5050565b6060600280546111af90615a98565b6000546001600160a01b03163314612e685760405162461bcd60e51b81526004016112a790615b7a565b600c80546001600160a01b0319166001600160a01b0383169081179091556040517f08fc7f8a5f08ceb24448389487ad361d923391046bb4a7ae2ddb47df3f0a2e6d90600090a250565b600f546301000000900460ff168015612ed557506010546001600160a01b031633145b612ef15760405162461bcd60e51b81526004016112a790615c49565b602a54600003612f4e5760405162461bcd60e51b815260206004820152602260248201527f536574746c656d656e7420626c6f636b206e756d626572206e6f742065786973604482015261747360f01b60648201526084016112a7565b602a544311612fab5760405162461bcd60e51b815260206004820152602360248201527f536574746c656d656e7420626c6f636b206e756d626572206e6f7420726561636044820152621a195960ea1b60648201526084016112a7565b610100602a5443612fbc9190615a69565b106130095760405162461bcd60e51b815260206004820181905260248201527f536574746c656d656e7420626c6f636b206e756d62657220657870697265642e60448201526064016112a7565b602654604080516020810184905201604051602081830303815290604052805190602001201461306e5760405162461bcd60e51b815260206004820152601060248201526f125b98dbdc9c9958dd081cd958dc995d60821b60448201526064016112a7565b602a546040805191406020830152810182905260600160408051601f1981840301815290829052805160209182012060288190556024805460ff60a81b1916600160a81b17905582527fa11616ed471b9ccd06d8927063c25b76205dc06529d1174aa539c3ea70119ac191016122ae565b612e2b338383614754565b60606130fe6000546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461315c5760095482111561315c5760405162461bcd60e51b81526020600482015260116024820152702a37b5b2b7103737ba1032bc34b9ba399760791b60448201526064016112a7565b61316461246a565b61318b575050604080518082019091526007815266191959985d5b1d60ca1b602082015290565b6000601954600161319c9190615a80565b6001600160401b038111156131b3576131b361566a565b6040519080825280602002602001820160405280156131dc578160200160208202803683370190505b50905060015b601954811161321b57808282815181106131fe576131fe615c79565b6020908102919091010152613214600182615a80565b90506131e2565b5060025b60195481116133155760006019546028548360405160200161324b929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c61326e9190615ca5565b613279906001615a80565b90506002811015801561328e57506019548111155b15613302578281815181106132a5576132a5615c79565b60200260200101518383815181106132bf576132bf615c79565b60200260200101518484815181106132d9576132d9615c79565b602002602001018584815181106132f2576132f2615c79565b6020908102919091010191909152525b5061330e600182615a80565b905061321f565b5061333881848151811061332b5761332b615c79565b6020026020010151614822565b9392505050565b600f5462010000900460ff1680156133685750600f54600160201b90046001600160a01b031633145b6133845760405162461bcd60e51b81526004016112a790615bc8565b80516021819055602080830151602281905560408051938452918301527f70441bfeec4000206c01cb310438ec41bb281f98d8ea4f08f086e3329ff4eb2991016122ae565b6133d333836142f6565b6133ef5760405162461bcd60e51b81526004016112a790615bf8565b6133fb84848484614922565b50505050565b600061340c60095490565b60195461248c9190615a69565b600f5462010000900460ff1680156134425750600f54600160201b90046001600160a01b031633145b61345e5760405162461bcd60e51b81526004016112a790615bc8565b600f805460ff191660021790556040517f58abff1119ad7689f2843996246b31faf77e0a40545d5085ee99361a768a3f7d90600090a1565b6002602354036134b85760405162461bcd60e51b81526004016112a790615ad2565b6002602355336000908152602b602052604090205460ff1661351c5760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c792061697264726f7020726f6c6520616c6c6f7765642e00000000000060448201526064016112a7565b60195482516135379061352f9084614253565b600954611593565b11156135855760405162461bcd60e51b815260206004820152601860248201527f457863656564206d617820737570706c79206c696d69742e000000000000000060448201526064016112a7565b601a5482516135a1906135989084614253565b6018549061425f565b11156135e75760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103932b9b2b93b329760591b60448201526064016112a7565b81516135f7906135989083614253565b60185560005b825181101561363c5761362983828151811061361b5761361b615c79565b60200260200101518361426b565b508061363481615cb9565b9150506135fd565b507f08b3e41950189550b73643a90143efc8a526a17dc07e6abe0fb50ce7c10b50fc828260405161366e929190615cd2565b60405180910390a150506001602355565b600f546301000000900460ff1680156136a257506010546001600160a01b031633145b6136be5760405162461bcd60e51b81526004016112a790615c49565b602f80546136cb90615a98565b90506000036137265760405162461bcd60e51b815260206004820152602160248201527f54686520746f6b656e206261736520555249206973206e6f74207365742079656044820152601d60fa1b60648201526084016112a7565b602454600160a81b900460ff16156137805760405162461bcd60e51b815260206004820152601c60248201527f5468652072616e646f6d20616c7265616479207265717565737465640000000060448201526064016112a7565b602a54158061379e5750610100602a544361379b9190615a69565b10155b6137fd5760405162461bcd60e51b815260206004820152602a60248201527f736574746c656d656e74426c6f636b4e756d62657220626c6f636b20697320616044820152691b1c9958591e481cd95d60b21b60648201526084016112a7565b61380843600a615a80565b602a81905560268290556040519081527fa104373d7ad0275b7398cd498e6eaf204d08eaa63425eee58e116881600f225d906020016122ae565b606061384d60095490565b82111561388f5760405162461bcd60e51b815260206004820152601060248201526f2a37b5b2b7103737ba1032bc34b9ba1760811b60448201526064016112a7565b61389761246a565b61392b57602e80546138a890615a98565b80601f01602080910402602001604051908101604052809291908181526020018280546138d490615a98565b80156139215780601f106138f657610100808354040283529160200191613921565b820191906000526020600020905b81548152906001019060200180831161390457829003601f168201915b50505050506110cb565b602f613936836130ea565b604051602001613947929190615d3f565b60405160208183030381529060405292915050565b60006003613968611928565b600c811115613979576139796155b8565b14613985575060125490565b5060115490565b6000613996611928565b600c8111156139a7576139a76155b8565b600214806139cd57506139b8611928565b600c8111156139c9576139c96155b8565b6003145b156139d95750601f5490565b6139e1611928565b600c8111156139f2576139f26155b8565b60071480613a185750613a03611928565b600c811115613a1457613a146155b8565b6008145b15611169575060215490565b600f5462010000900460ff168015613a4d5750600f54600160201b90046001600160a01b031633145b613a695760405162461bcd60e51b81526004016112a790615bc8565b602454600160a81b900460ff1615613ac35760405162461bcd60e51b815260206004820152601f60248201527f436861696e6c696e6b2056524620616c7265616479207265717565737465640060448201526064016112a7565b6040516370a0823160e01b8152306004820152671bc16d674ec80000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015613b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b559190615baf565b1015613b975760405162461bcd60e51b8152602060048201526011602482015270496e73756666696369656e74204c494e4b60781b60448201526064016112a7565b613bab602554671bc16d674ec80000614955565b506024805460ff60a81b1916600160a81b1790556040517f8bcef1354992d6b49befbd8ce23b2578ce493191f74c32b543d2f177962a139f90613bf19042815260200190565b60405180910390a1565b6000546001600160a01b03163314613c255760405162461bcd60e51b81526004016112a790615b7a565b600b80546001600160a01b0319166001600160a01b0383169081179091556040517fb225ee5631f7970f6bede33802c049395e151c82713461944770e239f324d15390600090a250565b600f5462010000900460ff168015613c985750600f54600160201b90046001600160a01b031633145b613cb45760405162461bcd60e51b81526004016112a790615bc8565b6024805460ff60a01b1916600160a01b1790556040517f47b2c4e2d3f2f2f7086b4c02b1dbf0986f42bdfe123f50b37756197769495be690600090a1565b600f5462010000900460ff168015613d1b5750600f54600160201b90046001600160a01b031633145b613d375760405162461bcd60e51b81526004016112a790615bc8565b600f805461ff0019166101001790556040517f0913c47876f976a46ce9674a2e5a22679ebf61b03b7a333913652272a9262c7790600090a1565b600f5462010000900460ff168015613d9a5750600f54600160201b90046001600160a01b031633145b613db65760405162461bcd60e51b81526004016112a790615bc8565b8051613dc990602e90602084019061537e565b507f791a768a5b9557254d91daf128b9a720119cf95e342b163b85210b53a9ead7a9816040516122ae91906154a2565b600f5462010000900460ff168015613e225750600f54600160201b90046001600160a01b031633145b613e3e5760405162461bcd60e51b81526004016112a790615bc8565b6040518181527f9ddcb1d2300d94c11e310fcb4f446426b42f1926ed0763f9cb24ed5b0c54d8a39060200160405180910390a1602755565b600f5462010000900460ff168015613e9f5750600f54600160201b90046001600160a01b031633145b613ebb5760405162461bcd60e51b81526004016112a790615bc8565b601d54811115613eca57600080fd5b601c829055601e81905560408051838152602081018390527f204ef244ed872a9029be787cf59036a2fe59f33439b25bf80bab6449af8036ac91015b60405180910390a15050565b600f5462010000900460ff168015613f3b5750600f54600160201b90046001600160a01b031633145b613f575760405162461bcd60e51b81526004016112a790615bc8565b60008311613f6457600080fd5b60008211613f7157600080fd5b82811115613f7e57600080fd5b60118390556012829055601381905560408051848152602081018490529081018290527f0a64a4deb1fa0ac7276d3f9e81a6252e7815e6d11f77c34d7bd5217de36d43919060600160405180910390a1505050565b600f5462010000900460ff168015613ffc5750600f54600160201b90046001600160a01b031633145b6140185760405162461bcd60e51b81526004016112a790615bc8565b600f805460ff191660011790556040517f6d4e2212f1a4fcfebfe8fd91368752c56e02d80a28c18c5cce3d812cfcbcb4a790600090a1565b600f5462010000900460ff1680156140795750600f54600160201b90046001600160a01b031633145b6140955760405162461bcd60e51b81526004016112a790615bc8565b60005b8151811015612e2b578181815181106140b3576140b3615c79565b60200260200101517fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b556572076140fe8484815181106140f1576140f1615c79565b6020026020010151613842565b60405161410b91906154a2565b60405180910390a261411e600182615a80565b9050614098565b6000546001600160a01b0316331461414f5760405162461bcd60e51b81526004016112a790615b7a565b6001600160a01b0381166141b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016112a7565b6141bd81614680565b50565b60006001600160e01b0319821663780e9d6360e01b14806110cb57506110cb82614ad1565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061421a826128ea565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006133388284615df9565b60006133388284615a80565b6000805b828110156142ec57600061428260095490565b90506019548110156142d9576142a28561429d836001615a80565b614b21565b60405181906001600160a01b038716907fa512fb2532ca8587f236380171326ebb69670e86a2ba0c4412a3fcca4c3ada9b90600090a35b50806142e481615cb9565b91505061426f565b5060019392505050565b6000818152600360205260408120546001600160a01b031661436f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016112a7565b600061437a836128ea565b9050806001600160a01b0316846001600160a01b031614806143b55750836001600160a01b03166143aa84611232565b6001600160a01b0316145b806143e557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316614400826128ea565b6001600160a01b0316146144645760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016112a7565b6001600160a01b0382166144c65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016112a7565b6144d1838383614b3b565b6144dc6000826141e5565b6001600160a01b0383166000908152600460205260408120805460019290614505908490615a69565b90915550506001600160a01b0382166000908152600460205260408120805460019290614533908490615a80565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006133388284615e18565b60006133388284615a69565b600d54604080517f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c96020820152339181019190915260009182916060016040516020818303038152906040528051906020012060405160200161462692919061190160f01b81526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506143e584848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508593925050614b469050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b801561471957602881905560408051428152602081018490529081018290527f59e4c9bb1559d5420398abdcb1a7eb97cc4a7e27b2ae810b8d7f44fbc2327ffa90606001613f06565b600160285560408051428152602081018490527fd9b030358bf0114e16959cea6c935e1cb862740b4d1056049f91711662fb3f959101613f06565b816001600160a01b0316836001600160a01b0316036147b55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016112a7565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6060816000036148495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115614873578061485d81615cb9565b915061486c9050600a83615e18565b915061484d565b6000816001600160401b0381111561488d5761488d61566a565b6040519080825280601f01601f1916602001820160405280156148b7576020820181803683370190505b5090505b84156143e5576148cc600183615a69565b91506148d9600a86615ca5565b6148e4906030615a80565b60f81b8183815181106148f9576148f9615c79565b60200101906001600160f81b031916908160001a90535061491b600a86615e18565b94506148bb565b61492d8484846143ed565b61493984848484614b6a565b6133fb5760405162461bcd60e51b81526004016112a790615e2c565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f0000000000000000000000000000000000000000000000000000000000000000848660006040516020016149c5929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016149f293929190615e7e565b6020604051808303816000875af1158015614a11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614a359190615ea5565b506000838152600e6020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a090910190925281519183019190912093879052919052614a91906001615a80565b6000858152600e60205260409020556143e58482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b60006001600160e01b031982166380ac58cd60e01b1480614b0257506001600160e01b03198216635b5e139f60e01b145b806110cb57506301ffc9a760e01b6001600160e01b03198316146110cb565b612e2b828260405180602001604052806000815250614c6b565b6113dc838383614c9e565b6000806000614b558585614d56565b91509150614b6281614dc4565b509392505050565b60006001600160a01b0384163b15614c6057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614bae903390899088908890600401615ec2565b6020604051808303816000875af1925050508015614be9575060408051601f3d908101601f19168201909252614be691810190615eff565b60015b614c46573d808015614c17576040519150601f19603f3d011682016040523d82523d6000602084013e614c1c565b606091505b508051600003614c3e5760405162461bcd60e51b81526004016112a790615e2c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506143e5565b506001949350505050565b614c758383614f7a565b614c826000848484614b6a565b6113dc5760405162461bcd60e51b81526004016112a790615e2c565b6001600160a01b038316614cf957614cf481600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b614d1c565b816001600160a01b0316836001600160a01b031614614d1c57614d1c83826150c8565b6001600160a01b038216614d33576113dc81615165565b826001600160a01b0316826001600160a01b0316146113dc576113dc8282615214565b6000808251604103614d8c5760208301516040840151606085015160001a614d8087828585615258565b94509450505050614dbd565b8251604003614db55760208301516040840151614daa868383615345565b935093505050614dbd565b506000905060025b9250929050565b6000816004811115614dd857614dd86155b8565b03614de05750565b6001816004811115614df457614df46155b8565b03614e415760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016112a7565b6002816004811115614e5557614e556155b8565b03614ea25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016112a7565b6003816004811115614eb657614eb66155b8565b03614f0e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016112a7565b6004816004811115614f2257614f226155b8565b036141bd5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016112a7565b6001600160a01b038216614fd05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016112a7565b6000818152600360205260409020546001600160a01b0316156150355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016112a7565b61504160008383614b3b565b6001600160a01b038216600090815260046020526040812080546001929061506a908490615a80565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016150d5846129de565b6150df9190615a69565b600083815260086020526040902054909150808214615132576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061517790600190615a69565b6000838152600a60205260408120546009805493945090928490811061519f5761519f615c79565b9060005260206000200154905080600983815481106151c0576151c0615c79565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806151f8576151f8615f1c565b6001900381819060005260206000200160009055905550505050565b600061521f836129de565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561528f575060009050600361533c565b8460ff16601b141580156152a757508460ff16601c14155b156152b8575060009050600461533c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561530c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166153355760006001925092505061533c565b9150600090505b94509492505050565b6000806001600160ff1b0383168161536260ff86901c601b615a80565b905061537087828885615258565b935093505050935093915050565b82805461538a90615a98565b90600052602060002090601f0160209004810192826153ac57600085556153f2565b82601f106153c557805160ff19168380011785556153f2565b828001600101855582156153f2579182015b828111156153f25782518255916020019190600101906153d7565b506153fe929150615402565b5090565b5b808211156153fe5760008155600101615403565b6001600160e01b0319811681146141bd57600080fd5b60006020828403121561543f57600080fd5b813561333881615417565b60005b8381101561546557818101518382015260200161544d565b838111156133fb5750506000910152565b6000815180845261548e81602086016020860161544a565b601f01601f19169290920160200192915050565b6020815260006133386020830184615476565b6000602082840312156154c757600080fd5b5035919050565b6001600160a01b03811681146141bd57600080fd5b600080604083850312156154f657600080fd5b8235615501816154ce565b946020939093013593505050565b60008083601f84011261552157600080fd5b5081356001600160401b0381111561553857600080fd5b602083019150836020828501011115614dbd57600080fd5b60008060006040848603121561556557600080fd5b8335925060208401356001600160401b0381111561558257600080fd5b61558e8682870161550f565b9497909650939450505050565b6000602082840312156155ad57600080fd5b8135613338816154ce565b634e487b7160e01b600052602160045260246000fd5b60208101600d83106155e2576155e26155b8565b91905290565b6000806000606084860312156155fd57600080fd5b8335615608816154ce565b92506020840135615618816154ce565b929592945050506040919091013590565b6000806020838503121561563c57600080fd5b82356001600160401b0381111561565257600080fd5b61565e8582860161550f565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156156a8576156a861566a565b604052919050565b60006001600160401b038311156156c9576156c961566a565b6156dc601f8401601f1916602001615680565b90508281528383830111156156f057600080fd5b828260208301376000602084830101529392505050565b60006020828403121561571957600080fd5b81356001600160401b0381111561572f57600080fd5b8201601f8101841361574057600080fd5b6143e5848235602084016156b0565b60006040828403121561576157600080fd5b604051604081018181106001600160401b03821117156157835761578361566a565b604052823581526020928301359281019290925250919050565b600080604083850312156157b057600080fd5b50508035926020909101359150565b80151581146141bd57600080fd5b600080604083850312156157e057600080fd5b82356157eb816154ce565b915060208301356157fb816157bf565b809150509250929050565b600381106141bd576141bd6155b8565b602081016155e283615806565b6000806000806080858703121561583957600080fd5b8435615844816154ce565b93506020850135615854816154ce565b92506040850135915060608501356001600160401b0381111561587657600080fd5b8501601f8101871361588757600080fd5b615896878235602084016156b0565b91505092959194509250565b60006001600160401b038211156158bb576158bb61566a565b5060051b60200190565b600080604083850312156158d857600080fd5b82356001600160401b038111156158ee57600080fd5b8301601f810185136158ff57600080fd5b8035602061591461590f836158a2565b615680565b82815260059290921b8301810191818101908884111561593357600080fd5b938201935b8385101561595a57843561594b816154ce565b82529382019390820190615938565b98969091013596505050505050565b60008060006060848603121561597e57600080fd5b505081359360208301359350604090920135919050565b600060208083850312156159a857600080fd5b82356001600160401b038111156159be57600080fd5b8301601f810185136159cf57600080fd5b80356159dd61590f826158a2565b81815260059190911b820183019083810190878311156159fc57600080fd5b928401925b82841015615a1a57833582529284019290840190615a01565b979650505050505050565b60008060408385031215615a3857600080fd5b8235615a43816154ce565b915060208301356157fb816154ce565b634e487b7160e01b600052601160045260246000fd5b600082821015615a7b57615a7b615a53565b500390565b60008219821115615a9357615a93615a53565b500190565b600181811c90821680615aac57607f821691505b602082108103615acc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526013908201527224b739bab33334b1b4b2b73a10333ab732399760691b604082015260600190565b60208082526024908201527f50757263686173652065786365656420707269766174652073616c65206361706040820152633832b21760e11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215615bc157600080fd5b5051919050565b60208082526016908201527527b7363c9037b832b930ba37b91030b63637bbb2b21760511b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527527b7363c9033b7bb32b93737b91030b63637bbb2b21760511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b600082615cb457615cb4615c8f565b500690565b600060018201615ccb57615ccb615a53565b5060010190565b604080825283519082018190526000906020906060840190828701845b82811015615d145781516001600160a01b031684529284019290840190600101615cef565b50505092019290925292915050565b60008151615d3581856020860161544a565b9290920192915050565b600080845481600182811c915080831680615d5b57607f831692505b60208084108203615d7a57634e487b7160e01b86526022600452602486fd5b818015615d8e5760018114615d9f57615dcc565b60ff19861689528489019650615dcc565b60008b81526020902060005b86811015615dc45781548b820152908501908301615dab565b505084890196505b505050505050615df0615ddf8286615d23565b64173539b7b760d91b815260050190565b95945050505050565b6000816000190483118215151615615e1357615e13615a53565b500290565b600082615e2757615e27615c8f565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60018060a01b0384168152826020820152606060408201526000615df06060830184615476565b600060208284031215615eb757600080fd5b8151613338816157bf565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615ef590830184615476565b9695505050505050565b600060208284031215615f1157600080fd5b815161333881615417565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208fe851e0ff1621f1fb8f1d01b1555f03e6ef387719784415bcef9300e4e6411f64736f6c634300080d00336080604052604051620011603803806200116083398101604081905262000026916200042e565b8051825114620000985760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620000eb5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200008f565b60005b82518110156200015757620001428382815181106200011157620001116200050c565b60200260200101518383815181106200012e576200012e6200050c565b60200260200101516200016060201b60201c565b806200014e8162000538565b915050620000ee565b5050506200056f565b6001600160a01b038216620001cd5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200008f565b600081116200021f5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200008f565b6001600160a01b038216600090815260026020526040902054156200029b5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200008f565b60048054600181019091557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319166001600160a01b0384169081179091556000908152600260205260408120829055546200030390829062000554565b600055604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156200038d576200038d6200034c565b604052919050565b60006001600160401b03821115620003b157620003b16200034c565b5060051b60200190565b600082601f830112620003cd57600080fd5b81516020620003e6620003e08362000395565b62000362565b82815260059290921b840181019181810190868411156200040657600080fd5b8286015b848110156200042357805183529183019183016200040a565b509695505050505050565b600080604083850312156200044257600080fd5b82516001600160401b03808211156200045a57600080fd5b818501915085601f8301126200046f57600080fd5b8151602062000482620003e08362000395565b82815260059290921b84018101918181019089841115620004a257600080fd5b948201945b83861015620004d95785516001600160a01b0381168114620004c95760008081fd5b82529482019490820190620004a7565b91880151919650909350505080821115620004f357600080fd5b506200050285828601620003bb565b9150509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016200054d576200054d62000522565b5060010190565b600082198211156200056a576200056a62000522565b500190565b610be1806200057f6000396000f3fe60806040526004361061008a5760003560e01c80638b83209b116100595780638b83209b146101845780639852595c146101bc578063ce7c2ac2146101f2578063d79779b214610228578063e33b7de31461025e57600080fd5b806319165587146100d85780633a98ef39146100fa578063406072a91461011e57806348b750441461016457600080fd5b366100d3577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156100e457600080fd5b506100f86100f3366004610955565b610273565b005b34801561010657600080fd5b506000545b6040519081526020015b60405180910390f35b34801561012a57600080fd5b5061010b610139366004610972565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561017057600080fd5b506100f861017f366004610972565b6103ad565b34801561019057600080fd5b506101a461019f3660046109ab565b610589565b6040516001600160a01b039091168152602001610115565b3480156101c857600080fd5b5061010b6101d7366004610955565b6001600160a01b031660009081526003602052604090205490565b3480156101fe57600080fd5b5061010b61020d366004610955565b6001600160a01b031660009081526002602052604090205490565b34801561023457600080fd5b5061010b610243366004610955565b6001600160a01b031660009081526005602052604090205490565b34801561026a57600080fd5b5060015461010b565b6001600160a01b0381166000908152600260205260409020546102b15760405162461bcd60e51b81526004016102a8906109c4565b60405180910390fd5b60006102bc60015490565b6102c69047610a20565b905060006102f383836102ee866001600160a01b031660009081526003602052604090205490565b6105b9565b9050806000036103155760405162461bcd60e51b81526004016102a890610a38565b6001600160a01b0383166000908152600360205260408120805483929061033d908490610a20565b9250508190555080600160008282546103569190610a20565b90915550610366905083826105fe565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6001600160a01b0381166000908152600260205260409020546103e25760405162461bcd60e51b81526004016102a8906109c4565b6001600160a01b0382166000908152600560205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa15801561043f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104639190610a83565b61046d9190610a20565b905060006104a683836102ee87876001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b9050806000036104c85760405162461bcd60e51b81526004016102a890610a38565b6001600160a01b038085166000908152600660209081526040808320938716835292905290812080548392906104ff908490610a20565b90915550506001600160a01b0384166000908152600560205260408120805483929061052c908490610a20565b9091555061053d905084848361071c565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b60006004828154811061059e5761059e610a9c565b6000918252602090912001546001600160a01b031692915050565b600080546001600160a01b0385168252600260205260408220548391906105e09086610ab2565b6105ea9190610ad1565b6105f49190610af3565b90505b9392505050565b8047101561064e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016102a8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461069b576040519150601f19603f3d011682016040523d82523d6000602084013e6106a0565b606091505b50509050806107175760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016102a8565b505050565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152610717928692916000916107ac918516908490610829565b80519091501561071757808060200190518101906107ca9190610b0a565b6107175760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102a8565b60606105f48484600085856001600160a01b0385163b61088b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102a8565b600080866001600160a01b031685876040516108a79190610b5c565b60006040518083038185875af1925050503d80600081146108e4576040519150601f19603f3d011682016040523d82523d6000602084013e6108e9565b606091505b50915091506108f9828286610904565b979650505050505050565b606083156109135750816105f7565b8251156109235782518084602001fd5b8160405162461bcd60e51b81526004016102a89190610b78565b6001600160a01b038116811461095257600080fd5b50565b60006020828403121561096757600080fd5b81356105f78161093d565b6000806040838503121561098557600080fd5b82356109908161093d565b915060208301356109a08161093d565b809150509250929050565b6000602082840312156109bd57600080fd5b5035919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115610a3357610a33610a0a565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b600060208284031215610a9557600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615610acc57610acc610a0a565b500290565b600082610aee57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015610b0557610b05610a0a565b500390565b600060208284031215610b1c57600080fd5b815180151581146105f757600080fd5b60005b83811015610b47578181015183820152602001610b2f565b83811115610b56576000848401525b50505050565b60008251610b6e818460208701610b2c565b9190910192915050565b6020815260008251806020840152610b97816040850160208701610b2c565b601f01601f1916919091016040019291505056fea264697066735822122041b7492bf22540a77f025c18a97fe6ab82d8ecff39f420e5dce77ef83a80495664736f6c634300080d00330000000000000000000000000000000000000000000000000214e8348c4f00000000000000000000000000000000000000000000000000000905438e60010000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000002710000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af44500000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000b55676c792050656f706c65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000355504700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000080000000000000000000000008f342d4b90ed95a759b87dbf44b1e8f256679197000000000000000000000000e0a0262ac02312ba25d4b963e8375dac7bb173e2000000000000000000000000485b2d34d8b98d14e1c1437a2694f6d506e2421d00000000000000000000000048a986d9235aaef9296b6ec30756719dd8dc5b9400000000000000000000000011011f9f7f78180b72b2a89eb15109e0d34293dd000000000000000000000000a5f0faeb024c5b820ff25a86f994c1ac5ae2bde30000000000000000000000006c993e357e07706e05970f26dfa726f7c861fa3c0000000000000000000000007bd4da4e1c96bdfaafa69f00e5c523041228c0bd0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002

Deployed Bytecode

0x6080604052600436106105aa5760003560e01c80637bc36e04116102f3578063c87b56dd1161019b578063dd7f40cc116100e7578063e985e9c5116100a0578063f2fde38b1161007a578063f2fde38b14611040578063f3b3a9fa14611060578063f560d41514611076578063fa4d280c1461108c57600080fd5b8063e985e9c514610fcb578063efc4bc7c14611014578063eff70c381461102a57600080fd5b8063dd7f40cc14610f21578063dfa3a2e314610f41578063dfb2866d14610f61578063dfe363ef14610f77578063e4f2487a14610f8c578063e5d1ea4114610fab57600080fd5b8063d0b77ab411610154578063d5abeb011161012e578063d5abeb0114610eaa578063d898ce6914610ec0578063da1b9e0814610ee1578063da324a3014610f0157600080fd5b8063d0b77ab414610e67578063d1fe033d14610e80578063d2c1f20614610e9557600080fd5b8063c87b56dd14610dd2578063c91621c214610df2578063c9a8d9f714610e07578063ca997aa014610e1c578063ccc5d84714610e32578063cd77083314610e4757600080fd5b8063a22cb4651161025a578063b88d4fde11610213578063bbc33aa5116101ed578063bbc33aa514610d68578063be008ccb14610d7d578063c204642c14610d92578063c5e56c6414610db257600080fd5b8063b88d4fde14610d18578063b8c672d714610d38578063ba1f879f14610d4d57600080fd5b8063a22cb46514610c66578063a2fb7b5d14610c86578063a574cea414610cad578063b083bbbd14610ccd578063b5154dae14610ce2578063b87ced4e14610cf857600080fd5b806392fb4967116102ac57806392fb496714610bbb57806394985ddd14610bdb57806395d89b4114610bfb57806399f4832814610c105780639b6860c814610c305780639fc184ae14610c4657600080fd5b80637bc36e0414610b115780637d94792a14610b31578063839ed56c14610b475780638da5cb5b14610b675780639024fc9614610b855780639265f1d914610b9b57600080fd5b80633ccfd60b116104565780635e162699116103bd578063644bd7fa11610376578063715018a611610350578063715018a614610ab257806373b19e8f14610ac7578063776451b014610adc578063791a251914610af157600080fd5b8063644bd7fa14610a6757806366bb81c714610a7c57806370a0823114610a9257600080fd5b80635e162699146109dd5780635e9f9613146109f357806361728f3914610a085780636238e9f414610a1e5780636352211e14610a3157806363fea81c14610a5157600080fd5b80634f6ccce71161040f5780634f6ccce71461093357806354214f691461095357806355f804b3146109685780635626e4041461098857806356c4aedd146109a857806358e39b90146109bd57600080fd5b80633ccfd60b1461089f5780634256dbe3146108b457806342842e0e146108d457806344732180146108f457806347326dc2146109095780634e99b8001461091e57600080fd5b806319165587116105155780632f745c59116104ce5780633828914a116104a85780633828914a1461083f578063398c0ec1146108555780633c5d1c081461086a5780633ca4fb761461088a57600080fd5b80632f745c59146107d957806333bc1c5c146107f95780633644e5151461082957600080fd5b806319165587146107385780631e428ac2146107585780632316b4da1461076e57806323b872dd14610783578063266dab34146107a35780632f1d5a60146107b957600080fd5b8063095ea7b311610567578063095ea7b3146106975780630960e71c146106b95780630f30cde0146106ce5780631197705e146106e157806318160ddd146107015780631865c57d1461071657600080fd5b806301ffc9a7146105af57806302410f47146105e4578063031ab9f514610605578063048e0aa01461062857806306fdde031461063d578063081812fc1461065f575b600080fd5b3480156105bb57600080fd5b506105cf6105ca36600461542d565b6110c0565b60405190151581526020015b60405180910390f35b3480156105f057600080fd5b506024546105cf90600160a81b900460ff1681565b34801561061157600080fd5b5061061a6110d1565b6040519081526020016105db565b34801561063457600080fd5b506105cf61116f565b34801561064957600080fd5b506106526111a0565b6040516105db91906154a2565b34801561066b57600080fd5b5061067f61067a3660046154b5565b611232565b6040516001600160a01b0390911681526020016105db565b3480156106a357600080fd5b506106b76106b23660046154e3565b6112cc565b005b3480156106c557600080fd5b5060225461061a565b6105cf6106dc366004615550565b6113e1565b3480156106ed57600080fd5b506106b76106fc36600461559b565b61188d565b34801561070d57600080fd5b5060095461061a565b34801561072257600080fd5b5061072b611928565b6040516105db91906155ce565b34801561074457600080fd5b506106b761075336600461559b565b611cd2565b34801561076457600080fd5b5061061a60295481565b34801561077a57600080fd5b506106b7611e48565b34801561078f57600080fd5b506106b761079e3660046155e8565b611ec7565b3480156107af57600080fd5b5061061a60185481565b3480156107c557600080fd5b506106b76107d436600461559b565b611ef8565b3480156107e557600080fd5b5061061a6107f43660046154e3565b611f9a565b34801561080557600080fd5b50602154602254610814919082565b604080519283526020830191909152016105db565b34801561083557600080fd5b5061061a600d5481565b34801561084b57600080fd5b5061061a60175481565b34801561086157600080fd5b5061061a612030565b34801561087657600080fd5b506105cf610885366004615629565b61210a565b34801561089657600080fd5b50610652612185565b3480156108ab57600080fd5b506106b7612213565b3480156108c057600080fd5b506106b76108cf3660046154b5565b6122b9565b3480156108e057600080fd5b506106b76108ef3660046155e8565b612333565b34801561090057600080fd5b506106b761234e565b34801561091557600080fd5b5060215461061a565b34801561092a57600080fd5b506106526123c8565b34801561093f57600080fd5b5061061a61094e3660046154b5565b6123d7565b34801561095f57600080fd5b506105cf61246a565b34801561097457600080fd5b506106b7610983366004615707565b612491565b34801561099457600080fd5b506106b76109a33660046154b5565b612513565b3480156109b457600080fd5b5061065261258d565b3480156109c957600080fd5b506106b76109d836600461559b565b61259a565b3480156109e957600080fd5b5061061a601b5481565b3480156109ff57600080fd5b5061061a61261c565b348015610a1457600080fd5b5061061a60255481565b6105cf610a2c366004615629565b61262e565b348015610a3d57600080fd5b5061067f610a4c3660046154b5565b6128ea565b348015610a5d57600080fd5b5061061a601c5481565b348015610a7357600080fd5b506106b7612961565b348015610a8857600080fd5b5061061a60275481565b348015610a9e57600080fd5b5061061a610aad36600461559b565b6129de565b348015610abe57600080fd5b506106b7612a65565b348015610ad357600080fd5b5061061a612a9b565b348015610ae857600080fd5b5061061a612b01565b348015610afd57600080fd5b506106b7610b0c3660046154b5565b612b51565b348015610b1d57600080fd5b506106b7610b2c3660046154b5565b612bcb565b348015610b3d57600080fd5b5061061a60285481565b348015610b5357600080fd5b506106b7610b623660046154b5565b612c45565b348015610b7357600080fd5b506000546001600160a01b031661067f565b348015610b9157600080fd5b5061061a60155481565b348015610ba757600080fd5b506105cf610bb6366004615629565b612cbf565b348015610bc757600080fd5b506106b7610bd636600461574f565b612d22565b348015610be757600080fd5b506106b7610bf636600461579d565b612da9565b348015610c0757600080fd5b50610652612e2f565b348015610c1c57600080fd5b506106b7610c2b36600461559b565b612e3e565b348015610c3c57600080fd5b5061061a601d5481565b348015610c5257600080fd5b506106b7610c613660046154b5565b612eb2565b348015610c7257600080fd5b506106b7610c813660046157cd565b6130df565b348015610c9257600080fd5b50600f54610ca09060ff1681565b6040516105db9190615816565b348015610cb957600080fd5b50610652610cc83660046154b5565b6130ea565b348015610cd957600080fd5b50601f5461061a565b348015610cee57600080fd5b5061061a60125481565b348015610d0457600080fd5b506106b7610d1336600461574f565b61333f565b348015610d2457600080fd5b506106b7610d33366004615823565b6133c9565b348015610d4457600080fd5b5060205461061a565b348015610d5957600080fd5b50601f54602054610814919082565b348015610d7457600080fd5b5061061a613401565b348015610d8957600080fd5b506106b7613419565b348015610d9e57600080fd5b506106b7610dad3660046158c5565b613496565b348015610dbe57600080fd5b506106b7610dcd3660046154b5565b61367f565b348015610dde57600080fd5b50610652610ded3660046154b5565b613842565b348015610dfe57600080fd5b5061061a61395c565b348015610e1357600080fd5b5061061a61398c565b348015610e2857600080fd5b5061061a60115481565b348015610e3e57600080fd5b506106b7613a24565b348015610e5357600080fd5b506106b7610e6236600461559b565b613bfb565b348015610e7357600080fd5b50601454601554146105cf565b348015610e8c57600080fd5b506106b7613c6f565b348015610ea157600080fd5b506106b7613cf2565b348015610eb657600080fd5b5061061a60195481565b348015610ecc57600080fd5b506024546105cf90600160a01b900460ff1681565b348015610eed57600080fd5b506106b7610efc366004615707565b613d71565b348015610f0d57600080fd5b506106b7610f1c3660046154b5565b613df9565b348015610f2d57600080fd5b506106b7610f3c36600461579d565b613e76565b348015610f4d57600080fd5b506106b7610f5c366004615969565b613f12565b348015610f6d57600080fd5b5061061a601e5481565b348015610f8357600080fd5b506106b7613fd3565b348015610f9857600080fd5b50600f54610ca090610100900460ff1681565b348015610fb757600080fd5b506106b7610fc6366004615995565b614050565b348015610fd757600080fd5b506105cf610fe6366004615a25565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561102057600080fd5b5061061a60145481565b34801561103657600080fd5b5061061a60135481565b34801561104c57600080fd5b506106b761105b36600461559b565b614125565b34801561106c57600080fd5b5061061a601a5481565b34801561108257600080fd5b5061061a60165481565b34801561109857600080fd5b5061061a7f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c981565b60006110cb826141c0565b92915050565b60006110db611928565b600c8111156110ec576110ec6155b8565b6002148061111257506110fd611928565b600c81111561110e5761110e6155b8565b6003145b1561111e575060205490565b611126611928565b600c811115611137576111376155b8565b6007148061115d5750611148611928565b600c811115611159576111596155b8565b6008145b15611169575060225490565b50600090565b600080601a546019546111829190615a69565b905060006015546017546111969190615a80565b9190911492915050565b6060600180546111af90615a98565b80601f01602080910402602001604051908101604052809291908181526020018280546111db90615a98565b80156112285780601f106111fd57610100808354040283529160200191611228565b820191906000526020600020905b81548152906001019060200180831161120b57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166112b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006112d7826128ea565b9050806001600160a01b0316836001600160a01b0316036113445760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016112a7565b336001600160a01b038216148061136057506113608133610fe6565b6113d25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016112a7565b6113dc83836141e5565b505050565b60006002602354036114055760405162461bcd60e51b81526004016112a790615ad2565b60026023553332146114545760405162461bcd60e51b815260206004820152601860248201527721b7b73a3930b1ba1034b9903737ba1030b63637bbb2b21760411b60448201526064016112a7565b600361145e611928565b600c81111561146f5761146f6155b8565b148061149357506008611480611928565b600c811115611491576114916155b8565b145b6114d55760405162461bcd60e51b815260206004820152601360248201527229b0b632903737ba1030bb30b4b630b136329760691b60448201526064016112a7565b60086114df611928565b600c8111156114f0576114f06155b8565b036115e7576012548411156115475760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420657863656564207472616e73616374696f6e206c696d6974732e0060448201526064016112a7565b611559611552612030565b8590614253565b3410156115785760405162461bcd60e51b81526004016112a790615b09565b60195461159961158661261c565b6115938761159360095490565b9061425f565b11156115e75760405162461bcd60e51b815260206004820152601b60248201527f507572636861736520657863656564206d617820737570706c792e000000000060448201526064016112a7565b60036115f1611928565b600c811115611602576116026155b8565b0361176657611611838361210a565b6116505760405162461bcd60e51b815260206004820152601060248201526f2737ba103bb434ba32b634b9ba32b21760811b60448201526064016112a7565b6011548411156116a25760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420657863656564207472616e73616374696f6e206c696d697473000060448201526064016112a7565b601354336000908152602c60205260409020546116c0908690615a80565b111561170e5760405162461bcd60e51b815260206004820152601f60248201527f4d696e74206c696d6974207065722077616c6c65742065786365656465642e0060448201526064016112a7565b60145460155461171e908661425f565b111561173c5760405162461bcd60e51b81526004016112a790615b36565b611747611552612030565b3410156117665760405162461bcd60e51b81526004016112a790615b09565b6003611770611928565b600c811115611781576117816155b8565b14806117a557506008611792611928565b600c8111156117a3576117a36155b8565b145b1561187f576117b4338561426b565b5060086117bf611928565b600c8111156117d0576117d06155b8565b036117e757836017546117e39190615a80565b6017555b60036117f1611928565b600c811115611802576118026155b8565b0361184457336000908152602c6020526040902054611822908590615a80565b336000908152602c6020526040902055601554611840908590615a80565b6015555b6024546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561187d573d6000803e3d6000fd5b505b506001806023559392505050565b6000546001600160a01b031633146118b75760405162461bcd60e51b81526004016112a790615b7a565b6001600160a01b0381166118ca57600080fd5b601080546001600160a01b0383166001600160a01b03199091168117909155600f805463ff000000191663010000001790556040517f5b92f2f101ec36b062768cd1330146da74961809b300919c88c6853ca703261590600090a250565b600080601a5460195461193b9190615a69565b9050600060155460175461194f9190615a80565b90506000600f54610100900460ff16600281111561196f5761196f6155b8565b1415801561199357506002600f5460ff166002811115611991576119916155b8565b145b156119a157600c9250505090565b6000600f54610100900460ff1660028111156119bf576119bf6155b8565b141580156119e357506001600f5460ff1660028111156119e1576119e16155b8565b145b156119f157600b9250505090565b6002600f54610100900460ff166002811115611a0f57611a0f6155b8565b148015611a1b57508181145b15611a2957600a9250505090565b6000600f54610100900460ff166002811115611a4757611a476155b8565b03611a555760009250505090565b6002600f54610100900460ff166002811115611a7357611a736155b8565b148015611a81575060225415155b8015611a8e575060225443115b15611a9c5760099250505090565b6002600f54610100900460ff166002811115611aba57611aba6155b8565b148015611ac8575060215415155b8015611ad657506021544310155b15611ae45760089250505090565b6002600f54610100900460ff166002811115611b0257611b026155b8565b148015611b10575060215415155b8015611b1d575060215443105b8015611b2a575060205443115b15611b385760079250505090565b6002600f54610100900460ff166002811115611b5657611b566155b8565b148015611b635750602154155b8015611b70575060205443115b15611b7e5760069250505090565b6001600f54610100900460ff166002811115611b9c57611b9c6155b8565b148015611bac5750601454601554145b15611bba5760059250505090565b6001600f54610100900460ff166002811115611bd857611bd86155b8565b148015611be6575060205415155b8015611bf3575060205443115b15611c015760049250505090565b6001600f54610100900460ff166002811115611c1f57611c1f6155b8565b148015611c2d5750601f5415155b8015611c3b5750601f544310155b15611c495760039250505090565b6001600f54610100900460ff166002811115611c6757611c676155b8565b148015611c755750601f5415155b8015611c825750601f5443105b15611c905760029250505090565b6001600f54610100900460ff166002811115611cae57611cae6155b8565b148015611cbb5750601f54155b15611cc95760019250505090565b60009250505090565b6024805460405163673e156160e11b81523360048201526000926001600160a01b039092169163ce7c2ac29101602060405180830381865afa158015611d1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d409190615baf565b11611d815760405162461bcd60e51b81526020600482015260116024820152703737ba10309039b430b932b437b63232b960791b60448201526064016112a7565b336001600160a01b0382161480611da257506000546001600160a01b031633145b611de75760405162461bcd60e51b81526020600482015260166024820152752932b632b0b9b29d103737903832b936b4b9b9b4b7b760511b60448201526064016112a7565b60248054604051631916558760e01b81526001600160a01b0384811660048301529091169163191655879101600060405180830381600087803b158015611e2d57600080fd5b505af1158015611e41573d6000803e3d6000fd5b5050505050565b600f5462010000900460ff168015611e715750600f54600160201b90046001600160a01b031633145b611e8d5760405162461bcd60e51b81526004016112a790615bc8565b600f805461ff0019166102001790556040517fca29b392f61fad3260f009b6fc1de9d8efda05563601b6c91396b795eeefff2e90600090a1565b611ed133826142f6565b611eed5760405162461bcd60e51b81526004016112a790615bf8565b6113dc8383836143ed565b6000546001600160a01b03163314611f225760405162461bcd60e51b81526004016112a790615b7a565b6001600160a01b038116611f3557600080fd5b600f805462ff0000196001600160a01b038416600160201b81029190911663ff010000600160c01b03199092169190911762010000179091556040517fa508d3b137dbcdf7e06f84833fe4aca137451e1e3309f454a207d8fb85c2ccd890600090a250565b6000611fa5836129de565b82106120075760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016112a7565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000600361203c611928565b600c81111561204d5761204d6155b8565b03612059575060165490565b6008612063611928565b600c811115612074576120746155b8565b0361210357602454600160a01b900460ff166120915750601d5490565b6021546000906120a19043615a69565b905060006120c6601b546120c0601e548561425390919063ffffffff16565b90614594565b90506120df601c54601d546145a090919063ffffffff16565b81106120ef57601c549250505090565b601d546120fc90826145a0565b9250505090565b50601d5490565b600b546000906001600160a01b031661215e5760405162461bcd60e51b81526020600482015260166024820152753bb434ba32b634b9ba103737ba1032b730b13632b21760511b60448201526064016112a7565b600b546001600160a01b031661217484846145ac565b6001600160a01b0316149392505050565b602f805461219290615a98565b80601f01602080910402602001604051908101604052809291908181526020018280546121be90615a98565b801561220b5780601f106121e05761010080835404028352916020019161220b565b820191906000526020600020905b8154815290600101906020018083116121ee57829003601f168201915b505050505081565b600f546301000000900460ff16801561223657506010546001600160a01b031633145b6122525760405162461bcd60e51b81526004016112a790615c49565b6040514790339082156108fc029083906000818181858888f19350505050158015612281573d6000803e3d6000fd5b506040518181527f807631352cb3389b100202fae783b0b18fedc90bd3a438433796cb89462f4fad906020015b60405180910390a150565b600f5462010000900460ff1680156122e25750600f54600160201b90046001600160a01b031633145b6122fe5760405162461bcd60e51b81526004016112a790615bc8565b601a8190556040518181527fe1fb8f58d0fe8f41debc65095588c6530f5b3c96964aee78a164712c7ab7cb3f906020016122ae565b6113dc838383604051806020016040528060008152506133c9565b600f5462010000900460ff1680156123775750600f54600160201b90046001600160a01b031633145b6123935760405162461bcd60e51b81526004016112a790615bc8565b600f805460ff191690556040517f4f0f641a7e3d2c654d00279745eb7cf977b86891e3c7dd11cf315972d02089ce90600090a1565b6060602f80546111af90615a98565b60006123e260095490565b82106124455760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016112a7565b6009828154811061245857612458615c79565b90600052602060002001549050919050565b60008060285411801561247f57506000602754115b801561248c575060275443115b905090565b600f546301000000900460ff1680156124b457506010546001600160a01b031633145b6124d05760405162461bcd60e51b81526004016112a790615c49565b80516124e390602f90602084019061537e565b507f046f9884af089932879d0fd71ed564287ec681b1f36c2671046b7d38455c4cee816040516122ae91906154a2565b600f5462010000900460ff16801561253c5750600f54600160201b90046001600160a01b031633145b6125585760405162461bcd60e51b81526004016112a790615bc8565b60148190556040518181527f7c416455591047caa05876a4b574da92570d3402cc091a549a87b40434833f0a906020016122ae565b602e805461219290615a98565b6000546001600160a01b031633146125c45760405162461bcd60e51b81526004016112a790615b7a565b6040516001600160a01b038216907fa85a8f69b8386043e9a2a9583184a456edfc2b0f7aa3f012334a5f9bdd2b2e8890600090a26001600160a01b03166000908152602b60205260409020805460ff19166001179055565b6000601854601a5461248c9190615a69565b60006002602354036126525760405162461bcd60e51b81526004016112a790615ad2565b60026023553332146126a15760405162461bcd60e51b815260206004820152601860248201527721b7b73a3930b1ba1034b9903737ba1030b63637bbb2b21760411b60448201526064016112a7565b60036126ab611928565b600c8111156126bc576126bc6155b8565b146126ff5760405162461bcd60e51b815260206004820152601360248201527229b0b632903737ba1030bb30b4b630b136329760691b60448201526064016112a7565b6003612709611928565b600c81111561271a5761271a6155b8565b036128db576127298383612cbf565b61276b5760405162461bcd60e51b81526020600482015260136024820152722737ba1027a3903bb434ba32b634b9ba32b21760691b60448201526064016112a7565b336000908152602d6020526040902054156127be5760405162461bcd60e51b815260206004820152601360248201527220b63932b0b23c9021b630b4b6b2b21027a39760691b60448201526064016112a7565b6014546015546127cf90600161425f565b11156127ed5760405162461bcd60e51b81526004016112a790615b36565b6127f5612030565b3410156128145760405162461bcd60e51b81526004016112a790615b09565b60405133907f2862c8db56386bda6e229cbaeca8f93cfce5b587ff57f377a37bae03dbfae58b90600090a2336000908152602d602052604090205461285a906001615a80565b336000908152602d6020526040902055601554612878906001615a80565b601555602954612889906001615a80565b60295561289733600161426b565b506024546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156128d1573d6000803e3d6000fd5b50600190506128df565b5060005b600160235592915050565b6000818152600360205260408120546001600160a01b0316806110cb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016112a7565b600f5462010000900460ff16801561298a5750600f54600160201b90046001600160a01b031633145b6129a65760405162461bcd60e51b81526004016112a790615bc8565b6024805460ff60a01b191690556040517f050c1c12c59ca346497fa402101729d7f0399460ab7989fcda9a4442de17329490600090a1565b60006001600160a01b038216612a495760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016112a7565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314612a8f5760405162461bcd60e51b81526004016112a790615b7a565b612a996000614680565b565b60006003612aa7611928565b600c811115612ab857612ab86155b8565b03612ac4575060145490565b6008612ace611928565b600c811115612adf57612adf6155b8565b0361116957601a54601554601954612af79190615a69565b61248c9190615a69565b60006003612b0d611928565b600c811115612b1e57612b1e6155b8565b03612b2a575060155490565b6008612b34611928565b600c811115612b4557612b456155b8565b03611169575060175490565b600f5462010000900460ff168015612b7a5750600f54600160201b90046001600160a01b031633145b612b965760405162461bcd60e51b81526004016112a790615bc8565b601d8190556040518181527ff959ca468c08c9457955f238a0ad6a31fc63f09b1e9bbafb4e409f19163bbe14906020016122ae565b600f5462010000900460ff168015612bf45750600f54600160201b90046001600160a01b031633145b612c105760405162461bcd60e51b81526004016112a790615bc8565b60168190556040518181527f8ea69d9e909b68c4f14f78ed645aa5bb6e5aaa632c8e2f365618f51f6e103732906020016122ae565b600f5462010000900460ff168015612c6e5750600f54600160201b90046001600160a01b031633145b612c8a5760405162461bcd60e51b81526004016112a790615bc8565b601b8190556040518181527fb554da5220087b9d9a11bb816eaf7e5e194964fae28c86915daf6dc936c0e895906020016122ae565b600c546000906001600160a01b0316612d0c5760405162461bcd60e51b815260206004820152600f60248201526e37b3903737ba1032b730b13632b21760891b60448201526064016112a7565b600c546001600160a01b031661217484846145ac565b600f5462010000900460ff168015612d4b5750600f54600160201b90046001600160a01b031633145b612d675760405162461bcd60e51b81526004016112a790615bc8565b8051601f81905560208083015180825560408051938452918301527ea742ba61fbc2be98048a2bafed46ef5f837610c64f7a83e332b100f6aab07591016122ae565b336001600160a01b037f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79521614612e215760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c0060448201526064016112a7565b612e2b82826146d0565b5050565b6060600280546111af90615a98565b6000546001600160a01b03163314612e685760405162461bcd60e51b81526004016112a790615b7a565b600c80546001600160a01b0319166001600160a01b0383169081179091556040517f08fc7f8a5f08ceb24448389487ad361d923391046bb4a7ae2ddb47df3f0a2e6d90600090a250565b600f546301000000900460ff168015612ed557506010546001600160a01b031633145b612ef15760405162461bcd60e51b81526004016112a790615c49565b602a54600003612f4e5760405162461bcd60e51b815260206004820152602260248201527f536574746c656d656e7420626c6f636b206e756d626572206e6f742065786973604482015261747360f01b60648201526084016112a7565b602a544311612fab5760405162461bcd60e51b815260206004820152602360248201527f536574746c656d656e7420626c6f636b206e756d626572206e6f7420726561636044820152621a195960ea1b60648201526084016112a7565b610100602a5443612fbc9190615a69565b106130095760405162461bcd60e51b815260206004820181905260248201527f536574746c656d656e7420626c6f636b206e756d62657220657870697265642e60448201526064016112a7565b602654604080516020810184905201604051602081830303815290604052805190602001201461306e5760405162461bcd60e51b815260206004820152601060248201526f125b98dbdc9c9958dd081cd958dc995d60821b60448201526064016112a7565b602a546040805191406020830152810182905260600160408051601f1981840301815290829052805160209182012060288190556024805460ff60a81b1916600160a81b17905582527fa11616ed471b9ccd06d8927063c25b76205dc06529d1174aa539c3ea70119ac191016122ae565b612e2b338383614754565b60606130fe6000546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461315c5760095482111561315c5760405162461bcd60e51b81526020600482015260116024820152702a37b5b2b7103737ba1032bc34b9ba399760791b60448201526064016112a7565b61316461246a565b61318b575050604080518082019091526007815266191959985d5b1d60ca1b602082015290565b6000601954600161319c9190615a80565b6001600160401b038111156131b3576131b361566a565b6040519080825280602002602001820160405280156131dc578160200160208202803683370190505b50905060015b601954811161321b57808282815181106131fe576131fe615c79565b6020908102919091010152613214600182615a80565b90506131e2565b5060025b60195481116133155760006019546028548360405160200161324b929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c61326e9190615ca5565b613279906001615a80565b90506002811015801561328e57506019548111155b15613302578281815181106132a5576132a5615c79565b60200260200101518383815181106132bf576132bf615c79565b60200260200101518484815181106132d9576132d9615c79565b602002602001018584815181106132f2576132f2615c79565b6020908102919091010191909152525b5061330e600182615a80565b905061321f565b5061333881848151811061332b5761332b615c79565b6020026020010151614822565b9392505050565b600f5462010000900460ff1680156133685750600f54600160201b90046001600160a01b031633145b6133845760405162461bcd60e51b81526004016112a790615bc8565b80516021819055602080830151602281905560408051938452918301527f70441bfeec4000206c01cb310438ec41bb281f98d8ea4f08f086e3329ff4eb2991016122ae565b6133d333836142f6565b6133ef5760405162461bcd60e51b81526004016112a790615bf8565b6133fb84848484614922565b50505050565b600061340c60095490565b60195461248c9190615a69565b600f5462010000900460ff1680156134425750600f54600160201b90046001600160a01b031633145b61345e5760405162461bcd60e51b81526004016112a790615bc8565b600f805460ff191660021790556040517f58abff1119ad7689f2843996246b31faf77e0a40545d5085ee99361a768a3f7d90600090a1565b6002602354036134b85760405162461bcd60e51b81526004016112a790615ad2565b6002602355336000908152602b602052604090205460ff1661351c5760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c792061697264726f7020726f6c6520616c6c6f7765642e00000000000060448201526064016112a7565b60195482516135379061352f9084614253565b600954611593565b11156135855760405162461bcd60e51b815260206004820152601860248201527f457863656564206d617820737570706c79206c696d69742e000000000000000060448201526064016112a7565b601a5482516135a1906135989084614253565b6018549061425f565b11156135e75760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103932b9b2b93b329760591b60448201526064016112a7565b81516135f7906135989083614253565b60185560005b825181101561363c5761362983828151811061361b5761361b615c79565b60200260200101518361426b565b508061363481615cb9565b9150506135fd565b507f08b3e41950189550b73643a90143efc8a526a17dc07e6abe0fb50ce7c10b50fc828260405161366e929190615cd2565b60405180910390a150506001602355565b600f546301000000900460ff1680156136a257506010546001600160a01b031633145b6136be5760405162461bcd60e51b81526004016112a790615c49565b602f80546136cb90615a98565b90506000036137265760405162461bcd60e51b815260206004820152602160248201527f54686520746f6b656e206261736520555249206973206e6f74207365742079656044820152601d60fa1b60648201526084016112a7565b602454600160a81b900460ff16156137805760405162461bcd60e51b815260206004820152601c60248201527f5468652072616e646f6d20616c7265616479207265717565737465640000000060448201526064016112a7565b602a54158061379e5750610100602a544361379b9190615a69565b10155b6137fd5760405162461bcd60e51b815260206004820152602a60248201527f736574746c656d656e74426c6f636b4e756d62657220626c6f636b20697320616044820152691b1c9958591e481cd95d60b21b60648201526084016112a7565b61380843600a615a80565b602a81905560268290556040519081527fa104373d7ad0275b7398cd498e6eaf204d08eaa63425eee58e116881600f225d906020016122ae565b606061384d60095490565b82111561388f5760405162461bcd60e51b815260206004820152601060248201526f2a37b5b2b7103737ba1032bc34b9ba1760811b60448201526064016112a7565b61389761246a565b61392b57602e80546138a890615a98565b80601f01602080910402602001604051908101604052809291908181526020018280546138d490615a98565b80156139215780601f106138f657610100808354040283529160200191613921565b820191906000526020600020905b81548152906001019060200180831161390457829003601f168201915b50505050506110cb565b602f613936836130ea565b604051602001613947929190615d3f565b60405160208183030381529060405292915050565b60006003613968611928565b600c811115613979576139796155b8565b14613985575060125490565b5060115490565b6000613996611928565b600c8111156139a7576139a76155b8565b600214806139cd57506139b8611928565b600c8111156139c9576139c96155b8565b6003145b156139d95750601f5490565b6139e1611928565b600c8111156139f2576139f26155b8565b60071480613a185750613a03611928565b600c811115613a1457613a146155b8565b6008145b15611169575060215490565b600f5462010000900460ff168015613a4d5750600f54600160201b90046001600160a01b031633145b613a695760405162461bcd60e51b81526004016112a790615bc8565b602454600160a81b900460ff1615613ac35760405162461bcd60e51b815260206004820152601f60248201527f436861696e6c696e6b2056524620616c7265616479207265717565737465640060448201526064016112a7565b6040516370a0823160e01b8152306004820152671bc16d674ec80000907f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a0823190602401602060405180830381865afa158015613b31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b559190615baf565b1015613b975760405162461bcd60e51b8152602060048201526011602482015270496e73756666696369656e74204c494e4b60781b60448201526064016112a7565b613bab602554671bc16d674ec80000614955565b506024805460ff60a81b1916600160a81b1790556040517f8bcef1354992d6b49befbd8ce23b2578ce493191f74c32b543d2f177962a139f90613bf19042815260200190565b60405180910390a1565b6000546001600160a01b03163314613c255760405162461bcd60e51b81526004016112a790615b7a565b600b80546001600160a01b0319166001600160a01b0383169081179091556040517fb225ee5631f7970f6bede33802c049395e151c82713461944770e239f324d15390600090a250565b600f5462010000900460ff168015613c985750600f54600160201b90046001600160a01b031633145b613cb45760405162461bcd60e51b81526004016112a790615bc8565b6024805460ff60a01b1916600160a01b1790556040517f47b2c4e2d3f2f2f7086b4c02b1dbf0986f42bdfe123f50b37756197769495be690600090a1565b600f5462010000900460ff168015613d1b5750600f54600160201b90046001600160a01b031633145b613d375760405162461bcd60e51b81526004016112a790615bc8565b600f805461ff0019166101001790556040517f0913c47876f976a46ce9674a2e5a22679ebf61b03b7a333913652272a9262c7790600090a1565b600f5462010000900460ff168015613d9a5750600f54600160201b90046001600160a01b031633145b613db65760405162461bcd60e51b81526004016112a790615bc8565b8051613dc990602e90602084019061537e565b507f791a768a5b9557254d91daf128b9a720119cf95e342b163b85210b53a9ead7a9816040516122ae91906154a2565b600f5462010000900460ff168015613e225750600f54600160201b90046001600160a01b031633145b613e3e5760405162461bcd60e51b81526004016112a790615bc8565b6040518181527f9ddcb1d2300d94c11e310fcb4f446426b42f1926ed0763f9cb24ed5b0c54d8a39060200160405180910390a1602755565b600f5462010000900460ff168015613e9f5750600f54600160201b90046001600160a01b031633145b613ebb5760405162461bcd60e51b81526004016112a790615bc8565b601d54811115613eca57600080fd5b601c829055601e81905560408051838152602081018390527f204ef244ed872a9029be787cf59036a2fe59f33439b25bf80bab6449af8036ac91015b60405180910390a15050565b600f5462010000900460ff168015613f3b5750600f54600160201b90046001600160a01b031633145b613f575760405162461bcd60e51b81526004016112a790615bc8565b60008311613f6457600080fd5b60008211613f7157600080fd5b82811115613f7e57600080fd5b60118390556012829055601381905560408051848152602081018490529081018290527f0a64a4deb1fa0ac7276d3f9e81a6252e7815e6d11f77c34d7bd5217de36d43919060600160405180910390a1505050565b600f5462010000900460ff168015613ffc5750600f54600160201b90046001600160a01b031633145b6140185760405162461bcd60e51b81526004016112a790615bc8565b600f805460ff191660011790556040517f6d4e2212f1a4fcfebfe8fd91368752c56e02d80a28c18c5cce3d812cfcbcb4a790600090a1565b600f5462010000900460ff1680156140795750600f54600160201b90046001600160a01b031633145b6140955760405162461bcd60e51b81526004016112a790615bc8565b60005b8151811015612e2b578181815181106140b3576140b3615c79565b60200260200101517fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b556572076140fe8484815181106140f1576140f1615c79565b6020026020010151613842565b60405161410b91906154a2565b60405180910390a261411e600182615a80565b9050614098565b6000546001600160a01b0316331461414f5760405162461bcd60e51b81526004016112a790615b7a565b6001600160a01b0381166141b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016112a7565b6141bd81614680565b50565b60006001600160e01b0319821663780e9d6360e01b14806110cb57506110cb82614ad1565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061421a826128ea565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006133388284615df9565b60006133388284615a80565b6000805b828110156142ec57600061428260095490565b90506019548110156142d9576142a28561429d836001615a80565b614b21565b60405181906001600160a01b038716907fa512fb2532ca8587f236380171326ebb69670e86a2ba0c4412a3fcca4c3ada9b90600090a35b50806142e481615cb9565b91505061426f565b5060019392505050565b6000818152600360205260408120546001600160a01b031661436f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016112a7565b600061437a836128ea565b9050806001600160a01b0316846001600160a01b031614806143b55750836001600160a01b03166143aa84611232565b6001600160a01b0316145b806143e557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316614400826128ea565b6001600160a01b0316146144645760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016112a7565b6001600160a01b0382166144c65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016112a7565b6144d1838383614b3b565b6144dc6000826141e5565b6001600160a01b0383166000908152600460205260408120805460019290614505908490615a69565b90915550506001600160a01b0382166000908152600460205260408120805460019290614533908490615a80565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006133388284615e18565b60006133388284615a69565b600d54604080517f68e83002b91b0fd96d4df3566b5122221117e3ec6c2468fda594f6491f89b1c96020820152339181019190915260009182916060016040516020818303038152906040528051906020012060405160200161462692919061190160f01b81526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506143e584848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508593925050614b469050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b801561471957602881905560408051428152602081018490529081018290527f59e4c9bb1559d5420398abdcb1a7eb97cc4a7e27b2ae810b8d7f44fbc2327ffa90606001613f06565b600160285560408051428152602081018490527fd9b030358bf0114e16959cea6c935e1cb862740b4d1056049f91711662fb3f959101613f06565b816001600160a01b0316836001600160a01b0316036147b55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016112a7565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6060816000036148495750506040805180820190915260018152600360fc1b602082015290565b8160005b8115614873578061485d81615cb9565b915061486c9050600a83615e18565b915061484d565b6000816001600160401b0381111561488d5761488d61566a565b6040519080825280601f01601f1916602001820160405280156148b7576020820181803683370190505b5090505b84156143e5576148cc600183615a69565b91506148d9600a86615ca5565b6148e4906030615a80565b60f81b8183815181106148f9576148f9615c79565b60200101906001600160f81b031916908160001a90535061491b600a86615e18565b94506148bb565b61492d8484846143ed565b61493984848484614b6a565b6133fb5760405162461bcd60e51b81526004016112a790615e2c565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952848660006040516020016149c5929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016149f293929190615e7e565b6020604051808303816000875af1158015614a11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614a359190615ea5565b506000838152600e6020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a090910190925281519183019190912093879052919052614a91906001615a80565b6000858152600e60205260409020556143e58482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b60006001600160e01b031982166380ac58cd60e01b1480614b0257506001600160e01b03198216635b5e139f60e01b145b806110cb57506301ffc9a760e01b6001600160e01b03198316146110cb565b612e2b828260405180602001604052806000815250614c6b565b6113dc838383614c9e565b6000806000614b558585614d56565b91509150614b6281614dc4565b509392505050565b60006001600160a01b0384163b15614c6057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614bae903390899088908890600401615ec2565b6020604051808303816000875af1925050508015614be9575060408051601f3d908101601f19168201909252614be691810190615eff565b60015b614c46573d808015614c17576040519150601f19603f3d011682016040523d82523d6000602084013e614c1c565b606091505b508051600003614c3e5760405162461bcd60e51b81526004016112a790615e2c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506143e5565b506001949350505050565b614c758383614f7a565b614c826000848484614b6a565b6113dc5760405162461bcd60e51b81526004016112a790615e2c565b6001600160a01b038316614cf957614cf481600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b614d1c565b816001600160a01b0316836001600160a01b031614614d1c57614d1c83826150c8565b6001600160a01b038216614d33576113dc81615165565b826001600160a01b0316826001600160a01b0316146113dc576113dc8282615214565b6000808251604103614d8c5760208301516040840151606085015160001a614d8087828585615258565b94509450505050614dbd565b8251604003614db55760208301516040840151614daa868383615345565b935093505050614dbd565b506000905060025b9250929050565b6000816004811115614dd857614dd86155b8565b03614de05750565b6001816004811115614df457614df46155b8565b03614e415760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016112a7565b6002816004811115614e5557614e556155b8565b03614ea25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016112a7565b6003816004811115614eb657614eb66155b8565b03614f0e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016112a7565b6004816004811115614f2257614f226155b8565b036141bd5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016112a7565b6001600160a01b038216614fd05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016112a7565b6000818152600360205260409020546001600160a01b0316156150355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016112a7565b61504160008383614b3b565b6001600160a01b038216600090815260046020526040812080546001929061506a908490615a80565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016150d5846129de565b6150df9190615a69565b600083815260086020526040902054909150808214615132576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061517790600190615a69565b6000838152600a60205260408120546009805493945090928490811061519f5761519f615c79565b9060005260206000200154905080600983815481106151c0576151c0615c79565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806151f8576151f8615f1c565b6001900381819060005260206000200160009055905550505050565b600061521f836129de565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561528f575060009050600361533c565b8460ff16601b141580156152a757508460ff16601c14155b156152b8575060009050600461533c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561530c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166153355760006001925092505061533c565b9150600090505b94509492505050565b6000806001600160ff1b0383168161536260ff86901c601b615a80565b905061537087828885615258565b935093505050935093915050565b82805461538a90615a98565b90600052602060002090601f0160209004810192826153ac57600085556153f2565b82601f106153c557805160ff19168380011785556153f2565b828001600101855582156153f2579182015b828111156153f25782518255916020019190600101906153d7565b506153fe929150615402565b5090565b5b808211156153fe5760008155600101615403565b6001600160e01b0319811681146141bd57600080fd5b60006020828403121561543f57600080fd5b813561333881615417565b60005b8381101561546557818101518382015260200161544d565b838111156133fb5750506000910152565b6000815180845261548e81602086016020860161544a565b601f01601f19169290920160200192915050565b6020815260006133386020830184615476565b6000602082840312156154c757600080fd5b5035919050565b6001600160a01b03811681146141bd57600080fd5b600080604083850312156154f657600080fd5b8235615501816154ce565b946020939093013593505050565b60008083601f84011261552157600080fd5b5081356001600160401b0381111561553857600080fd5b602083019150836020828501011115614dbd57600080fd5b60008060006040848603121561556557600080fd5b8335925060208401356001600160401b0381111561558257600080fd5b61558e8682870161550f565b9497909650939450505050565b6000602082840312156155ad57600080fd5b8135613338816154ce565b634e487b7160e01b600052602160045260246000fd5b60208101600d83106155e2576155e26155b8565b91905290565b6000806000606084860312156155fd57600080fd5b8335615608816154ce565b92506020840135615618816154ce565b929592945050506040919091013590565b6000806020838503121561563c57600080fd5b82356001600160401b0381111561565257600080fd5b61565e8582860161550f565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156156a8576156a861566a565b604052919050565b60006001600160401b038311156156c9576156c961566a565b6156dc601f8401601f1916602001615680565b90508281528383830111156156f057600080fd5b828260208301376000602084830101529392505050565b60006020828403121561571957600080fd5b81356001600160401b0381111561572f57600080fd5b8201601f8101841361574057600080fd5b6143e5848235602084016156b0565b60006040828403121561576157600080fd5b604051604081018181106001600160401b03821117156157835761578361566a565b604052823581526020928301359281019290925250919050565b600080604083850312156157b057600080fd5b50508035926020909101359150565b80151581146141bd57600080fd5b600080604083850312156157e057600080fd5b82356157eb816154ce565b915060208301356157fb816157bf565b809150509250929050565b600381106141bd576141bd6155b8565b602081016155e283615806565b6000806000806080858703121561583957600080fd5b8435615844816154ce565b93506020850135615854816154ce565b92506040850135915060608501356001600160401b0381111561587657600080fd5b8501601f8101871361588757600080fd5b615896878235602084016156b0565b91505092959194509250565b60006001600160401b038211156158bb576158bb61566a565b5060051b60200190565b600080604083850312156158d857600080fd5b82356001600160401b038111156158ee57600080fd5b8301601f810185136158ff57600080fd5b8035602061591461590f836158a2565b615680565b82815260059290921b8301810191818101908884111561593357600080fd5b938201935b8385101561595a57843561594b816154ce565b82529382019390820190615938565b98969091013596505050505050565b60008060006060848603121561597e57600080fd5b505081359360208301359350604090920135919050565b600060208083850312156159a857600080fd5b82356001600160401b038111156159be57600080fd5b8301601f810185136159cf57600080fd5b80356159dd61590f826158a2565b81815260059190911b820183019083810190878311156159fc57600080fd5b928401925b82841015615a1a57833582529284019290840190615a01565b979650505050505050565b60008060408385031215615a3857600080fd5b8235615a43816154ce565b915060208301356157fb816154ce565b634e487b7160e01b600052601160045260246000fd5b600082821015615a7b57615a7b615a53565b500390565b60008219821115615a9357615a93615a53565b500190565b600181811c90821680615aac57607f821691505b602082108103615acc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526013908201527224b739bab33334b1b4b2b73a10333ab732399760691b604082015260600190565b60208082526024908201527f50757263686173652065786365656420707269766174652073616c65206361706040820152633832b21760e11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215615bc157600080fd5b5051919050565b60208082526016908201527527b7363c9037b832b930ba37b91030b63637bbb2b21760511b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527527b7363c9033b7bb32b93737b91030b63637bbb2b21760511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b600082615cb457615cb4615c8f565b500690565b600060018201615ccb57615ccb615a53565b5060010190565b604080825283519082018190526000906020906060840190828701845b82811015615d145781516001600160a01b031684529284019290840190600101615cef565b50505092019290925292915050565b60008151615d3581856020860161544a565b9290920192915050565b600080845481600182811c915080831680615d5b57607f831692505b60208084108203615d7a57634e487b7160e01b86526022600452602486fd5b818015615d8e5760018114615d9f57615dcc565b60ff19861689528489019650615dcc565b60008b81526020902060005b86811015615dc45781548b820152908501908301615dab565b505084890196505b505050505050615df0615ddf8286615d23565b64173539b7b760d91b815260050190565b95945050505050565b6000816000190483118215151615615e1357615e13615a53565b500290565b600082615e2757615e27615c8f565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60018060a01b0384168152826020820152606060408201526000615df06060830184615476565b600060208284031215615eb757600080fd5b8151613338816157bf565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615ef590830184615476565b9695505050505050565b600060208284031215615f1157600080fd5b815161333881615417565b634e487b7160e01b600052603160045260246000fdfea26469706673582212208fe851e0ff1621f1fb8f1d01b1555f03e6ef387719784415bcef9300e4e6411f64736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000214e8348c4f00000000000000000000000000000000000000000000000000000905438e60010000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000002710000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af44500000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000b55676c792050656f706c65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000355504700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000080000000000000000000000008f342d4b90ed95a759b87dbf44b1e8f256679197000000000000000000000000e0a0262ac02312ba25d4b963e8375dac7bb173e2000000000000000000000000485b2d34d8b98d14e1c1437a2694f6d506e2421d00000000000000000000000048a986d9235aaef9296b6ec30756719dd8dc5b9400000000000000000000000011011f9f7f78180b72b2a89eb15109e0d34293dd000000000000000000000000a5f0faeb024c5b820ff25a86f994c1ac5ae2bde30000000000000000000000006c993e357e07706e05970f26dfa726f7c861fa3c0000000000000000000000007bd4da4e1c96bdfaafa69f00e5c523041228c0bd0000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000002

-----Decoded View---------------
Arg [0] : _privateSalePrice (uint256): 150000000000000000
Arg [1] : _publicSalePrice (uint256): 650000000000000000
Arg [2] : name (string): Ugly People
Arg [3] : symbol (string): UPG
Arg [4] : _maxSupply (uint256): 10000
Arg [5] : chainlink (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [6] : revenueShare (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
33 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000214e8348c4f0000
Arg [1] : 0000000000000000000000000000000000000000000000000905438e60010000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [5] : 000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952
Arg [6] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [7] : aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [8] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [10] : 55676c792050656f706c65000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 5550470000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [16] : 0000000000000000000000008f342d4b90ed95a759b87dbf44b1e8f256679197
Arg [17] : 000000000000000000000000e0a0262ac02312ba25d4b963e8375dac7bb173e2
Arg [18] : 000000000000000000000000485b2d34d8b98d14e1c1437a2694f6d506e2421d
Arg [19] : 00000000000000000000000048a986d9235aaef9296b6ec30756719dd8dc5b94
Arg [20] : 00000000000000000000000011011f9f7f78180b72b2a89eb15109e0d34293dd
Arg [21] : 000000000000000000000000a5f0faeb024c5b820ff25a86f994c1ac5ae2bde3
Arg [22] : 0000000000000000000000006c993e357e07706e05970f26dfa726f7c861fa3c
Arg [23] : 0000000000000000000000007bd4da4e1c96bdfaafa69f00e5c523041228c0bd
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [28] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [29] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [30] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000002


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.