ETH Price: $3,385.56 (-1.78%)
Gas: 1 Gwei

Token

Uniqly Genesis Physical Collection (UNIQGENESIS)
 

Overview

Max Total Supply

5,794 UNIQGENESIS

Holders

1,345

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
lullek.eth
Balance
1 UNIQGENESIS
0x0b85bd1e45c84fe62556a7a351a101c9601c2be3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Uniqly Genesis Collection is the first in the industry, an exclusive collection of 5800 randomly generated NFT shirt-shaped jellies. Each of the items from the collection can be redeemed for the corresponding physical item, metaverse wearable, and AR object.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UniqGenesis

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 23 : UniqGenesis.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;

import "./utils/ERC721/ERC721Claimable.sol";
import "./utils/VRF/VRFConsumerBase.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract UniqGenesis is ERC721Claimable, VRFConsumerBase {

    // ----- EVENTS ----- //
    event PrizeCollected(address indexed _winner, uint256 _tokenId);

    // ----- VARIABLES ----- //
    //Sale
    uint256 internal constant _maxUniqly = 10000;
    bool internal _saleStarted;
    uint256 internal _tokenPrice;
    

    //VRF + Prizes
    bytes32 internal immutable keyHash;
    uint256 internal immutable fee;
    uint256 public randomResult;
    address[] public winners;

    // ----- CONSTRUCTOR ----- //
    constructor(
        string memory _bURI,
        string memory _name,
        string memory _symbol,
        address _vrfCoordinator,
        address _link,
        bytes32 _keyHash,
        uint256 _fee,
        address _proxyRegistryAddress,
        address _claimingContractAddress,
        uint256 _tokenSalePrice,
        uint256 _royaltyFee
    )
        ERC721Claimable(_name, _symbol, _bURI, _proxyRegistryAddress,_claimingContractAddress, _royaltyFee)
        VRFConsumerBase(_vrfCoordinator, _link)
    {
        keyHash = _keyHash;
        fee = _fee;
        _tokenPrice = _tokenSalePrice;
    }

    // ----- VIEWS ----- //
    function contractURI() public pure returns (string memory) {
        return "https://uniqly.io/api/nft-genesis/";
    }

    function calculateEthPriceForExactUniqs(uint256 _number)
        external
        view
        returns (uint256)
    {
        return _number * _tokenPrice;
    }
    
    function getAllWinners() external view returns (address[] memory) {
        uint256 winnersCount = winners.length;
        if (winnersCount == 0) {
            return new address[](0);
        } else {
            address[] memory result = new address[](winnersCount);
            uint256 index;
            for (index = 0; index < winnersCount; index++) {
                result[index] = winners[index];
            }
            return result;
        }
    }

    function getWinner(uint256 _arrayKey) external view returns (address) {
        return winners[_arrayKey];
    }

    function getWinnersCount() external view returns (uint256) {
        return winners.length;
    }

    function checkWin(uint256 _tokenId) external view returns (bool) {
        return _isWinner(_tokenId);
    }

        function isAlreadyRececeivedPrize(address _potWinner)
        external
        view
        returns (bool)
    {
        return (_isAlreadyRececeivedPrize(_potWinner));
    }

    function _isAlreadyRececeivedPrize(address _potWinner)
        internal
        view
        returns (bool)
    {
        uint256 i;
        uint256 winnersCount = winners.length;
        for (i = 0; i < winnersCount; i++) {
            if (winners[i] == _potWinner) return true;
        }
        return false;
    }

    // ----- PUBLIC METHODS ----- //
    //emits Transfer event
    function mintUniqly(uint256 numUniqlies) external payable {
        require(_saleStarted, "Sale not started yet");
        uint256 requiredValue = numUniqlies * _tokenPrice;
        uint256 mintIndex = totalSupply();
        require(msg.value >= requiredValue, "Not enough ether");
        require(
            (numUniqlies + mintIndex) <= _maxUniqly,
            "You cannot buy that many tokens"
        );

        for (uint256 i = 0; i < numUniqlies; i++) {
            _safeMint(msg.sender, mintIndex);
            mintIndex++;
        }
        // send back ETH if one overpay by accident
        if (requiredValue < msg.value) {
            payable(msg.sender).transfer(msg.value - requiredValue);
        }
    }

    function collectPrize(uint256 _tokenId) external {
        require(ownerOf(_tokenId) == msg.sender, "Ownership needed");
        require(_isWinner(_tokenId), "You did not win");
        require(
            !_isAlreadyRececeivedPrize(msg.sender),
            "Already received a prize"
        );
        require(winners.length < 10, "Prize limit reached");
        winners.push(msg.sender);
        emit PrizeCollected(msg.sender, _tokenId);
        payable(msg.sender).transfer(1 ether);
    }

    receive() external payable {}

    // ----- PRIVATE METHODS ----- //
    function fulfillRandomness(bytes32, uint256 randomness) internal override {
        randomResult = randomness;
    }

    function _isWinner(uint256 id) internal view returns (bool) {
        require(randomResult > 0, "Random must be initiated");
        uint256 result = (
            uint256(keccak256(abi.encodePacked(id, randomResult)))
        ) % 10000;
        if (result <= 20) return true;
        return false;
    }

    // ----- OWNERS METHODS ----- //
    function getRandomNumber(uint256 adminProvidedSeed)
        external
        onlyOwner
        returns (bytes32)
    {
        require(totalSupply() >= _maxUniqly, "Sale must be ended");
        require(randomResult == 0, "Random number already initiated");
        require(address(this).balance >= 10 ether, "min 10 ETH balance required");
        require(
            LINK.balanceOf(address(this)) >= fee,
            "Not enough LINK"
        );
        return requestRandomness(keyHash, fee, adminProvidedSeed);
    }

    function batchMintAsOwner(
        uint[] memory _ids,
        address[] memory _addresses
    ) external onlyOwner {
        uint len = _ids.length;
        require(len == _addresses.length, "Arrays length");
        uint256 i = 0;
        for (i = 0; i < len; i++) {
            _safeMint(_addresses[i], _ids[i]);
        }
    }

    function editSaleStatus(bool _isEnable) external onlyOwner{
        _saleStarted = _isEnable;
    }

    function withdrawAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function recoverERC20(address token) external onlyOwner {
        uint256 val = IERC20(token).balanceOf(address(this));
        require(val > 0, "Nothing to recover");
        // use interface that not return value (USDT case)
        Ierc20(token).transfer(owner(), val);
    }

    function setRandomResualAsAdmin(uint256 _newRandomResult) external onlyOwner{
        require(randomResult == 0, "Random number already initiated");
        randomResult = _newRandomResult;
    }
    
    function editTokenPrice(uint256 _newPrice) external onlyOwner{
        _tokenPrice = _newPrice;
    }

    function editTokenUri(string memory _ttokenUri) external onlyOwner {
        _token_uri = _ttokenUri;
    }
}

interface Ierc20 {
    function transfer(address, uint256) external;
}

File 2 of 23 : ERC721Claimable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.6;

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

import "../common/meta-transactions/ContentMixin.sol";
import "../common/meta-transactions/NativeMetaTransaction.sol";

contract OwnableDelegateProxy {}

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

abstract contract ERC721Claimable is
    ContextMixin,
    ERC721Enumerable,
    NativeMetaTransaction,
    Ownable
{
    // ----- VARIABLES ----- //
    address proxyRegistryAddress;
    string internal _token_uri;
    address internal _claimingAddress;
    string public METADATA_PROVENANCE_HASH;
    uint256 public ROYALTY_FEE;

    // ----- EVENTS ----- //
    event ReceivedRoyalties(
        address indexed _royaltyRecipient,
        address indexed _buyer,
        uint256 indexed _tokenId,
        address _tokenPaid,
        uint256 _amount
    );

    // ----- CONSTRUCTOR ----- //
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri,
        address _proxyRegistryAddress,
        address _claimingContractAddress,
        uint256 _royaltyFee
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        _token_uri = _uri;
        _initializeEIP712(_name);
        _claimingAddress = _claimingContractAddress;
        ROYALTY_FEE = _royaltyFee;
    }

    // ----- VIEWS ----- //
    function baseTokenURI() public view virtual returns (string memory){
        return _token_uri;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return
            string(
                abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId))
            );
    }

    function getClaimerAddress() external view returns (address) {
        return _claimingAddress;
    }

    function royaltyInfo(uint256)
        external
        view
        returns (address receiver, uint256 amount)
    {
        return (owner(), ROYALTY_FEE);
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function _msgSender() internal view override returns (address sender) {
        return ContextMixin.msgSender();
    }

    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    // ----- PUBLIC METHODS ----- //
    function burn(uint256 _tokenId) external {
        if (msg.sender != _claimingAddress) {
            require(
                _isApprovedOrOwner(msg.sender, _tokenId),
                "Ownership or approval required"
            );
        }
        _burn(_tokenId);
    }

    function receivedRoyalties(
        address,
        address _buyer,
        uint256 _tokenId,
        address _tokenPaid,
        uint256 _amount
    ) external {
        emit ReceivedRoyalties(owner(), _buyer, _tokenId, _tokenPaid, _amount);
    }

    // ----- OWNERS METHODS ----- //
    function editClaimingAdress(address _newAddress) external onlyOwner {
        _claimingAddress = _newAddress;
    }

    function editRoyaltyFee(uint256 _newFee) external onlyOwner{
        ROYALTY_FEE = _newFee;
    }

    function setProvenanceHash(string memory _hash) external onlyOwner {
        METADATA_PROVENANCE_HASH = _hash;
    }
}

File 3 of 23 : ContentMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 4 of 23 : NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress]++;

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

File 5 of 23 : EIP712Base.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {Initializable} from "./Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

File 6 of 23 : Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

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

import "./SafeMathChainlink.sol";

import "./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 {

  using SafeMathChainlink for uint256;

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

  /**
   * @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
   * @param _seed seed mixed into the input of the VRF.
   *
   * @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, uint256 _seed)
    internal returns (bytes32 requestId)
  {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, _seed));
    // 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, _seed, 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].add(1);
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface immutable internal LINK;
  address immutable private vrfCoordinator;

  // Nonces for each VRF key from which randomness has been requested.
  //
  // Must stay in sync with VRFCoordinator[_keyHash][this]
  mapping(bytes32 /* keyHash */ => uint256 /* 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 8 of 23 : SafeMathChainlink.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMathChainlink {
  /**
    * @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) {
    uint256 c = a + b;
    require(c >= a, "SafeMath: addition overflow");

    return c;
  }

  /**
    * @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) {
    require(b <= a, "SafeMath: subtraction overflow");
    uint256 c = a - b;

    return c;
  }

  /**
    * @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) {
    // 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-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }

  /**
    * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, "SafeMath: division by zero");
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
    * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
    * Reverts 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) {
    require(b != 0, "SafeMath: modulo by zero");
    return a % b;
  }
}

File 9 of 23 : 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 10 of 23 : 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 11 of 23 : IERC20.sol
// SPDX-License-Identifier: MIT

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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        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 12 of 23 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 13 of 23 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

File 16 of 23 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 17 of 23 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 18 of 23 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 19 of 23 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 20 of 23 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 21 of 23 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 22 of 23 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_bURI","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_vrfCoordinator","type":"address"},{"internalType":"address","name":"_link","type":"address"},{"internalType":"bytes32","name":"_keyHash","type":"bytes32"},{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"address","name":"_claimingContractAddress","type":"address"},{"internalType":"uint256","name":"_tokenSalePrice","type":"uint256"},{"internalType":"uint256","name":"_royaltyFee","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_winner","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"PrizeCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_royaltyRecipient","type":"address"},{"indexed":true,"internalType":"address","name":"_buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"_tokenPaid","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceivedRoyalties","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"batchMintAsOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"}],"name":"calculateEthPriceForExactUniqs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"checkWin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"collectPrize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"editClaimingAdress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"editRoyaltyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isEnable","type":"bool"}],"name":"editSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"editTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_ttokenUri","type":"string"}],"name":"editTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getAllWinners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"adminProvidedSeed","type":"uint256"}],"name":"getRandomNumber","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_arrayKey","type":"uint256"}],"name":"getWinner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWinnersCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_potWinner","type":"address"}],"name":"isAlreadyRececeivedPrize","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numUniqlies","type":"uint256"}],"name":"mintUniqly","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomResult","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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","name":"","type":"address"},{"internalType":"address","name":"_buyer","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_tokenPaid","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"receivedRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newRandomResult","type":"uint256"}],"name":"setRandomResualAsAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"winners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

610100604052600a805460ff191690553480156200001c57600080fd5b506040516200451b3803806200451b8339810160408190526200003f916200047a565b87878b8b8e888887858581600090805190602001906200006192919062000300565b5080516200007790600190602084019062000300565b505050620000946200008e6200012d60201b60201c565b62000149565b600e80546001600160a01b0319166001600160a01b0385161790558351620000c490600f90602087019062000300565b50620000d0866200019b565b601080546001600160a01b0319166001600160a01b03939093169290921790915560125550505050606091821b6001600160601b031990811660a052911b166080525060c094909452505060e05260155550620005e19350505050565b600062000144620001ff60201b6200243c1760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620001e45760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620001ef816200025e565b50600a805460ff19166001179055565b6000333014156200025857600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200025b9050565b50335b90565b6040518060800160405280604f8152602001620044cc604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b8280546200030e906200058e565b90600052602060002090601f0160209004810192826200033257600085556200037d565b82601f106200034d57805160ff19168380011785556200037d565b828001600101855582156200037d579182015b828111156200037d57825182559160200191906001019062000360565b506200038b9291506200038f565b5090565b5b808211156200038b576000815560010162000390565b80516001600160a01b0381168114620003be57600080fd5b919050565b600082601f830112620003d557600080fd5b81516001600160401b0380821115620003f257620003f2620005cb565b604051601f8301601f19908116603f011681019082821181831017156200041d576200041d620005cb565b816040528381526020925086838588010111156200043a57600080fd5b600091505b838210156200045e57858201830151818301840152908201906200043f565b83821115620004705760008385830101525b9695505050505050565b60008060008060008060008060008060006101608c8e0312156200049d57600080fd5b8b516001600160401b03811115620004b457600080fd5b620004c28e828f01620003c3565b60208e0151909c5090506001600160401b03811115620004e157600080fd5b620004ef8e828f01620003c3565b60408e0151909b5090506001600160401b038111156200050e57600080fd5b6200051c8e828f01620003c3565b9950506200052d60608d01620003a6565b97506200053d60808d01620003a6565b965060a08c0151955060c08c015194506200055b60e08d01620003a6565b93506200056c6101008d01620003a6565b92506101208c015191506101408c015190509295989b509295989b9093969950565b600181811c90821680620005a357607f821691505b60208210811415620005c557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160601c60c05160e051613e966200063660003960008181611b1b0152611c2501526000611c040152600081816115de0152612b3a015260008181611b3d0152612b0b0152613e966000f3fe6080604052600436106103545760003560e01c8063742af72b116101c6578063b88d4fde116100f7578063e8a3d48511610095578063f0cc3b851161006f578063f0cc3b85146109b7578063f2fde38b146109d7578063f449619e146109f7578063fadd308714610a1757600080fd5b8063e8a3d4851461096d578063e985e9c514610982578063f0c9dc60146109a257600080fd5b8063cef6d368116100d1578063cef6d368146108d7578063d547cfb714610916578063d955ec551461092b578063dc6b86271461094b57600080fd5b8063b88d4fde14610877578063be0d41b814610897578063c87b56dd146108b757600080fd5b806395d89b4111610164578063a22cb4651161013e578063a22cb465146107f7578063a2fb117514610817578063a4db625214610837578063b37217a41461085757600080fd5b806395d89b41146107a257806398fa734b146107b75780639e8c708e146107d757600080fd5b8063853828b6116101a0578063853828b61461072f5780638589ff45146107445780638da5cb5b1461076457806394985ddd1461078257600080fd5b8063742af72b146106c2578063834bb61b146106e25780638462151c1461070257600080fd5b80632d0335ab116102a057806342966c681161023e578063652489d411610218578063652489d41461064f578063661b1d2c1461066f57806370a082311461068d578063715018a6146106ad57600080fd5b806342966c68146105ef5780634f6ccce71461060f5780636352211e1461062f57600080fd5b80633408e4701161027a5780633408e470146105865780634129b2c91461059957806342619f66146105b957806342842e0e146105cf57600080fd5b80632d0335ab1461051a5780632f745c5914610550578063335477fc1461057057600080fd5b80630f7e59701161030d5780631df61141116102e75780631df61141146104a557806320379ee5146104c557806323b872dd146104da5780632ca40ed8146104fa57600080fd5b80630f7e597014610443578063109695231461047057806318160ddd1461049057600080fd5b806301ffc9a71461036057806306fdde0314610395578063081812fc146103b7578063095ea7b3146103ef5780630b75cef4146104115780630c53c51c1461043057600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b5061038061037b36600461388d565b610a2a565b60405190151581526020015b60405180910390f35b3480156103a157600080fd5b506103aa610a55565b60405161038c9190613b22565b3480156103c357600080fd5b506103d76103d236600461392d565b610ae7565b6040516001600160a01b03909116815260200161038c565b3480156103fb57600080fd5b5061040f61040a366004613745565b610b81565b005b34801561041d57600080fd5b506017545b60405190815260200161038c565b6103aa61043e3660046136c7565b610ca9565b34801561044f57600080fd5b506103aa604051806040016040528060018152602001603160f81b81525081565b34801561047c57600080fd5b5061040f61048b3660046138e4565b610e7b565b34801561049c57600080fd5b50600854610422565b3480156104b157600080fd5b5061040f6104c0366004613771565b610edb565b3480156104d157600080fd5b50600b54610422565b3480156104e657600080fd5b5061040f6104f5366004613591565b610fc5565b34801561050657600080fd5b5061038061051536600461353b565b610ffd565b34801561052657600080fd5b5061042261053536600461353b565b6001600160a01b03166000908152600c602052604090205490565b34801561055c57600080fd5b5061042261056b366004613745565b611008565b34801561057c57600080fd5b5061042260125481565b34801561059257600080fd5b5046610422565b3480156105a557600080fd5b506103d76105b436600461392d565b61109e565b3480156105c557600080fd5b5061042260165481565b3480156105db57600080fd5b5061040f6105ea366004613591565b6110ce565b3480156105fb57600080fd5b5061040f61060a36600461392d565b6110e9565b34801561061b57600080fd5b5061042261062a36600461392d565b61115d565b34801561063b57600080fd5b506103d761064a36600461392d565b6111f0565b34801561065b57600080fd5b5061040f61066a3660046138e4565b611267565b34801561067b57600080fd5b506010546001600160a01b03166103d7565b34801561069957600080fd5b506104226106a836600461353b565b6112c3565b3480156106b957600080fd5b5061040f61134a565b3480156106ce57600080fd5b5061040f6106dd36600461392d565b61139f565b3480156106ee57600080fd5b5061040f6106fd36600461392d565b6113ed565b34801561070e57600080fd5b5061072261071d36600461353b565b61143b565b60405161038c9190613aea565b34801561073b57600080fd5b5061040f6114fa565b34801561075057600080fd5b5061040f61075f3660046135d2565b611567565b34801561077057600080fd5b50600d546001600160a01b03166103d7565b34801561078e57600080fd5b5061040f61079d36600461386b565b6115d3565b3480156107ae57600080fd5b506103aa611651565b3480156107c357600080fd5b5061040f6107d236600461392d565b611660565b3480156107e357600080fd5b5061040f6107f236600461353b565b6116fe565b34801561080357600080fd5b5061040f610812366004613699565b61188d565b34801561082357600080fd5b506103d761083236600461392d565b61198f565b34801561084357600080fd5b5061038061085236600461392d565b6119b9565b34801561086357600080fd5b5061042261087236600461392d565b6119c4565b34801561088357600080fd5b5061040f61089236600461362d565b611c4a565b3480156108a357600080fd5b5061040f6108b2366004613831565b611c83565b3480156108c357600080fd5b506103aa6108d236600461392d565b611cdf565b3480156108e357600080fd5b506108f76108f236600461392d565b611d19565b604080516001600160a01b03909316835260208301919091520161038c565b34801561092257600080fd5b506103aa611d3a565b34801561093757600080fd5b5061040f61094636600461353b565b611d49565b34801561095757600080fd5b50610960611db4565b60405161038c9190613a9d565b34801561097957600080fd5b506103aa611e9d565b34801561098e57600080fd5b5061038061099d366004613558565b611ebd565b3480156109ae57600080fd5b506103aa611f8d565b3480156109c357600080fd5b506104226109d236600461392d565b61201b565b3480156109e357600080fd5b5061040f6109f236600461353b565b61202b565b348015610a0357600080fd5b5061040f610a1236600461392d565b6120e2565b61040f610a2536600461392d565b6122c2565b60006001600160e01b0319821663780e9d6360e01b1480610a4f5750610a4f82612499565b92915050565b606060008054610a6490613cf0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9090613cf0565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b8c826111f0565b9050806001600160a01b0316836001600160a01b03161415610bfa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b5c565b806001600160a01b0316610c0c6124e9565b6001600160a01b03161480610c285750610c288161099d6124e9565b610c9a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b5c565b610ca483836124f8565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610ce78782878787612566565b610d3d5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610b5c565b6001600160a01b0387166000908152600c60205260408120805491610d6183613d25565b91905055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610d9993929190613a0d565b60405180910390a1600080306001600160a01b0316888a604051602001610dc19291906139a7565b60408051601f1981840301815290829052610ddb9161398b565b6000604051808303816000865af19150503d8060008114610e18576040519150601f19603f3d011682016040523d82523d6000602084013e610e1d565b606091505b509150915081610e6f5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610b5c565b98975050505050505050565b610e836124e9565b6001600160a01b0316610e9e600d546001600160a01b031690565b6001600160a01b031614610ec45760405162461bcd60e51b8152600401610b5c90613b87565b8051610ed79060119060208401906133b8565b5050565b610ee36124e9565b6001600160a01b0316610efe600d546001600160a01b031690565b6001600160a01b031614610f245760405162461bcd60e51b8152600401610b5c90613b87565b815181518114610f665760405162461bcd60e51b815260206004820152600d60248201526c082e4e4c2f2e640d8cadccee8d609b1b6044820152606401610b5c565b60005b81811015610fbf57610fad838281518110610f8657610f86613d96565b6020026020010151858381518110610fa057610fa0613d96565b6020026020010151612656565b80610fb781613d25565b915050610f69565b50505050565b610fd6610fd06124e9565b82612670565b610ff25760405162461bcd60e51b8152600401610b5c90613bbc565b610ca483838361273f565b6000610a4f826128ea565b6000611013836112c3565b82106110755760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b5c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000601782815481106110b3576110b3613d96565b6000918252602090912001546001600160a01b031692915050565b610ca483838360405180602001604052806000815250611c4a565b6010546001600160a01b03163314611151576111053382612670565b6111515760405162461bcd60e51b815260206004820152601e60248201527f4f776e657273686970206f7220617070726f76616c20726571756972656400006044820152606401610b5c565b61115a81612959565b50565b600061116860085490565b82106111cb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b5c565b600882815481106111de576111de613d96565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b031680610a4f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b5c565b61126f6124e9565b6001600160a01b031661128a600d546001600160a01b031690565b6001600160a01b0316146112b05760405162461bcd60e51b8152600401610b5c90613b87565b8051610ed790600f9060208401906133b8565b60006001600160a01b03821661132e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b5c565b506001600160a01b031660009081526003602052604090205490565b6113526124e9565b6001600160a01b031661136d600d546001600160a01b031690565b6001600160a01b0316146113935760405162461bcd60e51b8152600401610b5c90613b87565b61139d6000612a00565b565b6113a76124e9565b6001600160a01b03166113c2600d546001600160a01b031690565b6001600160a01b0316146113e85760405162461bcd60e51b8152600401610b5c90613b87565b601255565b6113f56124e9565b6001600160a01b0316611410600d546001600160a01b031690565b6001600160a01b0316146114365760405162461bcd60e51b8152600401610b5c90613b87565b601555565b60606000611448836112c3565b9050806114695760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561148457611484613dac565b6040519080825280602002602001820160405280156114ad578160200160208202803683370190505b50905060005b82811015611461576114c58582611008565b8282815181106114d7576114d7613d96565b6020908102919091010152806114ec81613d25565b9150506114b3565b50919050565b6115026124e9565b6001600160a01b031661151d600d546001600160a01b031690565b6001600160a01b0316146115435760405162461bcd60e51b8152600401610b5c90613b87565b60405133904780156108fc02916000818181858888f1935050505061139d57600080fd5b82846001600160a01b0316611584600d546001600160a01b031690565b604080516001600160a01b0387811682526020820187905292909216917f096a55ec842afaa98cb78cb0352921e73c0d1caa9136309fa9c07f13f4a39a60910160405180910390a45050505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461164b5760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610b5c565b60165550565b606060018054610a6490613cf0565b6116686124e9565b6001600160a01b0316611683600d546001600160a01b031690565b6001600160a01b0316146116a95760405162461bcd60e51b8152600401610b5c90613b87565b601654156116f95760405162461bcd60e51b815260206004820152601f60248201527f52616e646f6d206e756d62657220616c726561647920696e69746961746564006044820152606401610b5c565b601655565b6117066124e9565b6001600160a01b0316611721600d546001600160a01b031690565b6001600160a01b0316146117475760405162461bcd60e51b8152600401610b5c90613b87565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561178957600080fd5b505afa15801561179d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c19190613946565b9050600081116118085760405162461bcd60e51b81526020600482015260126024820152712737ba3434b733903a37903932b1b7bb32b960711b6044820152606401610b5c565b816001600160a01b031663a9059cbb611829600d546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401600060405180830381600087803b15801561187157600080fd5b505af1158015611885573d6000803e3d6000fd5b505050505050565b6118956124e9565b6001600160a01b0316826001600160a01b031614156118f65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b5c565b80600560006119036124e9565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556119476124e9565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611983911515815260200190565b60405180910390a35050565b6017818154811061199f57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610a4f82612a52565b60006119ce6124e9565b6001600160a01b03166119e9600d546001600160a01b031690565b6001600160a01b031614611a0f5760405162461bcd60e51b8152600401610b5c90613b87565b612710611a1b60085490565b1015611a5e5760405162461bcd60e51b815260206004820152601260248201527114d85b19481b5d5cdd08189948195b99195960721b6044820152606401610b5c565b60165415611aae5760405162461bcd60e51b815260206004820152601f60248201527f52616e646f6d206e756d62657220616c726561647920696e69746961746564006044820152606401610b5c565b678ac7230489e80000471015611b065760405162461bcd60e51b815260206004820152601b60248201527f6d696e203130204554482062616c616e636520726571756972656400000000006044820152606401610b5c565b6040516370a0823160e01b81523060048201527f0000000000000000000000000000000000000000000000000000000000000000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b158015611b8757600080fd5b505afa158015611b9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bbf9190613946565b1015611bff5760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420656e6f756768204c494e4b60881b6044820152606401610b5c565b610a4f7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000084612b07565b611c5b611c556124e9565b83612670565b611c775760405162461bcd60e51b8152600401610b5c90613bbc565b610fbf84848484612c9a565b611c8b6124e9565b6001600160a01b0316611ca6600d546001600160a01b031690565b6001600160a01b031614611ccc5760405162461bcd60e51b8152600401610b5c90613b87565b6014805460ff1916911515919091179055565b6060611ce9611d3a565b611cf283612ccd565b604051602001611d039291906139de565b6040516020818303038152906040529050919050565b600080611d2e600d546001600160a01b031690565b60125491509150915091565b6060600f8054610a6490613cf0565b611d516124e9565b6001600160a01b0316611d6c600d546001600160a01b031690565b6001600160a01b031614611d925760405162461bcd60e51b8152600401610b5c90613b87565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b60175460609080611dd357505060408051600081526020810190915290565b60008167ffffffffffffffff811115611dee57611dee613dac565b604051908082528060200260200182016040528015611e17578160200160208202803683370190505b50905060005b82811015611e925760178181548110611e3857611e38613d96565b9060005260206000200160009054906101000a90046001600160a01b0316828281518110611e6857611e68613d96565b6001600160a01b039092166020928302919091019091015280611e8a81613d25565b915050611e1d565b5092915050565b5090565b6060604051806060016040528060228152602001613e3f60229139905090565b600e5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611f0a57600080fd5b505afa158015611f1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4291906138c7565b6001600160a01b03161415611f5b576001915050610a4f565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b60118054611f9a90613cf0565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc690613cf0565b80156120135780601f10611fe857610100808354040283529160200191612013565b820191906000526020600020905b815481529060010190602001808311611ff657829003601f168201915b505050505081565b600060155482610a4f9190613c8e565b6120336124e9565b6001600160a01b031661204e600d546001600160a01b031690565b6001600160a01b0316146120745760405162461bcd60e51b8152600401610b5c90613b87565b6001600160a01b0381166120d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b5c565b61115a81612a00565b336120ec826111f0565b6001600160a01b0316146121355760405162461bcd60e51b815260206004820152601060248201526f13dddb995c9cda1a5c081b995959195960821b6044820152606401610b5c565b61213e81612a52565b61217c5760405162461bcd60e51b815260206004820152600f60248201526e2cb7ba903234b2103737ba103bb4b760891b6044820152606401610b5c565b612185336128ea565b156121d25760405162461bcd60e51b815260206004820152601860248201527f416c72656164792072656365697665642061207072697a6500000000000000006044820152606401610b5c565b601754600a1161221a5760405162461bcd60e51b8152602060048201526013602482015272141c9a5e99481b1a5b5a5d081c995858da1959606a1b6044820152606401610b5c565b601780546001810182556000919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150180546001600160a01b031916339081179091556040518281527f79c99597ba23f96ba7d9b4729d81d5de16e368bfe8307fa890457fb7474ec98c9060200160405180910390a26040513390600090670de0b6b3a76400009082818181858883f19350505050158015610ed7573d6000803e3d6000fd5b60145460ff1661230b5760405162461bcd60e51b815260206004820152601460248201527314d85b19481b9bdd081cdd185c9d1959081e595d60621b6044820152606401610b5c565b60006015548261231b9190613c8e565b9050600061232860085490565b90508134101561236d5760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b41032ba3432b960811b6044820152606401610b5c565b61271061237a8285613c62565b11156123c85760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e6e6f74206275792074686174206d616e7920746f6b656e73006044820152606401610b5c565b60005b838110156123fd576123dd3383612656565b816123e781613d25565b92505080806123f590613d25565b9150506123cb565b5034821015610ca457336108fc6124148434613cad565b6040518115909202916000818181858888f19350505050158015610fbf573d6000803e3d6000fd5b60003330141561249357600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506124969050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b14806124ca57506001600160e01b03198216635b5e139f60e01b145b80610a4f57506301ffc9a760e01b6001600160e01b0319831614610a4f565b60006124f361243c565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061252d826111f0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166125cc5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610b5c565b60016125df6125da87612dcb565b612e48565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561262d573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b610ed7828260405180602001604052806000815250612e78565b6000818152600260205260408120546001600160a01b03166126e95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b5c565b60006126f4836111f0565b9050806001600160a01b0316846001600160a01b0316148061272f5750836001600160a01b031661272484610ae7565b6001600160a01b0316145b80611f855750611f858185611ebd565b826001600160a01b0316612752826111f0565b6001600160a01b0316146127ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b5c565b6001600160a01b03821661281c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b5c565b612827838383612eab565b6128326000826124f8565b6001600160a01b038316600090815260036020526040812080546001929061285b908490613cad565b90915550506001600160a01b0382166000908152600360205260408120805460019290612889908490613c62565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60175460009081905b8082101561294f57836001600160a01b03166017838154811061291857612918613d96565b6000918252602090912001546001600160a01b0316141561293d575060019392505050565b8161294781613d25565b9250506128f3565b5060009392505050565b6000612964826111f0565b905061297281600084612eab565b61297d6000836124f8565b6001600160a01b03811660009081526003602052604081208054600192906129a6908490613cad565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060165411612aa55760405162461bcd60e51b815260206004820152601860248201527f52616e646f6d206d75737420626520696e6974696174656400000000000000006044820152606401610b5c565b600061271083601654604051602001612ac8929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c612aeb9190613d40565b905060148111612afe5750600192915050565b50600092915050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634000aea07f0000000000000000000000000000000000000000000000000000000000000000858786604051602001612b76929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401612ba393929190613a76565b602060405180830381600087803b158015612bbd57600080fd5b505af1158015612bd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bf5919061384e565b5060008481526013602081815260408084205481518084018a905280830188905230606082015260808082018390528351808303909101815260a090910190925281519183019190912093889052919052612c51906001612f63565b600086815260136020526040902055612c918582604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b95945050505050565b612ca584848461273f565b612cb184848484612fc9565b610fbf5760405162461bcd60e51b8152600401610b5c90613b35565b606081612cf15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612d1b5780612d0581613d25565b9150612d149050600a83613c7a565b9150612cf5565b60008167ffffffffffffffff811115612d3657612d36613dac565b6040519080825280601f01601f191660200182016040528015612d60576020820181803683370190505b5090505b8415611f8557612d75600183613cad565b9150612d82600a86613d40565b612d8d906030613c62565b60f81b818381518110612da257612da2613d96565b60200101906001600160f81b031916908160001a905350612dc4600a86613c7a565b9450612d64565b6000604051806080016040528060438152602001613dfc6043913980516020918201208351848301516040808701518051908601209051612e2b950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612e53600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201612e2b565b612e8283836130da565b612e8f6000848484612fc9565b610ca45760405162461bcd60e51b8152600401610b5c90613b35565b6001600160a01b038316612f0657612f0181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612f29565b816001600160a01b0316836001600160a01b031614612f2957612f298382613228565b6001600160a01b038216612f4057610ca4816132c5565b826001600160a01b0316826001600160a01b031614610ca457610ca48282613374565b600080612f708385613c62565b905083811015612fc25760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b5c565b9392505050565b60006001600160a01b0384163b156130d257836001600160a01b031663150b7a02612ff26124e9565b8786866040518563ffffffff1660e01b81526004016130149493929190613a39565b602060405180830381600087803b15801561302e57600080fd5b505af192505050801561305e575060408051601f3d908101601f1916820190925261305b918101906138aa565b60015b6130b8573d80801561308c576040519150601f19603f3d011682016040523d82523d6000602084013e613091565b606091505b5080516130b05760405162461bcd60e51b8152600401610b5c90613b35565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f85565b506001611f85565b6001600160a01b0382166131305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b5c565b6000818152600260205260409020546001600160a01b0316156131955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b5c565b6131a160008383612eab565b6001600160a01b03821660009081526003602052604081208054600192906131ca908490613c62565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613235846112c3565b61323f9190613cad565b600083815260076020526040902054909150808214613292576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906132d790600190613cad565b600083815260096020526040812054600880549394509092849081106132ff576132ff613d96565b90600052602060002001549050806008838154811061332057613320613d96565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061335857613358613d80565b6001900381819060005260206000200160009055905550505050565b600061337f836112c3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546133c490613cf0565b90600052602060002090601f0160209004810192826133e6576000855561342c565b82601f106133ff57805160ff191683800117855561342c565b8280016001018555821561342c579182015b8281111561342c578251825591602001919060010190613411565b50611e999291505b80821115611e995760008155600101613434565b600067ffffffffffffffff83111561346257613462613dac565b613475601f8401601f1916602001613c0d565b905082815283838301111561348957600080fd5b828260208301376000602084830101529392505050565b600082601f8301126134b157600080fd5b813560206134c66134c183613c3e565b613c0d565b80838252828201915082860187848660051b89010111156134e657600080fd5b60005b8581101561350e5781356134fc81613dc2565b845292840192908401906001016134e9565b5090979650505050505050565b600082601f83011261352c57600080fd5b612fc283833560208501613448565b60006020828403121561354d57600080fd5b8135612fc281613dc2565b6000806040838503121561356b57600080fd5b823561357681613dc2565b9150602083013561358681613dc2565b809150509250929050565b6000806000606084860312156135a657600080fd5b83356135b181613dc2565b925060208401356135c181613dc2565b929592945050506040919091013590565b600080600080600060a086880312156135ea57600080fd5b85356135f581613dc2565b9450602086013561360581613dc2565b935060408601359250606086013561361c81613dc2565b949793965091946080013592915050565b6000806000806080858703121561364357600080fd5b843561364e81613dc2565b9350602085013561365e81613dc2565b925060408501359150606085013567ffffffffffffffff81111561368157600080fd5b61368d8782880161351b565b91505092959194509250565b600080604083850312156136ac57600080fd5b82356136b781613dc2565b9150602083013561358681613dd7565b600080600080600060a086880312156136df57600080fd5b85356136ea81613dc2565b9450602086013567ffffffffffffffff81111561370657600080fd5b6137128882890161351b565b9450506040860135925060608601359150608086013560ff8116811461373757600080fd5b809150509295509295909350565b6000806040838503121561375857600080fd5b823561376381613dc2565b946020939093013593505050565b6000806040838503121561378457600080fd5b823567ffffffffffffffff8082111561379c57600080fd5b818501915085601f8301126137b057600080fd5b813560206137c06134c183613c3e565b8083825282820191508286018a848660051b89010111156137e057600080fd5b600096505b848710156138035780358352600196909601959183019183016137e5565b509650508601359250508082111561381a57600080fd5b50613827858286016134a0565b9150509250929050565b60006020828403121561384357600080fd5b8135612fc281613dd7565b60006020828403121561386057600080fd5b8151612fc281613dd7565b6000806040838503121561387e57600080fd5b50508035926020909101359150565b60006020828403121561389f57600080fd5b8135612fc281613de5565b6000602082840312156138bc57600080fd5b8151612fc281613de5565b6000602082840312156138d957600080fd5b8151612fc281613dc2565b6000602082840312156138f657600080fd5b813567ffffffffffffffff81111561390d57600080fd5b8201601f8101841361391e57600080fd5b611f8584823560208401613448565b60006020828403121561393f57600080fd5b5035919050565b60006020828403121561395857600080fd5b5051919050565b60008151808452613977816020860160208601613cc4565b601f01601f19169290920160200192915050565b6000825161399d818460208701613cc4565b9190910192915050565b600083516139b9818460208801613cc4565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600083516139f0818460208801613cc4565b835190830190613a04818360208801613cc4565b01949350505050565b6001600160a01b03848116825283166020820152606060408201819052600090612c919083018461395f565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a6c9083018461395f565b9695505050505050565b60018060a01b0384168152826020820152606060408201526000612c91606083018461395f565b6020808252825182820181905260009190848201906040850190845b81811015613ade5783516001600160a01b031683529284019291840191600101613ab9565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613ade57835183529284019291840191600101613b06565b602081526000612fc2602083018461395f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613c3657613c36613dac565b604052919050565b600067ffffffffffffffff821115613c5857613c58613dac565b5060051b60200190565b60008219821115613c7557613c75613d54565b500190565b600082613c8957613c89613d6a565b500490565b6000816000190483118215151615613ca857613ca8613d54565b500290565b600082821015613cbf57613cbf613d54565b500390565b60005b83811015613cdf578181015183820152602001613cc7565b83811115610fbf5750506000910152565b600181811c90821680613d0457607f821691505b602082108114156114f457634e487b7160e01b600052602260045260246000fd5b6000600019821415613d3957613d39613d54565b5060010190565b600082613d4f57613d4f613d6a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461115a57600080fd5b801515811461115a57600080fd5b6001600160e01b03198116811461115a57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f756e69716c792e696f2f6170692f6e66742d67656e657369732fa26469706673582212205adf4d24848f3e599a1110d0be7c407fa8f355a20311f48c1565b436f59758af64736f6c63430008060033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000001bc16d674ec80000000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000024648df47d9015215c8d7851b8e90151a0451d05000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000b71b0000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f756e69716c792e6d7970696e6174612e636c6f75642f697066732f516d5a3274674e764c337265683938674476377671446e6552775a6d67326469796f336d6a50686731615a55394a2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022556e69716c792047656e6573697320506879736963616c20436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b554e495147454e45534953000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103545760003560e01c8063742af72b116101c6578063b88d4fde116100f7578063e8a3d48511610095578063f0cc3b851161006f578063f0cc3b85146109b7578063f2fde38b146109d7578063f449619e146109f7578063fadd308714610a1757600080fd5b8063e8a3d4851461096d578063e985e9c514610982578063f0c9dc60146109a257600080fd5b8063cef6d368116100d1578063cef6d368146108d7578063d547cfb714610916578063d955ec551461092b578063dc6b86271461094b57600080fd5b8063b88d4fde14610877578063be0d41b814610897578063c87b56dd146108b757600080fd5b806395d89b4111610164578063a22cb4651161013e578063a22cb465146107f7578063a2fb117514610817578063a4db625214610837578063b37217a41461085757600080fd5b806395d89b41146107a257806398fa734b146107b75780639e8c708e146107d757600080fd5b8063853828b6116101a0578063853828b61461072f5780638589ff45146107445780638da5cb5b1461076457806394985ddd1461078257600080fd5b8063742af72b146106c2578063834bb61b146106e25780638462151c1461070257600080fd5b80632d0335ab116102a057806342966c681161023e578063652489d411610218578063652489d41461064f578063661b1d2c1461066f57806370a082311461068d578063715018a6146106ad57600080fd5b806342966c68146105ef5780634f6ccce71461060f5780636352211e1461062f57600080fd5b80633408e4701161027a5780633408e470146105865780634129b2c91461059957806342619f66146105b957806342842e0e146105cf57600080fd5b80632d0335ab1461051a5780632f745c5914610550578063335477fc1461057057600080fd5b80630f7e59701161030d5780631df61141116102e75780631df61141146104a557806320379ee5146104c557806323b872dd146104da5780632ca40ed8146104fa57600080fd5b80630f7e597014610443578063109695231461047057806318160ddd1461049057600080fd5b806301ffc9a71461036057806306fdde0314610395578063081812fc146103b7578063095ea7b3146103ef5780630b75cef4146104115780630c53c51c1461043057600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b5061038061037b36600461388d565b610a2a565b60405190151581526020015b60405180910390f35b3480156103a157600080fd5b506103aa610a55565b60405161038c9190613b22565b3480156103c357600080fd5b506103d76103d236600461392d565b610ae7565b6040516001600160a01b03909116815260200161038c565b3480156103fb57600080fd5b5061040f61040a366004613745565b610b81565b005b34801561041d57600080fd5b506017545b60405190815260200161038c565b6103aa61043e3660046136c7565b610ca9565b34801561044f57600080fd5b506103aa604051806040016040528060018152602001603160f81b81525081565b34801561047c57600080fd5b5061040f61048b3660046138e4565b610e7b565b34801561049c57600080fd5b50600854610422565b3480156104b157600080fd5b5061040f6104c0366004613771565b610edb565b3480156104d157600080fd5b50600b54610422565b3480156104e657600080fd5b5061040f6104f5366004613591565b610fc5565b34801561050657600080fd5b5061038061051536600461353b565b610ffd565b34801561052657600080fd5b5061042261053536600461353b565b6001600160a01b03166000908152600c602052604090205490565b34801561055c57600080fd5b5061042261056b366004613745565b611008565b34801561057c57600080fd5b5061042260125481565b34801561059257600080fd5b5046610422565b3480156105a557600080fd5b506103d76105b436600461392d565b61109e565b3480156105c557600080fd5b5061042260165481565b3480156105db57600080fd5b5061040f6105ea366004613591565b6110ce565b3480156105fb57600080fd5b5061040f61060a36600461392d565b6110e9565b34801561061b57600080fd5b5061042261062a36600461392d565b61115d565b34801561063b57600080fd5b506103d761064a36600461392d565b6111f0565b34801561065b57600080fd5b5061040f61066a3660046138e4565b611267565b34801561067b57600080fd5b506010546001600160a01b03166103d7565b34801561069957600080fd5b506104226106a836600461353b565b6112c3565b3480156106b957600080fd5b5061040f61134a565b3480156106ce57600080fd5b5061040f6106dd36600461392d565b61139f565b3480156106ee57600080fd5b5061040f6106fd36600461392d565b6113ed565b34801561070e57600080fd5b5061072261071d36600461353b565b61143b565b60405161038c9190613aea565b34801561073b57600080fd5b5061040f6114fa565b34801561075057600080fd5b5061040f61075f3660046135d2565b611567565b34801561077057600080fd5b50600d546001600160a01b03166103d7565b34801561078e57600080fd5b5061040f61079d36600461386b565b6115d3565b3480156107ae57600080fd5b506103aa611651565b3480156107c357600080fd5b5061040f6107d236600461392d565b611660565b3480156107e357600080fd5b5061040f6107f236600461353b565b6116fe565b34801561080357600080fd5b5061040f610812366004613699565b61188d565b34801561082357600080fd5b506103d761083236600461392d565b61198f565b34801561084357600080fd5b5061038061085236600461392d565b6119b9565b34801561086357600080fd5b5061042261087236600461392d565b6119c4565b34801561088357600080fd5b5061040f61089236600461362d565b611c4a565b3480156108a357600080fd5b5061040f6108b2366004613831565b611c83565b3480156108c357600080fd5b506103aa6108d236600461392d565b611cdf565b3480156108e357600080fd5b506108f76108f236600461392d565b611d19565b604080516001600160a01b03909316835260208301919091520161038c565b34801561092257600080fd5b506103aa611d3a565b34801561093757600080fd5b5061040f61094636600461353b565b611d49565b34801561095757600080fd5b50610960611db4565b60405161038c9190613a9d565b34801561097957600080fd5b506103aa611e9d565b34801561098e57600080fd5b5061038061099d366004613558565b611ebd565b3480156109ae57600080fd5b506103aa611f8d565b3480156109c357600080fd5b506104226109d236600461392d565b61201b565b3480156109e357600080fd5b5061040f6109f236600461353b565b61202b565b348015610a0357600080fd5b5061040f610a1236600461392d565b6120e2565b61040f610a2536600461392d565b6122c2565b60006001600160e01b0319821663780e9d6360e01b1480610a4f5750610a4f82612499565b92915050565b606060008054610a6490613cf0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9090613cf0565b8015610add5780601f10610ab257610100808354040283529160200191610add565b820191906000526020600020905b815481529060010190602001808311610ac057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b8c826111f0565b9050806001600160a01b0316836001600160a01b03161415610bfa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b5c565b806001600160a01b0316610c0c6124e9565b6001600160a01b03161480610c285750610c288161099d6124e9565b610c9a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b5c565b610ca483836124f8565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610ce78782878787612566565b610d3d5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610b5c565b6001600160a01b0387166000908152600c60205260408120805491610d6183613d25565b91905055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610d9993929190613a0d565b60405180910390a1600080306001600160a01b0316888a604051602001610dc19291906139a7565b60408051601f1981840301815290829052610ddb9161398b565b6000604051808303816000865af19150503d8060008114610e18576040519150601f19603f3d011682016040523d82523d6000602084013e610e1d565b606091505b509150915081610e6f5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610b5c565b98975050505050505050565b610e836124e9565b6001600160a01b0316610e9e600d546001600160a01b031690565b6001600160a01b031614610ec45760405162461bcd60e51b8152600401610b5c90613b87565b8051610ed79060119060208401906133b8565b5050565b610ee36124e9565b6001600160a01b0316610efe600d546001600160a01b031690565b6001600160a01b031614610f245760405162461bcd60e51b8152600401610b5c90613b87565b815181518114610f665760405162461bcd60e51b815260206004820152600d60248201526c082e4e4c2f2e640d8cadccee8d609b1b6044820152606401610b5c565b60005b81811015610fbf57610fad838281518110610f8657610f86613d96565b6020026020010151858381518110610fa057610fa0613d96565b6020026020010151612656565b80610fb781613d25565b915050610f69565b50505050565b610fd6610fd06124e9565b82612670565b610ff25760405162461bcd60e51b8152600401610b5c90613bbc565b610ca483838361273f565b6000610a4f826128ea565b6000611013836112c3565b82106110755760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b5c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000601782815481106110b3576110b3613d96565b6000918252602090912001546001600160a01b031692915050565b610ca483838360405180602001604052806000815250611c4a565b6010546001600160a01b03163314611151576111053382612670565b6111515760405162461bcd60e51b815260206004820152601e60248201527f4f776e657273686970206f7220617070726f76616c20726571756972656400006044820152606401610b5c565b61115a81612959565b50565b600061116860085490565b82106111cb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b5c565b600882815481106111de576111de613d96565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b031680610a4f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b5c565b61126f6124e9565b6001600160a01b031661128a600d546001600160a01b031690565b6001600160a01b0316146112b05760405162461bcd60e51b8152600401610b5c90613b87565b8051610ed790600f9060208401906133b8565b60006001600160a01b03821661132e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b5c565b506001600160a01b031660009081526003602052604090205490565b6113526124e9565b6001600160a01b031661136d600d546001600160a01b031690565b6001600160a01b0316146113935760405162461bcd60e51b8152600401610b5c90613b87565b61139d6000612a00565b565b6113a76124e9565b6001600160a01b03166113c2600d546001600160a01b031690565b6001600160a01b0316146113e85760405162461bcd60e51b8152600401610b5c90613b87565b601255565b6113f56124e9565b6001600160a01b0316611410600d546001600160a01b031690565b6001600160a01b0316146114365760405162461bcd60e51b8152600401610b5c90613b87565b601555565b60606000611448836112c3565b9050806114695760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561148457611484613dac565b6040519080825280602002602001820160405280156114ad578160200160208202803683370190505b50905060005b82811015611461576114c58582611008565b8282815181106114d7576114d7613d96565b6020908102919091010152806114ec81613d25565b9150506114b3565b50919050565b6115026124e9565b6001600160a01b031661151d600d546001600160a01b031690565b6001600160a01b0316146115435760405162461bcd60e51b8152600401610b5c90613b87565b60405133904780156108fc02916000818181858888f1935050505061139d57600080fd5b82846001600160a01b0316611584600d546001600160a01b031690565b604080516001600160a01b0387811682526020820187905292909216917f096a55ec842afaa98cb78cb0352921e73c0d1caa9136309fa9c07f13f4a39a60910160405180910390a45050505050565b336001600160a01b037f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952161461164b5760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610b5c565b60165550565b606060018054610a6490613cf0565b6116686124e9565b6001600160a01b0316611683600d546001600160a01b031690565b6001600160a01b0316146116a95760405162461bcd60e51b8152600401610b5c90613b87565b601654156116f95760405162461bcd60e51b815260206004820152601f60248201527f52616e646f6d206e756d62657220616c726561647920696e69746961746564006044820152606401610b5c565b601655565b6117066124e9565b6001600160a01b0316611721600d546001600160a01b031690565b6001600160a01b0316146117475760405162461bcd60e51b8152600401610b5c90613b87565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561178957600080fd5b505afa15801561179d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c19190613946565b9050600081116118085760405162461bcd60e51b81526020600482015260126024820152712737ba3434b733903a37903932b1b7bb32b960711b6044820152606401610b5c565b816001600160a01b031663a9059cbb611829600d546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401600060405180830381600087803b15801561187157600080fd5b505af1158015611885573d6000803e3d6000fd5b505050505050565b6118956124e9565b6001600160a01b0316826001600160a01b031614156118f65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b5c565b80600560006119036124e9565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556119476124e9565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611983911515815260200190565b60405180910390a35050565b6017818154811061199f57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000610a4f82612a52565b60006119ce6124e9565b6001600160a01b03166119e9600d546001600160a01b031690565b6001600160a01b031614611a0f5760405162461bcd60e51b8152600401610b5c90613b87565b612710611a1b60085490565b1015611a5e5760405162461bcd60e51b815260206004820152601260248201527114d85b19481b5d5cdd08189948195b99195960721b6044820152606401610b5c565b60165415611aae5760405162461bcd60e51b815260206004820152601f60248201527f52616e646f6d206e756d62657220616c726561647920696e69746961746564006044820152606401610b5c565b678ac7230489e80000471015611b065760405162461bcd60e51b815260206004820152601b60248201527f6d696e203130204554482062616c616e636520726571756972656400000000006044820152606401610b5c565b6040516370a0823160e01b81523060048201527f0000000000000000000000000000000000000000000000001bc16d674ec80000907f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316906370a082319060240160206040518083038186803b158015611b8757600080fd5b505afa158015611b9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bbf9190613946565b1015611bff5760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420656e6f756768204c494e4b60881b6044820152606401610b5c565b610a4f7faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4457f0000000000000000000000000000000000000000000000001bc16d674ec8000084612b07565b611c5b611c556124e9565b83612670565b611c775760405162461bcd60e51b8152600401610b5c90613bbc565b610fbf84848484612c9a565b611c8b6124e9565b6001600160a01b0316611ca6600d546001600160a01b031690565b6001600160a01b031614611ccc5760405162461bcd60e51b8152600401610b5c90613b87565b6014805460ff1916911515919091179055565b6060611ce9611d3a565b611cf283612ccd565b604051602001611d039291906139de565b6040516020818303038152906040529050919050565b600080611d2e600d546001600160a01b031690565b60125491509150915091565b6060600f8054610a6490613cf0565b611d516124e9565b6001600160a01b0316611d6c600d546001600160a01b031690565b6001600160a01b031614611d925760405162461bcd60e51b8152600401610b5c90613b87565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b60175460609080611dd357505060408051600081526020810190915290565b60008167ffffffffffffffff811115611dee57611dee613dac565b604051908082528060200260200182016040528015611e17578160200160208202803683370190505b50905060005b82811015611e925760178181548110611e3857611e38613d96565b9060005260206000200160009054906101000a90046001600160a01b0316828281518110611e6857611e68613d96565b6001600160a01b039092166020928302919091019091015280611e8a81613d25565b915050611e1d565b5092915050565b5090565b6060604051806060016040528060228152602001613e3f60229139905090565b600e5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611f0a57600080fd5b505afa158015611f1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4291906138c7565b6001600160a01b03161415611f5b576001915050610a4f565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b60118054611f9a90613cf0565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc690613cf0565b80156120135780601f10611fe857610100808354040283529160200191612013565b820191906000526020600020905b815481529060010190602001808311611ff657829003601f168201915b505050505081565b600060155482610a4f9190613c8e565b6120336124e9565b6001600160a01b031661204e600d546001600160a01b031690565b6001600160a01b0316146120745760405162461bcd60e51b8152600401610b5c90613b87565b6001600160a01b0381166120d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b5c565b61115a81612a00565b336120ec826111f0565b6001600160a01b0316146121355760405162461bcd60e51b815260206004820152601060248201526f13dddb995c9cda1a5c081b995959195960821b6044820152606401610b5c565b61213e81612a52565b61217c5760405162461bcd60e51b815260206004820152600f60248201526e2cb7ba903234b2103737ba103bb4b760891b6044820152606401610b5c565b612185336128ea565b156121d25760405162461bcd60e51b815260206004820152601860248201527f416c72656164792072656365697665642061207072697a6500000000000000006044820152606401610b5c565b601754600a1161221a5760405162461bcd60e51b8152602060048201526013602482015272141c9a5e99481b1a5b5a5d081c995858da1959606a1b6044820152606401610b5c565b601780546001810182556000919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c150180546001600160a01b031916339081179091556040518281527f79c99597ba23f96ba7d9b4729d81d5de16e368bfe8307fa890457fb7474ec98c9060200160405180910390a26040513390600090670de0b6b3a76400009082818181858883f19350505050158015610ed7573d6000803e3d6000fd5b60145460ff1661230b5760405162461bcd60e51b815260206004820152601460248201527314d85b19481b9bdd081cdd185c9d1959081e595d60621b6044820152606401610b5c565b60006015548261231b9190613c8e565b9050600061232860085490565b90508134101561236d5760405162461bcd60e51b815260206004820152601060248201526f2737ba1032b737bab3b41032ba3432b960811b6044820152606401610b5c565b61271061237a8285613c62565b11156123c85760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e6e6f74206275792074686174206d616e7920746f6b656e73006044820152606401610b5c565b60005b838110156123fd576123dd3383612656565b816123e781613d25565b92505080806123f590613d25565b9150506123cb565b5034821015610ca457336108fc6124148434613cad565b6040518115909202916000818181858888f19350505050158015610fbf573d6000803e3d6000fd5b60003330141561249357600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506124969050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b14806124ca57506001600160e01b03198216635b5e139f60e01b145b80610a4f57506301ffc9a760e01b6001600160e01b0319831614610a4f565b60006124f361243c565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061252d826111f0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166125cc5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610b5c565b60016125df6125da87612dcb565b612e48565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561262d573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b610ed7828260405180602001604052806000815250612e78565b6000818152600260205260408120546001600160a01b03166126e95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b5c565b60006126f4836111f0565b9050806001600160a01b0316846001600160a01b0316148061272f5750836001600160a01b031661272484610ae7565b6001600160a01b0316145b80611f855750611f858185611ebd565b826001600160a01b0316612752826111f0565b6001600160a01b0316146127ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b5c565b6001600160a01b03821661281c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b5c565b612827838383612eab565b6128326000826124f8565b6001600160a01b038316600090815260036020526040812080546001929061285b908490613cad565b90915550506001600160a01b0382166000908152600360205260408120805460019290612889908490613c62565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60175460009081905b8082101561294f57836001600160a01b03166017838154811061291857612918613d96565b6000918252602090912001546001600160a01b0316141561293d575060019392505050565b8161294781613d25565b9250506128f3565b5060009392505050565b6000612964826111f0565b905061297281600084612eab565b61297d6000836124f8565b6001600160a01b03811660009081526003602052604081208054600192906129a6908490613cad565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060165411612aa55760405162461bcd60e51b815260206004820152601860248201527f52616e646f6d206d75737420626520696e6974696174656400000000000000006044820152606401610b5c565b600061271083601654604051602001612ac8929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c612aeb9190613d40565b905060148111612afe5750600192915050565b50600092915050565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca6001600160a01b0316634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952858786604051602001612b76929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401612ba393929190613a76565b602060405180830381600087803b158015612bbd57600080fd5b505af1158015612bd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bf5919061384e565b5060008481526013602081815260408084205481518084018a905280830188905230606082015260808082018390528351808303909101815260a090910190925281519183019190912093889052919052612c51906001612f63565b600086815260136020526040902055612c918582604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b95945050505050565b612ca584848461273f565b612cb184848484612fc9565b610fbf5760405162461bcd60e51b8152600401610b5c90613b35565b606081612cf15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612d1b5780612d0581613d25565b9150612d149050600a83613c7a565b9150612cf5565b60008167ffffffffffffffff811115612d3657612d36613dac565b6040519080825280601f01601f191660200182016040528015612d60576020820181803683370190505b5090505b8415611f8557612d75600183613cad565b9150612d82600a86613d40565b612d8d906030613c62565b60f81b818381518110612da257612da2613d96565b60200101906001600160f81b031916908160001a905350612dc4600a86613c7a565b9450612d64565b6000604051806080016040528060438152602001613dfc6043913980516020918201208351848301516040808701518051908601209051612e2b950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612e53600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201612e2b565b612e8283836130da565b612e8f6000848484612fc9565b610ca45760405162461bcd60e51b8152600401610b5c90613b35565b6001600160a01b038316612f0657612f0181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612f29565b816001600160a01b0316836001600160a01b031614612f2957612f298382613228565b6001600160a01b038216612f4057610ca4816132c5565b826001600160a01b0316826001600160a01b031614610ca457610ca48282613374565b600080612f708385613c62565b905083811015612fc25760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b5c565b9392505050565b60006001600160a01b0384163b156130d257836001600160a01b031663150b7a02612ff26124e9565b8786866040518563ffffffff1660e01b81526004016130149493929190613a39565b602060405180830381600087803b15801561302e57600080fd5b505af192505050801561305e575060408051601f3d908101601f1916820190925261305b918101906138aa565b60015b6130b8573d80801561308c576040519150601f19603f3d011682016040523d82523d6000602084013e613091565b606091505b5080516130b05760405162461bcd60e51b8152600401610b5c90613b35565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f85565b506001611f85565b6001600160a01b0382166131305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b5c565b6000818152600260205260409020546001600160a01b0316156131955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b5c565b6131a160008383612eab565b6001600160a01b03821660009081526003602052604081208054600192906131ca908490613c62565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613235846112c3565b61323f9190613cad565b600083815260076020526040902054909150808214613292576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906132d790600190613cad565b600083815260096020526040812054600880549394509092849081106132ff576132ff613d96565b90600052602060002001549050806008838154811061332057613320613d96565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061335857613358613d80565b6001900381819060005260206000200160009055905550505050565b600061337f836112c3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546133c490613cf0565b90600052602060002090601f0160209004810192826133e6576000855561342c565b82601f106133ff57805160ff191683800117855561342c565b8280016001018555821561342c579182015b8281111561342c578251825591602001919060010190613411565b50611e999291505b80821115611e995760008155600101613434565b600067ffffffffffffffff83111561346257613462613dac565b613475601f8401601f1916602001613c0d565b905082815283838301111561348957600080fd5b828260208301376000602084830101529392505050565b600082601f8301126134b157600080fd5b813560206134c66134c183613c3e565b613c0d565b80838252828201915082860187848660051b89010111156134e657600080fd5b60005b8581101561350e5781356134fc81613dc2565b845292840192908401906001016134e9565b5090979650505050505050565b600082601f83011261352c57600080fd5b612fc283833560208501613448565b60006020828403121561354d57600080fd5b8135612fc281613dc2565b6000806040838503121561356b57600080fd5b823561357681613dc2565b9150602083013561358681613dc2565b809150509250929050565b6000806000606084860312156135a657600080fd5b83356135b181613dc2565b925060208401356135c181613dc2565b929592945050506040919091013590565b600080600080600060a086880312156135ea57600080fd5b85356135f581613dc2565b9450602086013561360581613dc2565b935060408601359250606086013561361c81613dc2565b949793965091946080013592915050565b6000806000806080858703121561364357600080fd5b843561364e81613dc2565b9350602085013561365e81613dc2565b925060408501359150606085013567ffffffffffffffff81111561368157600080fd5b61368d8782880161351b565b91505092959194509250565b600080604083850312156136ac57600080fd5b82356136b781613dc2565b9150602083013561358681613dd7565b600080600080600060a086880312156136df57600080fd5b85356136ea81613dc2565b9450602086013567ffffffffffffffff81111561370657600080fd5b6137128882890161351b565b9450506040860135925060608601359150608086013560ff8116811461373757600080fd5b809150509295509295909350565b6000806040838503121561375857600080fd5b823561376381613dc2565b946020939093013593505050565b6000806040838503121561378457600080fd5b823567ffffffffffffffff8082111561379c57600080fd5b818501915085601f8301126137b057600080fd5b813560206137c06134c183613c3e565b8083825282820191508286018a848660051b89010111156137e057600080fd5b600096505b848710156138035780358352600196909601959183019183016137e5565b509650508601359250508082111561381a57600080fd5b50613827858286016134a0565b9150509250929050565b60006020828403121561384357600080fd5b8135612fc281613dd7565b60006020828403121561386057600080fd5b8151612fc281613dd7565b6000806040838503121561387e57600080fd5b50508035926020909101359150565b60006020828403121561389f57600080fd5b8135612fc281613de5565b6000602082840312156138bc57600080fd5b8151612fc281613de5565b6000602082840312156138d957600080fd5b8151612fc281613dc2565b6000602082840312156138f657600080fd5b813567ffffffffffffffff81111561390d57600080fd5b8201601f8101841361391e57600080fd5b611f8584823560208401613448565b60006020828403121561393f57600080fd5b5035919050565b60006020828403121561395857600080fd5b5051919050565b60008151808452613977816020860160208601613cc4565b601f01601f19169290920160200192915050565b6000825161399d818460208701613cc4565b9190910192915050565b600083516139b9818460208801613cc4565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600083516139f0818460208801613cc4565b835190830190613a04818360208801613cc4565b01949350505050565b6001600160a01b03848116825283166020820152606060408201819052600090612c919083018461395f565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a6c9083018461395f565b9695505050505050565b60018060a01b0384168152826020820152606060408201526000612c91606083018461395f565b6020808252825182820181905260009190848201906040850190845b81811015613ade5783516001600160a01b031683529284019291840191600101613ab9565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613ade57835183529284019291840191600101613b06565b602081526000612fc2602083018461395f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613c3657613c36613dac565b604052919050565b600067ffffffffffffffff821115613c5857613c58613dac565b5060051b60200190565b60008219821115613c7557613c75613d54565b500190565b600082613c8957613c89613d6a565b500490565b6000816000190483118215151615613ca857613ca8613d54565b500290565b600082821015613cbf57613cbf613d54565b500390565b60005b83811015613cdf578181015183820152602001613cc7565b83811115610fbf5750506000910152565b600181811c90821680613d0457607f821691505b602082108114156114f457634e487b7160e01b600052602260045260246000fd5b6000600019821415613d3957613d39613d54565b5060010190565b600082613d4f57613d4f613d6a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461115a57600080fd5b801515811461115a57600080fd5b6001600160e01b03198116811461115a57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f756e69716c792e696f2f6170692f6e66742d67656e657369732fa26469706673582212205adf4d24848f3e599a1110d0be7c407fa8f355a20311f48c1565b436f59758af64736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000240000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952000000000000000000000000514910771af9ca656af840dff83e8264ecf986caaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af4450000000000000000000000000000000000000000000000001bc16d674ec80000000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000024648df47d9015215c8d7851b8e90151a0451d05000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000b71b0000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f756e69716c792e6d7970696e6174612e636c6f75642f697066732f516d5a3274674e764c337265683938674476377671446e6552775a6d67326469796f336d6a50686731615a55394a2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000022556e69716c792047656e6573697320506879736963616c20436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b554e495147454e45534953000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _bURI (string): https://uniqly.mypinata.cloud/ipfs/QmZ2tgNvL3reh98gDv7vqDneRwZmg2diyo3mjPhg1aZU9J/
Arg [1] : _name (string): Uniqly Genesis Physical Collection
Arg [2] : _symbol (string): UNIQGENESIS
Arg [3] : _vrfCoordinator (address): 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952
Arg [4] : _link (address): 0x514910771AF9Ca656af840dff83E8264EcF986CA
Arg [5] : _keyHash (bytes32): 0xaa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [6] : _fee (uint256): 2000000000000000000
Arg [7] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [8] : _claimingContractAddress (address): 0x24648df47D9015215C8d7851b8E90151A0451D05
Arg [9] : _tokenSalePrice (uint256): 80000000000000000
Arg [10] : _royaltyFee (uint256): 750000

-----Encoded View---------------
20 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [3] : 000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952
Arg [4] : 000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca
Arg [5] : aa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445
Arg [6] : 0000000000000000000000000000000000000000000000001bc16d674ec80000
Arg [7] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [8] : 00000000000000000000000024648df47d9015215c8d7851b8e90151a0451d05
Arg [9] : 000000000000000000000000000000000000000000000000011c37937e080000
Arg [10] : 00000000000000000000000000000000000000000000000000000000000b71b0
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000052
Arg [12] : 68747470733a2f2f756e69716c792e6d7970696e6174612e636c6f75642f6970
Arg [13] : 66732f516d5a3274674e764c337265683938674476377671446e6552775a6d67
Arg [14] : 326469796f336d6a50686731615a55394a2f0000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [16] : 556e69716c792047656e6573697320506879736963616c20436f6c6c65637469
Arg [17] : 6f6e000000000000000000000000000000000000000000000000000000000000
Arg [18] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [19] : 554e495147454e45534953000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

203:6397:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:222:15;;;;;;;;;;-1:-1:-1;910:222:15;;;;;:::i;:::-;;:::i;:::-;;;14451:14:23;;14444:22;14426:41;;14414:2;14399:18;910:222:15;;;;;;;;2414:98:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3925:217::-;;;;;;;;;;-1:-1:-1;3925:217:12;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11344:32:23;;;11326:51;;11314:2;11299:18;3925:217:12;11281:102:23;3463:401:12;;;;;;;;;;-1:-1:-1;3463:401:12;;;;;:::i;:::-;;:::i;:::-;;2248:97:0;;;;;;;;;;-1:-1:-1;2324:7:0;:14;2248:97;;;14624:25:23;;;14612:2;14597:18;2248:97:0;14579:76:23;875:1090:9;;;;;;:::i;:::-;;:::i;288:43:7:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;288:43:7;;;;;4154:116:1;;;;;;;;;;-1:-1:-1;4154:116:1;;;;;:::i;:::-;;:::i;1535:111:15:-;;;;;;;;;;-1:-1:-1;1622:10:15;:17;1535:111;;5332:331:0;;;;;;;;;;-1:-1:-1;5332:331:0;;;;;:::i;:::-;;:::i;1264:99:7:-;;;;;;;;;;-1:-1:-1;1341:15:7;;1264:99;;4789:330:12;;;;;;;;;;-1:-1:-1;4789:330:12;;;;;:::i;:::-;;:::i;2469:174:0:-;;;;;;;;;;-1:-1:-1;2469:174:0;;;;;:::i;:::-;;:::i;2373:105:9:-;;;;;;;;;;-1:-1:-1;2373:105:9;;;;;:::i;:::-;-1:-1:-1;;;;;2459:12:9;2426:13;2459:12;;;:6;:12;;;;;;;2373:105;1211:253:15;;;;;;;;;;-1:-1:-1;1211:253:15;;;;;:::i;:::-;;:::i;847:26:1:-;;;;;;;;;;;;;;;;1369:155:7;;;;;;;;;;-1:-1:-1;1480:9:7;1369:155;;2130:112:0;;;;;;;;;;-1:-1:-1;2130:112:0;;;;;:::i;:::-;;:::i;626:27::-;;;;;;;;;;;;;;;;5185:179:12;;;;;;;;;;-1:-1:-1;5185:179:12;;;;;:::i;:::-;;:::i;3360:272:1:-;;;;;;;;;;-1:-1:-1;3360:272:1;;;;;:::i;:::-;;:::i;1718:230:15:-;;;;;;;;;;-1:-1:-1;1718:230:15;;;;;:::i;:::-;;:::i;2117:235:12:-;;;;;;;;;;-1:-1:-1;2117:235:12;;;;;:::i;:::-;;:::i;6491:107:0:-;;;;;;;;;;-1:-1:-1;6491:107:0;;;;;:::i;:::-;;:::i;1988:101:1:-;;;;;;;;;;-1:-1:-1;2066:16:1;;-1:-1:-1;;;;;2066:16:1;1988:101;;1855:205:12;;;;;;;;;;-1:-1:-1;1855:205:12;;;;;:::i;:::-;;:::i;1605:92:10:-;;;;;;;;;;;;;:::i;4051:97:1:-;;;;;;;;;;-1:-1:-1;4051:97:1;;;;;:::i;:::-;;:::i;6384:101:0:-;;;;;;;;;;-1:-1:-1;6384:101:0;;;;;:::i;:::-;;:::i;2762:555:1:-;;;;;;;;;;-1:-1:-1;2762:555:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5774:115:0:-;;;;;;;;;;;;;:::i;3638:249:1:-;;;;;;;;;;-1:-1:-1;3638:249:1;;;;;:::i;:::-;;:::i;973:85:10:-;;;;;;;;;;-1:-1:-1;1045:6:10;;-1:-1:-1;;;;;1045:6:10;973:85;;9243:207:4;;;;;;;;;;-1:-1:-1;9243:207:4;;;;;:::i;:::-;;:::i;2576:102:12:-;;;;;;;;;;;;;:::i;6179:195:0:-;;;;;;;;;;-1:-1:-1;6179:195:0;;;;;:::i;:::-;;:::i;5895:278::-;;;;;;;;;;-1:-1:-1;5895:278:0;;;;;:::i;:::-;;:::i;4209:290:12:-;;;;;;;;;;-1:-1:-1;4209:290:12;;;;;:::i;:::-;;:::i;659:24:0:-;;;;;;;;;;-1:-1:-1;659:24:0;;;;;:::i;:::-;;:::i;2351:108::-;;;;;;;;;;-1:-1:-1;2351:108:0;;;;;:::i;:::-;;:::i;4805:521::-;;;;;;;;;;-1:-1:-1;4805:521:0;;;;;:::i;:::-;;:::i;5430:320:12:-;;;;;;;;;;-1:-1:-1;5430:320:12;;;;;:::i;:::-;;:::i;5669:99:0:-;;;;;;;;;;-1:-1:-1;5669:99:0;;;;;:::i;:::-;;:::i;1731:251:1:-;;;;;;;;;;-1:-1:-1;1731:251:1;;;;;:::i;:::-;;:::i;2095:161::-;;;;;;;;;;-1:-1:-1;2095:161:1;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;12509:32:23;;;12491:51;;12573:2;12558:18;;12551:34;;;;12464:18;2095:161:1;12446:145:23;1624:101:1;;;;;;;;;;;;;:::i;3930:115::-;;;;;;;;;;-1:-1:-1;3930:115:1;;;;;:::i;:::-;;:::i;1663:461:0:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1366:119::-;;;;;;;;;;;;;:::i;2262:370:1:-;;;;;;;;;;-1:-1:-1;2262:370:1;;;;;:::i;:::-;;:::i;803:38::-;;;;;;;;;;;;;:::i;1491:162:0:-;;;;;;;;;;-1:-1:-1;1491:162:0;;;;;:::i;:::-;;:::i;1846:189:10:-;;;;;;;;;;-1:-1:-1;1846:189:10;;;;;:::i;:::-;;:::i;3762:495:0:-;;;;;;;;;;-1:-1:-1;3762:495:0;;;;;:::i;:::-;;:::i;3036:720::-;;;;;;:::i;:::-;;:::i;910:222:15:-;1012:4;-1:-1:-1;;;;;;1035:50:15;;-1:-1:-1;;;1035:50:15;;:90;;;1089:36;1113:11;1089:23;:36::i;:::-;1028:97;910:222;-1:-1:-1;;910:222:15:o;2414:98:12:-;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:12;4020:73;;;;-1:-1:-1;;;4020:73:12;;26124:2:23;4020:73:12;;;26106:21:23;26163:2;26143:18;;;26136:30;26202:34;26182:18;;;26175:62;-1:-1:-1;;;26253:18:23;;;26246:42;26305:19;;4020:73:12;;;;;;;;;-1:-1:-1;4111:24:12;;;;:15;:24;;;;;;-1:-1:-1;;;;;4111:24:12;;3925:217::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;-1:-1:-1;;;;;3600:11:12;:2;-1:-1:-1;;;;;3600:11:12;;;3592:57;;;;-1:-1:-1;;;3592:57:12;;28430:2:23;3592:57:12;;;28412:21:23;28469:2;28449:18;;;28442:30;28508:34;28488:18;;;28481:62;-1:-1:-1;;;28559:18:23;;;28552:31;28600:19;;3592:57:12;28402:223:23;3592:57:12;3697:5;-1:-1:-1;;;;;3681:21:12;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3681:21:12;;:62;;;;3706:37;3723:5;3730:12;:10;:12::i;3706:37::-;3660:165;;;;-1:-1:-1;;;3660:165:12;;23810:2:23;3660:165:12;;;23792:21:23;23849:2;23829:18;;;23822:30;23888:34;23868:18;;;23861:62;23959:26;23939:18;;;23932:54;24003:19;;3660:165:12;23782:246:23;3660:165:12;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3533:331;3463:401;;:::o;875:1090:9:-;1126:148;;;1070:12;1126:148;;;;;-1:-1:-1;;;;;1163:19:9;;1094:29;1163:19;;;:6;:19;;;;;;;;;1126:148;;;;;;;;;;;1306:45;1170:11;1126:148;1334:4;1340;1346;1306:6;:45::i;:::-;1285:125;;;;-1:-1:-1;;;1285:125:9;;27308:2:23;1285:125:9;;;27290:21:23;27347:2;27327:18;;;27320:30;27386:34;27366:18;;;27359:62;-1:-1:-1;;;27437:18:23;;;27430:31;27478:19;;1285:125:9;27280:223:23;1285:125:9;-1:-1:-1;;;;;1474:19:9;;;;;;:6;:19;;;;;:21;;;;;;:::i;:::-;;;;;;1511:122;1548:11;1581:10;1606:17;1511:122;;;;;;;;:::i;:::-;;;;;;;;1741:12;1755:23;1790:4;-1:-1:-1;;;;;1782:18:9;1831:17;1850:11;1814:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1814:48:9;;;;;;;;;;1782:90;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1740:132;;;;1890:7;1882:48;;;;-1:-1:-1;;;1882:48:9;;19087:2:23;1882:48:9;;;19069:21:23;19126:2;19106:18;;;19099:30;19165;19145:18;;;19138:58;19213:18;;1882:48:9;19059:178:23;1882:48:9;1948:10;875:1090;-1:-1:-1;;;;;;;;875:1090:9:o;4154:116:1:-;1196:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:10;:7;1045:6;;-1:-1:-1;;;;;1045:6:10;;973:85;1185:7;-1:-1:-1;;;;;1185:23:10;;1177:68;;;;-1:-1:-1;;;1177:68:10;;;;;;;:::i;:::-;4231:32:1;;::::1;::::0;:24:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;4154:116:::0;:::o;5332:331:0:-;1196:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:10;:7;1045:6;;-1:-1:-1;;;;;1045:6:10;;973:85;1185:7;-1:-1:-1;;;;;1185:23:10;;1177:68;;;;-1:-1:-1;;;1177:68:10;;;;;;;:::i;:::-;5469:11:0;;5505:17;;5498:24;::::1;5490:50;;;::::0;-1:-1:-1;;;5490:50:0;;22718:2:23;5490:50:0::1;::::0;::::1;22700:21:23::0;22757:2;22737:18;;;22730:30;-1:-1:-1;;;22776:18:23;;;22769:43;22829:18;;5490:50:0::1;22690:163:23::0;5490:50:0::1;5550:9;5573:84;5589:3;5585:1;:7;5573:84;;;5613:33;5623:10;5634:1;5623:13;;;;;;;;:::i;:::-;;;;;;;5638:4;5643:1;5638:7;;;;;;;;:::i;:::-;;;;;;;5613:9;:33::i;:::-;5594:3:::0;::::1;::::0;::::1;:::i;:::-;;;;5573:84;;;5448:215;;5332:331:::0;;:::o;4789:330:12:-;4978:41;4997:12;:10;:12::i;:::-;5011:7;4978:18;:41::i;:::-;4970:103;;;;-1:-1:-1;;;4970:103:12;;;;;;;:::i;:::-;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;2469:174:0:-;2570:4;2598:37;2624:10;2598:25;:37::i;1211:253:15:-;1308:7;1343:23;1360:5;1343:16;:23::i;:::-;1335:5;:31;1327:87;;;;-1:-1:-1;;;1327:87:15;;17849:2:23;1327:87:15;;;17831:21:23;17888:2;17868:18;;;17861:30;17927:34;17907:18;;;17900:62;-1:-1:-1;;;17978:18:23;;;17971:41;18029:19;;1327:87:15;17821:233:23;1327:87:15;-1:-1:-1;;;;;;1431:19:15;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1211:253::o;2130:112:0:-;2191:7;2217;2225:9;2217:18;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;2217:18:0;;2130:112;-1:-1:-1;;2130:112:0:o;5185:179:12:-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;3360:272:1:-;3429:16;;-1:-1:-1;;;;;3429:16:1;3415:10;:30;3411:190;;3486:40;3505:10;3517:8;3486:18;:40::i;:::-;3461:129;;;;-1:-1:-1;;;3461:129:1;;25404:2:23;3461:129:1;;;25386:21:23;25443:2;25423:18;;;25416:30;25482:32;25462:18;;;25455:60;25532:18;;3461:129:1;25376:180:23;3461:129:1;3610:15;3616:8;3610:5;:15::i;:::-;3360:272;:::o;1718:230:15:-;1793:7;1828:30;1622:10;:17;;1535:111;1828:30;1820:5;:38;1812:95;;;;-1:-1:-1;;;1812:95:15;;29966:2:23;1812:95:15;;;29948:21:23;30005:2;29985:18;;;29978:30;30044:34;30024:18;;;30017:62;-1:-1:-1;;;30095:18:23;;;30088:42;30147:19;;1812:95:15;29938:234:23;1812:95:15;1924:10;1935:5;1924:17;;;;;;;;:::i;:::-;;;;;;;;;1917:24;;1718:230;;;:::o;2117:235:12:-;2189:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:12;2258:19;2250:73;;;;-1:-1:-1;;;2250:73:12;;24646:2:23;2250:73:12;;;24628:21:23;24685:2;24665:18;;;24658:30;24724:34;24704:18;;;24697:62;-1:-1:-1;;;24775:18:23;;;24768:39;24824:19;;2250:73:12;24618:231:23;6491:107:0;1196:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:10;:7;1045:6;;-1:-1:-1;;;;;1045:6:10;;973:85;1185:7;-1:-1:-1;;;;;1185:23:10;;1177:68;;;;-1:-1:-1;;;1177:68:10;;;;;;;:::i;:::-;6568:23:0;;::::1;::::0;:10:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;1855:205:12:-:0;1927:7;-1:-1:-1;;;;;1954:19:12;;1946:74;;;;-1:-1:-1;;;1946:74:12;;24235:2:23;1946:74:12;;;24217:21:23;24274:2;24254:18;;;24247:30;24313:34;24293:18;;;24286:62;-1:-1:-1;;;24364:18:23;;;24357:40;24414:19;;1946:74:12;24207:232:23;1946:74:12;-1:-1:-1;;;;;;2037:16:12;;;;;:9;:16;;;;;;;1855:205::o;1605:92:10:-;1196:12;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:10;:7;1045:6;;-1:-1:-1;;;;;1045:6:10;;973:85;1185:7;-1:-1:-1;;;;;1185:23:10;;1177:68;;;;-1:-1:-1;;;1177:68:10;;;;;;;:::i;:::-;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;4051:97:1:-;1196:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:10;:7;1045:6;;-1:-1:-1;;;;;1045:6:10;;973:85;1185:7;-1:-1:-1;;;;;1185:23:10;;1177:68;;;;-1:-1:-1;;;1177:68:10;;;;;;;:::i;:::-;4120:11:1::1;:21:::0;4051:97::o;6384:101:0:-;1196:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:10;:7;1045:6;;-1:-1:-1;;;;;1045:6:10;;973:85;1185:7;-1:-1:-1;;;;;1185:23:10;;1177:68;;;;-1:-1:-1;;;1177:68:10;;;;;;;:::i;:::-;6455:11:0::1;:23:::0;6384:101::o;2762:555:1:-;2848:16;2880:18;2901:17;2911:6;2901:9;:17::i;:::-;2880:38;-1:-1:-1;2932:15:1;2928:383;;3007:16;;;3021:1;3007:16;;;;;;;;;;;-1:-1:-1;3000:23:1;2762:555;-1:-1:-1;;;2762:555:1:o;2928:383::-;3054:23;3094:10;3080:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3080:25:1;;3054:51;;3119:13;3146:128;3170:10;3162:5;:18;3146:128;;;3225:34;3245:6;3253:5;3225:19;:34::i;:::-;3209:6;3216:5;3209:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;3182:7;;;;:::i;:::-;;;;3146:128;;2928:383;2870:447;2762:555;;;:::o;5774:115:0:-;1196:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:10;:7;1045:6;;-1:-1:-1;;;;;1045:6:10;;973:85;1185:7;-1:-1:-1;;;;;1185:23:10;;1177:68;;;;-1:-1:-1;;;1177:68:10;;;;;;;:::i;:::-;5834:47:0::1;::::0;5842:10:::1;::::0;5859:21:::1;5834:47:::0;::::1;;;::::0;::::1;::::0;;;5859:21;5842:10;5834:47;::::1;;;;;;5826:56;;;::::0;::::1;3638:249:1::0;3850:8;3842:6;-1:-1:-1;;;;;3815:65:1;3833:7;1045:6:10;;-1:-1:-1;;;;;1045:6:10;;973:85;3833:7:1;3815:65;;;-1:-1:-1;;;;;12509:32:23;;;12491:51;;12573:2;12558:18;;12551:34;;;3815:65:1;;;;;;;12464:18:23;3815:65:1;;;;;;;3638:249;;;;;:::o;9243:207:4:-;9335:10;-1:-1:-1;;;;;9349:14:4;9335:28;;9327:72;;;;-1:-1:-1;;;9327:72:4;;28070:2:23;9327:72:4;;;28052:21:23;28109:2;28089:18;;;28082:30;28148:33;28128:18;;;28121:61;28199:18;;9327:72:4;28042:181:23;9327:72:4;4420:12:0;:25;-1:-1:-1;4154:116:1:o;2576:102:12:-;2632:13;2664:7;2657:14;;;;;:::i;6179:195:0:-;1196:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:10;:7;1045:6;;-1:-1:-1;;;;;1045:6:10;;973:85;1185:7;-1:-1:-1;;;;;1185:23:10;;1177:68;;;;-1:-1:-1;;;1177:68:10;;;;;;;:::i;:::-;6273:12:0::1;::::0;:17;6265:61:::1;;;::::0;-1:-1:-1;;;6265:61:0;;27710:2:23;6265:61:0::1;::::0;::::1;27692:21:23::0;27749:2;27729:18;;;27722:30;27788:33;27768:18;;;27761:61;27839:18;;6265:61:0::1;27682:181:23::0;6265:61:0::1;6336:12;:31:::0;6179:195::o;5895:278::-;1196:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:10;:7;1045:6;;-1:-1:-1;;;;;1045:6:10;;973:85;1185:7;-1:-1:-1;;;;;1185:23:10;;1177:68;;;;-1:-1:-1;;;1177:68:10;;;;;;;:::i;:::-;5975:38:0::1;::::0;-1:-1:-1;;;5975:38:0;;6007:4:::1;5975:38;::::0;::::1;11326:51:23::0;5961:11:0::1;::::0;-1:-1:-1;;;;;5975:23:0;::::1;::::0;::::1;::::0;11299:18:23;;5975:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5961:52;;6037:1;6031:3;:7;6023:38;;;::::0;-1:-1:-1;;;6023:38:0;;16808:2:23;6023:38:0::1;::::0;::::1;16790:21:23::0;16847:2;16827:18;;;16820:30;-1:-1:-1;;;16866:18:23;;;16859:48;16924:18;;6023:38:0::1;16780:168:23::0;6023:38:0::1;6137:5;-1:-1:-1::0;;;;;6130:22:0::1;;6153:7;1045:6:10::0;;-1:-1:-1;;;;;1045:6:10;;973:85;6153:7:0::1;6130:36;::::0;-1:-1:-1;;;;;;6130:36:0::1;::::0;;;;;;-1:-1:-1;;;;;12509:32:23;;;6130:36:0::1;::::0;::::1;12491:51:23::0;12558:18;;;12551:34;;;12464:18;;6130:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;5951:222;5895:278:::0;:::o;4209:290:12:-;4323:12;:10;:12::i;:::-;-1:-1:-1;;;;;4311:24:12;:8;-1:-1:-1;;;;;4311:24:12;;;4303:62;;;;-1:-1:-1;;;4303:62:12;;20915:2:23;4303:62:12;;;20897:21:23;20954:2;20934:18;;;20927:30;20993:27;20973:18;;;20966:55;21038:18;;4303:62:12;20887:175:23;4303:62:12;4421:8;4376:18;:32;4395:12;:10;:12::i;:::-;-1:-1:-1;;;;;4376:32:12;;;;;;;;;;;;;;;;;-1:-1:-1;4376:32:12;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4376:53:12;;;;;;;;;;;4459:12;:10;:12::i;:::-;-1:-1:-1;;;;;4444:48:12;;4483:8;4444:48;;;;14451:14:23;14444:22;14426:41;;14414:2;14399:18;;14381:92;4444:48:12;;;;;;;;4209:290;;:::o;659:24:0:-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;659:24:0;;-1:-1:-1;659:24:0;:::o;2351:108::-;2410:4;2433:19;2443:8;2433:9;:19::i;4805:521::-;4909:7;1196:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:10;:7;1045:6;;-1:-1:-1;;;;;1045:6:10;;973:85;1185:7;-1:-1:-1;;;;;1185:23:10;;1177:68;;;;-1:-1:-1;;;1177:68:10;;;;;;;:::i;:::-;448:5:0::1;4940:13;1622:10:15::0;:17;;1535:111;4940:13:0::1;:27;;4932:58;;;::::0;-1:-1:-1;;;4932:58:0;;21613:2:23;4932:58:0::1;::::0;::::1;21595:21:23::0;21652:2;21632:18;;;21625:30;-1:-1:-1;;;21671:18:23;;;21664:48;21729:18;;4932:58:0::1;21585:168:23::0;4932:58:0::1;5008:12;::::0;:17;5000:61:::1;;;::::0;-1:-1:-1;;;5000:61:0;;27710:2:23;5000:61:0::1;::::0;::::1;27692:21:23::0;27749:2;27729:18;;;27722:30;27788:33;27768:18;;;27761:61;27839:18;;5000:61:0::1;27682:181:23::0;5000:61:0::1;5104:8;5079:21;:33;;5071:73;;;::::0;-1:-1:-1;;;5071:73:0;;29610:2:23;5071:73:0::1;::::0;::::1;29592:21:23::0;29649:2;29629:18;;;29622:30;29688:29;29668:18;;;29661:57;29735:18;;5071:73:0::1;29582:177:23::0;5071:73:0::1;5175:29;::::0;-1:-1:-1;;;5175:29:0;;5198:4:::1;5175:29;::::0;::::1;11326:51:23::0;5208:3:0::1;::::0;5175:4:::1;-1:-1:-1::0;;;;;5175:14:0::1;::::0;::::1;::::0;11299:18:23;;5175:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;5154:98;;;::::0;-1:-1:-1;;;5154:98:0;;23466:2:23;5154:98:0::1;::::0;::::1;23448:21:23::0;23505:2;23485:18;;;23478:30;-1:-1:-1;;;23524:18:23;;;23517:45;23579:18;;5154:98:0::1;23438:165:23::0;5154:98:0::1;5269:50;5287:7;5296:3;5301:17;5269;:50::i;5430:320:12:-:0;5599:41;5618:12;:10;:12::i;:::-;5632:7;5599:18;:41::i;:::-;5591:103;;;;-1:-1:-1;;;5591:103:12;;;;;;;:::i;:::-;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;5669:99:0:-;1196:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:10;:7;1045:6;;-1:-1:-1;;;;;1045:6:10;;973:85;1185:7;-1:-1:-1;;;;;1185:23:10;;1177:68;;;;-1:-1:-1;;;1177:68:10;;;;;;;:::i;:::-;5737:12:0::1;:24:::0;;-1:-1:-1;;5737:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;5669:99::o;1731:251:1:-;1829:13;1918:14;:12;:14::i;:::-;1934:26;1951:8;1934:16;:26::i;:::-;1901:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1858:117;;1731:251;;;:::o;2095:161::-;2172:16;2190:14;2228:7;1045:6:10;;-1:-1:-1;;;;;1045:6:10;;973:85;2228:7:1;2237:11;;2220:29;;;;2095:161;;;:::o;1624:101::-;1677:13;1708:10;1701:17;;;;;:::i;3930:115::-;1196:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:10;:7;1045:6;;-1:-1:-1;;;;;1045:6:10;;973:85;1185:7;-1:-1:-1;;;;;1185:23:10;;1177:68;;;;-1:-1:-1;;;1177:68:10;;;;;;;:::i;:::-;4008:16:1::1;:30:::0;;-1:-1:-1;;;;;;4008:30:1::1;-1:-1:-1::0;;;;;4008:30:1;;;::::1;::::0;;;::::1;::::0;;3930:115::o;1663:461:0:-;1762:7;:14;1711:16;;1790:17;1786:332;;-1:-1:-1;;1830:16:0;;;1844:1;1830:16;;;;;;;;;1663:461::o;1786:332::-;1877:23;1917:12;1903:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1903:27:0;;1877:53;;1944:13;1971:110;1995:12;1987:5;:20;1971:110;;;2052:7;2060:5;2052:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2052:14:0;2036:6;2043:5;2036:13;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2036:30:0;;;:13;;;;;;;;;;;:30;2009:7;;;;:::i;:::-;;;;1971:110;;;-1:-1:-1;2101:6:0;1663:461;-1:-1:-1;;1663:461:0:o;1786:332::-;1729:395;1663:461;:::o;1366:119::-;1410:13;1435:43;;;;;;;;;;;;;;;;;;;1366:119;:::o;2262:370:1:-;2447:20;;2490:28;;-1:-1:-1;;;2490:28:1;;-1:-1:-1;;;;;11344:32:23;;;2490:28:1;;;11326:51:23;2383:4:1;;2447:20;;;2482:49;;;;2447:20;;2490:21;;11299:18:23;;2490:28:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2482:49:1;;2478:91;;;2554:4;2547:11;;;;;2478:91;-1:-1:-1;;;;;4685:25:12;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;2586:39:1;2579:46;2262:370;-1:-1:-1;;;;2262:370:1:o;803:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1491:162:0:-;1595:7;1635:11;;1625:7;:21;;;;:::i;1846:189:10:-;1196:12;:10;:12::i;:::-;-1:-1:-1;;;;;1185:23:10;:7;1045:6;;-1:-1:-1;;;;;1045:6:10;;973:85;1185:7;-1:-1:-1;;;;;1185:23:10;;1177:68;;;;-1:-1:-1;;;1177:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1934:22:10;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:10;;18680:2:23;1926:73:10::1;::::0;::::1;18662:21:23::0;18719:2;18699:18;;;18692:30;18758:34;18738:18;;;18731:62;-1:-1:-1;;;18809:18:23;;;18802:36;18855:19;;1926:73:10::1;18652:228:23::0;1926:73:10::1;2009:19;2019:8;2009:9;:19::i;3762:495:0:-:0;3850:10;3829:17;3837:8;3829:7;:17::i;:::-;-1:-1:-1;;;;;3829:31:0;;3821:60;;;;-1:-1:-1;;;3821:60:0;;21960:2:23;3821:60:0;;;21942:21:23;21999:2;21979:18;;;21972:30;-1:-1:-1;;;22018:18:23;;;22011:46;22074:18;;3821:60:0;21932:166:23;3821:60:0;3899:19;3909:8;3899:9;:19::i;:::-;3891:47;;;;-1:-1:-1;;;3891:47:0;;21269:2:23;3891:47:0;;;21251:21:23;21308:2;21288:18;;;21281:30;-1:-1:-1;;;21327:18:23;;;21320:45;21382:18;;3891:47:0;21241:165:23;3891:47:0;3970:37;3996:10;3970:25;:37::i;:::-;3969:38;3948:109;;;;-1:-1:-1;;;3948:109:0;;30379:2:23;3948:109:0;;;30361:21:23;30418:2;30398:18;;;30391:30;30457:26;30437:18;;;30430:54;30501:18;;3948:109:0;30351:174:23;3948:109:0;4075:7;:14;4092:2;-1:-1:-1;4067:51:0;;;;-1:-1:-1;;;4067:51:0;;25056:2:23;4067:51:0;;;25038:21:23;25095:2;25075:18;;;25068:30;-1:-1:-1;;;25114:18:23;;;25107:49;25173:18;;4067:51:0;25028:169:23;4067:51:0;4128:7;:24;;;;;;;-1:-1:-1;4128:24:0;;;;;;;;-1:-1:-1;;;;;;4128:24:0;4141:10;4128:24;;;;;;4167:36;;14624:25:23;;;4167:36:0;;14612:2:23;14597:18;4167:36:0;;;;;;;4213:37;;4221:10;;4213:37;;4242:7;;4213:37;;;;4242:7;4221:10;4213:37;;;;;;;;;;;;;;;;;;;3036:720;3112:12;;;;3104:45;;;;-1:-1:-1;;;3104:45:0;;17155:2:23;3104:45:0;;;17137:21:23;17194:2;17174:18;;;17167:30;-1:-1:-1;;;17213:18:23;;;17206:50;17273:18;;3104:45:0;17127:170:23;3104:45:0;3159:21;3197:11;;3183;:25;;;;:::i;:::-;3159:49;;3218:17;3238:13;1622:10:15;:17;;1535:111;3238:13:0;3218:33;;3282:13;3269:9;:26;;3261:55;;;;-1:-1:-1;;;3261:55:0;;17504:2:23;3261:55:0;;;17486:21:23;17543:2;17523:18;;;17516:30;-1:-1:-1;;;17562:18:23;;;17555:46;17618:18;;3261:55:0;17476:166:23;3261:55:0;448:5;3348:23;3362:9;3348:11;:23;:::i;:::-;3347:39;;3326:117;;;;-1:-1:-1;;;3326:117:0;;28832:2:23;3326:117:0;;;28814:21:23;28871:2;28851:18;;;28844:30;28910:33;28890:18;;;28883:61;28961:18;;3326:117:0;28804:181:23;3326:117:0;3459:9;3454:124;3478:11;3474:1;:15;3454:124;;;3510:32;3520:10;3532:9;3510;:32::i;:::-;3556:11;;;;:::i;:::-;;;;3491:3;;;;;:::i;:::-;;;;3454:124;;;;3659:9;3643:13;:25;3639:111;;;3692:10;3684:55;3713:25;3725:13;3713:9;:25;:::i;:::-;3684:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95:631:6;163:22;205:10;227:4;205:27;201:496;;;248:18;269:8;;248:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;307:8:6;514:17;508:24;-1:-1:-1;;;;;483:131:6;;-1:-1:-1;201:496:6;;-1:-1:-1;201:496:6;;-1:-1:-1;675:10:6;201:496;95:631;:::o;1496:300:12:-;1598:4;-1:-1:-1;;;;;;1633:40:12;;-1:-1:-1;;;1633:40:12;;:104;;-1:-1:-1;;;;;;;1689:48:12;;-1:-1:-1;;;1689:48:12;1633:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:21;;;1753:36:12;763:155:21;2638:118:1;2692:14;2725:24;:22;:24::i;:::-;2718:31;;2638:118;:::o;11073:171:12:-;11147:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11147:29:12;-1:-1:-1;;;;;11147:29:12;;;;;;;;:24;;11200:23;11147:24;11200:14;:23::i;:::-;-1:-1:-1;;;;;11191:46:12;;;;;;;;;;;11073:171;;:::o;2484:470:9:-;2656:4;-1:-1:-1;;;;;2680:20:9;;2672:70;;;;-1:-1:-1;;;2672:70:9;;23060:2:23;2672:70:9;;;23042:21:23;23099:2;23079:18;;;23072:30;23138:34;23118:18;;;23111:62;-1:-1:-1;;;23189:18:23;;;23182:35;23234:19;;2672:70:9;23032:227:23;2672:70:9;2793:154;2820:47;2839:27;2859:6;2839:19;:27::i;:::-;2820:18;:47::i;:::-;2793:154;;;;;;;;;;;;15984:25:23;;;;16057:4;16045:17;;16025:18;;;16018:45;16079:18;;;16072:34;;;16122:18;;;16115:34;;;15956:19;;2793:154:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2771:176:9;:6;-1:-1:-1;;;;;2771:176:9;;2752:195;;2484:470;;;;;;;:::o;8179:108:12:-;8254:26;8264:2;8268:7;8254:26;;;;;;;;;;;;:9;:26::i;7505:344::-;7598:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:12;7614:73;;;;-1:-1:-1;;;7614:73:12;;22305:2:23;7614:73:12;;;22287:21:23;22344:2;22324:18;;;22317:30;22383:34;22363:18;;;22356:62;-1:-1:-1;;;22434:18:23;;;22427:42;22486:19;;7614:73:12;22277:234:23;7614:73:12;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;-1:-1:-1;;;;;7754:16:12;:7;-1:-1:-1;;;;;7754:16:12;;:51;;;;7798:7;-1:-1:-1;;;;;7774:31:12;:20;7786:7;7774:11;:20::i;:::-;-1:-1:-1;;;;;7774:31:12;;7754:51;:87;;;;7809:32;7826:5;7833:7;7809:16;:32::i;10402:560::-;10556:4;-1:-1:-1;;;;;10529:31:12;:23;10544:7;10529:14;:23::i;:::-;-1:-1:-1;;;;;10529:31:12;;10521:85;;;;-1:-1:-1;;;10521:85:12;;26898:2:23;10521:85:12;;;26880:21:23;26937:2;26917:18;;;26910:30;26976:34;26956:18;;;26949:62;-1:-1:-1;;;27027:18:23;;;27020:39;27076:19;;10521:85:12;26870:231:23;10521:85:12;-1:-1:-1;;;;;10624:16:12;;10616:65;;;;-1:-1:-1;;;10616:65:12;;20510:2:23;10616:65:12;;;20492:21:23;20549:2;20529:18;;;20522:30;20588:34;20568:18;;;20561:62;-1:-1:-1;;;20639:18:23;;;20632:34;20683:19;;10616:65:12;20482:226:23;10616:65:12;10692:39;10713:4;10719:2;10723:7;10692:20;:39::i;:::-;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;-1:-1:-1;;;;;10833:15:12;;;;;;:9;:15;;;;;:20;;10852:1;;10833:15;:20;;10852:1;;10833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10863:13:12;;;;;;:9;:13;;;;;:18;;10880:1;;10863:13;:18;;10880:1;;10863:18;:::i;:::-;;;;-1:-1:-1;;10891:16:12;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10891:21:12;-1:-1:-1;;;;;10891:21:12;;;;;;;;;10928:27;;10891:16;;10928:27;;;;;;;10402:560;;;:::o;2649:317:0:-;2813:7;:14;2751:4;;;;2837:101;2853:12;2849:1;:16;2837:101;;;2904:10;-1:-1:-1;;;;;2890:24:0;:7;2898:1;2890:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;2890:10:0;:24;2886:41;;;-1:-1:-1;2923:4:0;;2649:317;-1:-1:-1;;;2649:317:0:o;2886:41::-;2867:3;;;;:::i;:::-;;;;2837:101;;;-1:-1:-1;2954:5:0;;2649:317;-1:-1:-1;;;2649:317:0:o;9730:348:12:-;9789:13;9805:23;9820:7;9805:14;:23::i;:::-;9789:39;;9839:48;9860:5;9875:1;9879:7;9839:20;:48::i;:::-;9925:29;9942:1;9946:7;9925:8;:29::i;:::-;-1:-1:-1;;;;;9965:16:12;;;;;;:9;:16;;;;;:21;;9985:1;;9965:16;:21;;9985:1;;9965:21;:::i;:::-;;;;-1:-1:-1;;10003:16:12;;;;:7;:16;;;;;;9996:23;;-1:-1:-1;;;;;;9996:23:12;;;10035:36;10011:7;;10003:16;-1:-1:-1;;;;;10035:36:12;;;;;10003:16;;10035:36;9779:299;9730:348;:::o;2041:169:10:-;2115:6;;;-1:-1:-1;;;;;2131:17:10;;;-1:-1:-1;;;;;;2131:17:10;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2086:124;2041:169;:::o;4458:304:0:-;4512:4;4551:1;4536:12;;:16;4528:53;;;;-1:-1:-1;;;4528:53:0;;20157:2:23;4528:53:0;;;20139:21:23;20196:2;20176:18;;;20169:30;20235:26;20215:18;;;20208:54;20279:18;;4528:53:0;20129:174:23;4528:53:0;4591:14;4689:5;4657:2;4661:12;;4640:34;;;;;;;;9262:19:23;;;9306:2;9297:12;;9290:28;9343:2;9334:12;;9252:100;4640:34:0;;;;;;;;;;;;;4630:45;;;;;;4622:54;;4608:86;;;;:::i;:::-;4591:103;;4718:2;4708:6;:12;4704:29;;-1:-1:-1;4729:4:0;;4458:304;-1:-1:-1;;4458:304:0:o;4704:29::-;-1:-1:-1;4750:5:0;;4458:304;-1:-1:-1;;4458:304:0:o;7410:1013:4:-;7506:17;7533:4;-1:-1:-1;;;;;7533:20:4;;7554:14;7570:4;7587:8;7597:5;7576:27;;;;;;;;14834:25:23;;;14890:2;14875:18;;14868:34;14822:2;14807:18;;14789:119;7576:27:4;;;;;;;;;;;;;7533:71;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;7835:15:4;7903:16;;;:6;:16;;;;;;;;;970:51:5;;;;;15144:25:23;;;15185:18;;;15178:34;;;7896:4:4;15228:18:23;;;15221:60;15297:18;;;;15290:34;;;970:51:5;;;;;;;;;;15116:19:23;;;;970:51:5;;;960:62;;;;;;;;;8350:16:4;;;;;;;:23;;8371:1;8350:20;:23::i;:::-;8331:16;;;;:6;:16;;;;;:42;8386:32;8338:8;8410:7;1532:41:5;;;;;;;9262:19:23;;;;9297:12;;;9290:28;;;;1532:41:5;;;;;;;;;9334:12:23;;;;1532:41:5;;1522:52;;;;;;1408:171;8386:32:4;8379:39;7410:1013;-1:-1:-1;;;;;7410:1013:4:o;6612:307:12:-;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;-1:-1:-1;;;6801:111:12;;;;;;;:::i;275:703:20:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:20;;;;;;;;;;;;-1:-1:-1;;;574:10:20;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:20;;-1:-1:-1;720:2:20;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:20;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:20;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:20;;;;;;;;-1:-1:-1;919:11:20;928:2;919:11;;:::i;:::-;;;791:150;;1971:396:9;2078:7;221:106;;;;;;;;;;;;;;;;;198:139;;;;;;;2226:12;;2260:11;;;;2303:24;;;;;2293:35;;;;;;2147:199;;;;;15144:25:23;;;15200:2;15185:18;;15178:34;;;;-1:-1:-1;;;;;15248:32:23;15243:2;15228:18;;15221:60;15312:2;15297:18;;15290:34;15131:3;15116:19;;15098:232;2147:199:9;;;;;;;;;;;;;2120:240;;;;;;2101:259;;1971:396;;;:::o;1884:249:7:-;1980:7;2078:20;1341:15;;;1264:99;2078:20;2049:63;;-1:-1:-1;;;2049:63:7;;;10789:27:23;10832:11;;;10825:27;;;;10868:12;;;10861:28;;;10905:12;;2049:63:7;10779:144:23;8508:311:12;8633:18;8639:2;8643:7;8633:5;:18::i;:::-;8682:54;8713:1;8717:2;8721:7;8730:5;8682:22;:54::i;:::-;8661:151;;;;-1:-1:-1;;;8661:151:12;;;;;;;:::i;2544:572:15:-;-1:-1:-1;;;;;2743:18:15;;2739:183;;2777:40;2809:7;3925:10;:17;;3898:24;;;;:15;:24;;;;;:44;;;3952:24;;;;;;;;;;;;3822:161;2777:40;2739:183;;;2846:2;-1:-1:-1;;;;;2838:10:15;:4;-1:-1:-1;;;;;2838:10:15;;2834:88;;2864:47;2897:4;2903:7;2864:32;:47::i;:::-;-1:-1:-1;;;;;2935:16:15;;2931:179;;2967:45;3004:7;2967:36;:45::i;2931:179::-;3039:4;-1:-1:-1;;;;;3033:10:15;:2;-1:-1:-1;;;;;3033:10:15;;3029:81;;3059:40;3087:2;3091:7;3059:27;:40::i;863:162:3:-;921:7;;948:5;952:1;948;:5;:::i;:::-;936:17;;972:1;967;:6;;959:46;;;;-1:-1:-1;;;959:46:3;;19801:2:23;959:46:3;;;19783:21:23;19840:2;19820:18;;;19813:30;19879:29;19859:18;;;19852:57;19926:18;;959:46:3;19773:177:23;959:46:3;1019:1;863:162;-1:-1:-1;;;863:162:3:o;11797:782:12:-;11947:4;-1:-1:-1;;;;;11967:13:12;;1034:20:18;1080:8;11963:610:12;;12018:2;-1:-1:-1;;;;;12002:36:12;;12039:12;:10;:12::i;:::-;12053:4;12059:7;12068:5;12002:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12002:72:12;;;;;;;;-1:-1:-1;;12002:72:12;;;;;;;;;;;;:::i;:::-;;;11998:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12245:13:12;;12241:266;;12287:60;;-1:-1:-1;;;12287:60:12;;;;;;;:::i;12241:266::-;12459:6;12453:13;12444:6;12440:2;12436:15;12429:38;11998:523;-1:-1:-1;;;;;;12124:55:12;-1:-1:-1;;;12124:55:12;;-1:-1:-1;12117:62:12;;11963:610;-1:-1:-1;12558:4:12;12551:11;;9141:372;-1:-1:-1;;;;;9220:16:12;;9212:61;;;;-1:-1:-1;;;9212:61:12;;25763:2:23;9212:61:12;;;25745:21:23;;;25782:18;;;25775:30;25841:34;25821:18;;;25814:62;25893:18;;9212:61:12;25735:182:23;9212:61:12;7287:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:12;:30;9283:58;;;;-1:-1:-1;;;9283:58:12;;19444:2:23;9283:58:12;;;19426:21:23;19483:2;19463:18;;;19456:30;19522;19502:18;;;19495:58;19570:18;;9283:58:12;19416:178:23;9283:58:12;9352:45;9381:1;9385:2;9389:7;9352:20;:45::i;:::-;-1:-1:-1;;;;;9408:13:12;;;;;;:9;:13;;;;;:18;;9425:1;;9408:13;:18;;9425:1;;9408:18;:::i;:::-;;;;-1:-1:-1;;9436:16:12;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9436:21:12;-1:-1:-1;;;;;9436:21:12;;;;;;;;9473:33;;9436:16;;;9473:33;;9436:16;;9473:33;9141:372;;:::o;4600:970:15:-;4862:22;4912:1;4887:22;4904:4;4887:16;:22::i;:::-;:26;;;;:::i;:::-;4923:18;4944:26;;;:17;:26;;;;;;4862:51;;-1:-1:-1;5074:28:15;;;5070:323;;-1:-1:-1;;;;;5140:18:15;;5118:19;5140:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5189:30;;;;;;:44;;;5305:30;;:17;:30;;;;;:43;;;5070:323;-1:-1:-1;5486:26:15;;;;:17;:26;;;;;;;;5479:33;;;-1:-1:-1;;;;;5529:18:15;;;;;:12;:18;;;;;:34;;;;;;;5522:41;4600:970::o;5858:1061::-;6132:10;:17;6107:22;;6132:21;;6152:1;;6132:21;:::i;:::-;6163:18;6184:24;;;:15;:24;;;;;;6552:10;:26;;6107:46;;-1:-1:-1;6184:24:15;;6107:46;;6552:26;;;;;;:::i;:::-;;;;;;;;;6530:48;;6614:11;6589:10;6600;6589:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6693:28;;;:15;:28;;;;;;;:41;;;6862:24;;;;;6855:31;6896:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5929:990;;;5858:1061;:::o;3410:217::-;3494:14;3511:20;3528:2;3511:16;:20::i;:::-;-1:-1:-1;;;;;3541:16:15;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3585:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3410:217:15:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:23;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:23;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:748::-;479:5;532:3;525:4;517:6;513:17;509:27;499:2;;550:1;547;540:12;499:2;586:6;573:20;612:4;636:60;652:43;692:2;652:43;:::i;:::-;636:60;:::i;:::-;718:3;742:2;737:3;730:15;770:2;765:3;761:12;754:19;;805:2;797:6;793:15;857:3;852:2;846;843:1;839:10;831:6;827:23;823:32;820:41;817:2;;;874:1;871;864:12;817:2;896:1;906:238;920:2;917:1;914:9;906:238;;;991:3;978:17;1008:31;1033:5;1008:31;:::i;:::-;1052:18;;1090:12;;;;1122;;;;938:1;931:9;906:238;;;-1:-1:-1;1162:5:23;;489:684;-1:-1:-1;;;;;;;489:684:23:o;1178:220::-;1220:5;1273:3;1266:4;1258:6;1254:17;1250:27;1240:2;;1291:1;1288;1281:12;1240:2;1313:79;1388:3;1379:6;1366:20;1359:4;1351:6;1347:17;1313:79;:::i;1403:247::-;1462:6;1515:2;1503:9;1494:7;1490:23;1486:32;1483:2;;;1531:1;1528;1521:12;1483:2;1570:9;1557:23;1589:31;1614:5;1589:31;:::i;1655:388::-;1723:6;1731;1784:2;1772:9;1763:7;1759:23;1755:32;1752:2;;;1800:1;1797;1790:12;1752:2;1839:9;1826:23;1858:31;1883:5;1858:31;:::i;:::-;1908:5;-1:-1:-1;1965:2:23;1950:18;;1937:32;1978:33;1937:32;1978:33;:::i;:::-;2030:7;2020:17;;;1742:301;;;;;:::o;2048:456::-;2125:6;2133;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:2;;;2210:1;2207;2200:12;2162:2;2249:9;2236:23;2268:31;2293:5;2268:31;:::i;:::-;2318:5;-1:-1:-1;2375:2:23;2360:18;;2347:32;2388:33;2347:32;2388:33;:::i;:::-;2152:352;;2440:7;;-1:-1:-1;;;2494:2:23;2479:18;;;;2466:32;;2152:352::o;2509:667::-;2604:6;2612;2620;2628;2636;2689:3;2677:9;2668:7;2664:23;2660:33;2657:2;;;2706:1;2703;2696:12;2657:2;2745:9;2732:23;2764:31;2789:5;2764:31;:::i;:::-;2814:5;-1:-1:-1;2871:2:23;2856:18;;2843:32;2884:33;2843:32;2884:33;:::i;:::-;2936:7;-1:-1:-1;2990:2:23;2975:18;;2962:32;;-1:-1:-1;3046:2:23;3031:18;;3018:32;3059:33;3018:32;3059:33;:::i;:::-;2647:529;;;;-1:-1:-1;2647:529:23;;3165:3;3150:19;3137:33;;2647:529;-1:-1:-1;;2647:529:23:o;3181:665::-;3276:6;3284;3292;3300;3353:3;3341:9;3332:7;3328:23;3324:33;3321:2;;;3370:1;3367;3360:12;3321:2;3409:9;3396:23;3428:31;3453:5;3428:31;:::i;:::-;3478:5;-1:-1:-1;3535:2:23;3520:18;;3507:32;3548:33;3507:32;3548:33;:::i;:::-;3600:7;-1:-1:-1;3654:2:23;3639:18;;3626:32;;-1:-1:-1;3709:2:23;3694:18;;3681:32;3736:18;3725:30;;3722:2;;;3768:1;3765;3758:12;3722:2;3791:49;3832:7;3823:6;3812:9;3808:22;3791:49;:::i;:::-;3781:59;;;3311:535;;;;;;;:::o;3851:382::-;3916:6;3924;3977:2;3965:9;3956:7;3952:23;3948:32;3945:2;;;3993:1;3990;3983:12;3945:2;4032:9;4019:23;4051:31;4076:5;4051:31;:::i;:::-;4101:5;-1:-1:-1;4158:2:23;4143:18;;4130:32;4171:30;4130:32;4171:30;:::i;4238:758::-;4340:6;4348;4356;4364;4372;4425:3;4413:9;4404:7;4400:23;4396:33;4393:2;;;4442:1;4439;4432:12;4393:2;4481:9;4468:23;4500:31;4525:5;4500:31;:::i;:::-;4550:5;-1:-1:-1;4606:2:23;4591:18;;4578:32;4633:18;4622:30;;4619:2;;;4665:1;4662;4655:12;4619:2;4688:49;4729:7;4720:6;4709:9;4705:22;4688:49;:::i;:::-;4678:59;;;4784:2;4773:9;4769:18;4756:32;4746:42;;4835:2;4824:9;4820:18;4807:32;4797:42;;4891:3;4880:9;4876:19;4863:33;4940:4;4931:7;4927:18;4918:7;4915:31;4905:2;;4960:1;4957;4950:12;4905:2;4983:7;4973:17;;;4383:613;;;;;;;;:::o;5001:315::-;5069:6;5077;5130:2;5118:9;5109:7;5105:23;5101:32;5098:2;;;5146:1;5143;5136:12;5098:2;5185:9;5172:23;5204:31;5229:5;5204:31;:::i;:::-;5254:5;5306:2;5291:18;;;;5278:32;;-1:-1:-1;;;5088:228:23:o;5321:1151::-;5439:6;5447;5500:2;5488:9;5479:7;5475:23;5471:32;5468:2;;;5516:1;5513;5506:12;5468:2;5556:9;5543:23;5585:18;5626:2;5618:6;5615:14;5612:2;;;5642:1;5639;5632:12;5612:2;5680:6;5669:9;5665:22;5655:32;;5725:7;5718:4;5714:2;5710:13;5706:27;5696:2;;5747:1;5744;5737:12;5696:2;5783;5770:16;5805:4;5829:60;5845:43;5885:2;5845:43;:::i;5829:60::-;5911:3;5935:2;5930:3;5923:15;5963:2;5958:3;5954:12;5947:19;;5994:2;5990;5986:11;6042:7;6037:2;6031;6028:1;6024:10;6020:2;6016:19;6012:28;6009:41;6006:2;;;6063:1;6060;6053:12;6006:2;6085:1;6076:10;;6095:163;6109:2;6106:1;6103:9;6095:163;;;6166:17;;6154:30;;6127:1;6120:9;;;;;6204:12;;;;6236;;6095:163;;;-1:-1:-1;6277:5:23;-1:-1:-1;;6320:18:23;;6307:32;;-1:-1:-1;;6351:16:23;;;6348:2;;;6380:1;6377;6370:12;6348:2;;6403:63;6458:7;6447:8;6436:9;6432:24;6403:63;:::i;:::-;6393:73;;;5458:1014;;;;;:::o;6477:241::-;6533:6;6586:2;6574:9;6565:7;6561:23;6557:32;6554:2;;;6602:1;6599;6592:12;6554:2;6641:9;6628:23;6660:28;6682:5;6660:28;:::i;6723:245::-;6790:6;6843:2;6831:9;6822:7;6818:23;6814:32;6811:2;;;6859:1;6856;6849:12;6811:2;6891:9;6885:16;6910:28;6932:5;6910:28;:::i;6973:248::-;7041:6;7049;7102:2;7090:9;7081:7;7077:23;7073:32;7070:2;;;7118:1;7115;7108:12;7070:2;-1:-1:-1;;7141:23:23;;;7211:2;7196:18;;;7183:32;;-1:-1:-1;7060:161:23:o;7226:245::-;7284:6;7337:2;7325:9;7316:7;7312:23;7308:32;7305:2;;;7353:1;7350;7343:12;7305:2;7392:9;7379:23;7411:30;7435:5;7411:30;:::i;7476:249::-;7545:6;7598:2;7586:9;7577:7;7573:23;7569:32;7566:2;;;7614:1;7611;7604:12;7566:2;7646:9;7640:16;7665:30;7689:5;7665:30;:::i;7730:279::-;7828:6;7881:2;7869:9;7860:7;7856:23;7852:32;7849:2;;;7897:1;7894;7887:12;7849:2;7929:9;7923:16;7948:31;7973:5;7948:31;:::i;8014:450::-;8083:6;8136:2;8124:9;8115:7;8111:23;8107:32;8104:2;;;8152:1;8149;8142:12;8104:2;8192:9;8179:23;8225:18;8217:6;8214:30;8211:2;;;8257:1;8254;8247:12;8211:2;8280:22;;8333:4;8325:13;;8321:27;-1:-1:-1;8311:2:23;;8362:1;8359;8352:12;8311:2;8385:73;8450:7;8445:2;8432:16;8427:2;8423;8419:11;8385:73;:::i;8469:180::-;8528:6;8581:2;8569:9;8560:7;8556:23;8552:32;8549:2;;;8597:1;8594;8587:12;8549:2;-1:-1:-1;8620:23:23;;8539:110;-1:-1:-1;8539:110:23:o;8654:184::-;8724:6;8777:2;8765:9;8756:7;8752:23;8748:32;8745:2;;;8793:1;8790;8783:12;8745:2;-1:-1:-1;8816:16:23;;8735:103;-1:-1:-1;8735:103:23:o;8843:257::-;8884:3;8922:5;8916:12;8949:6;8944:3;8937:19;8965:63;9021:6;9014:4;9009:3;9005:14;8998:4;8991:5;8987:16;8965:63;:::i;:::-;9082:2;9061:15;-1:-1:-1;;9057:29:23;9048:39;;;;9089:4;9044:50;;8892:208;-1:-1:-1;;8892:208:23:o;9357:274::-;9486:3;9524:6;9518:13;9540:53;9586:6;9581:3;9574:4;9566:6;9562:17;9540:53;:::i;:::-;9609:16;;;;;9494:137;-1:-1:-1;;9494:137:23:o;9636:415::-;9793:3;9831:6;9825:13;9847:53;9893:6;9888:3;9881:4;9873:6;9869:17;9847:53;:::i;:::-;9969:2;9965:15;;;;-1:-1:-1;;9961:53:23;9922:16;;;;9947:68;;;10042:2;10031:14;;9801:250;-1:-1:-1;;9801:250:23:o;10056:470::-;10235:3;10273:6;10267:13;10289:53;10335:6;10330:3;10323:4;10315:6;10311:17;10289:53;:::i;:::-;10405:13;;10364:16;;;;10427:57;10405:13;10364:16;10461:4;10449:17;;10427:57;:::i;:::-;10500:20;;10243:283;-1:-1:-1;;;;10243:283:23:o;11388:431::-;-1:-1:-1;;;;;11645:15:23;;;11627:34;;11697:15;;11692:2;11677:18;;11670:43;11749:2;11744;11729:18;;11722:30;;;11570:4;;11769:44;;11794:18;;11786:6;11769:44;:::i;11824:488::-;-1:-1:-1;;;;;12093:15:23;;;12075:34;;12145:15;;12140:2;12125:18;;12118:43;12192:2;12177:18;;12170:34;;;12240:3;12235:2;12220:18;;12213:31;;;12018:4;;12261:45;;12286:19;;12278:6;12261:45;:::i;:::-;12253:53;12027:285;-1:-1:-1;;;;;;12027:285:23:o;12596:385::-;12828:1;12824;12819:3;12815:11;12811:19;12803:6;12799:32;12788:9;12781:51;12868:6;12863:2;12852:9;12848:18;12841:34;12911:2;12906;12895:9;12891:18;12884:30;12762:4;12931:44;12971:2;12960:9;12956:18;12948:6;12931:44;:::i;12986:658::-;13157:2;13209:21;;;13279:13;;13182:18;;;13301:22;;;13128:4;;13157:2;13380:15;;;;13354:2;13339:18;;;13128:4;13423:195;13437:6;13434:1;13431:13;13423:195;;;13502:13;;-1:-1:-1;;;;;13498:39:23;13486:52;;13593:15;;;;13558:12;;;;13534:1;13452:9;13423:195;;;-1:-1:-1;13635:3:23;;13137:507;-1:-1:-1;;;;;;13137:507:23:o;13649:632::-;13820:2;13872:21;;;13942:13;;13845:18;;;13964:22;;;13791:4;;13820:2;14043:15;;;;14017:2;14002:18;;;13791:4;14086:169;14100:6;14097:1;14094:13;14086:169;;;14161:13;;14149:26;;14230:15;;;;14195:12;;;;14122:1;14115:9;14086:169;;16160:217;16307:2;16296:9;16289:21;16270:4;16327:44;16367:2;16356:9;16352:18;16344:6;16327:44;:::i;18059:414::-;18261:2;18243:21;;;18300:2;18280:18;;;18273:30;18339:34;18334:2;18319:18;;18312:62;-1:-1:-1;;;18405:2:23;18390:18;;18383:48;18463:3;18448:19;;18233:240::o;26335:356::-;26537:2;26519:21;;;26556:18;;;26549:30;26615:34;26610:2;26595:18;;26588:62;26682:2;26667:18;;26509:182::o;28990:413::-;29192:2;29174:21;;;29231:2;29211:18;;;29204:30;29270:34;29265:2;29250:18;;29243:62;-1:-1:-1;;;29336:2:23;29321:18;;29314:47;29393:3;29378:19;;29164:239::o;30712:275::-;30783:2;30777:9;30848:2;30829:13;;-1:-1:-1;;30825:27:23;30813:40;;30883:18;30868:34;;30904:22;;;30865:62;30862:2;;;30930:18;;:::i;:::-;30966:2;30959:22;30757:230;;-1:-1:-1;30757:230:23:o;30992:183::-;31052:4;31085:18;31077:6;31074:30;31071:2;;;31107:18;;:::i;:::-;-1:-1:-1;31152:1:23;31148:14;31164:4;31144:25;;31061:114::o;31180:128::-;31220:3;31251:1;31247:6;31244:1;31241:13;31238:2;;;31257:18;;:::i;:::-;-1:-1:-1;31293:9:23;;31228:80::o;31313:120::-;31353:1;31379;31369:2;;31384:18;;:::i;:::-;-1:-1:-1;31418:9:23;;31359:74::o;31438:168::-;31478:7;31544:1;31540;31536:6;31532:14;31529:1;31526:21;31521:1;31514:9;31507:17;31503:45;31500:2;;;31551:18;;:::i;:::-;-1:-1:-1;31591:9:23;;31490:116::o;31611:125::-;31651:4;31679:1;31676;31673:8;31670:2;;;31684:18;;:::i;:::-;-1:-1:-1;31721:9:23;;31660:76::o;31741:258::-;31813:1;31823:113;31837:6;31834:1;31831:13;31823:113;;;31913:11;;;31907:18;31894:11;;;31887:39;31859:2;31852:10;31823:113;;;31954:6;31951:1;31948:13;31945:2;;;-1:-1:-1;;31989:1:23;31971:16;;31964:27;31794:205::o;32004:380::-;32083:1;32079:12;;;;32126;;;32147:2;;32201:4;32193:6;32189:17;32179:27;;32147:2;32254;32246:6;32243:14;32223:18;32220:38;32217:2;;;32300:10;32295:3;32291:20;32288:1;32281:31;32335:4;32332:1;32325:15;32363:4;32360:1;32353:15;32389:135;32428:3;-1:-1:-1;;32449:17:23;;32446:2;;;32469:18;;:::i;:::-;-1:-1:-1;32516:1:23;32505:13;;32436:88::o;32529:112::-;32561:1;32587;32577:2;;32592:18;;:::i;:::-;-1:-1:-1;32626:9:23;;32567:74::o;32646:127::-;32707:10;32702:3;32698:20;32695:1;32688:31;32738:4;32735:1;32728:15;32762:4;32759:1;32752:15;32778:127;32839:10;32834:3;32830:20;32827:1;32820:31;32870:4;32867:1;32860:15;32894:4;32891:1;32884:15;32910:127;32971:10;32966:3;32962:20;32959:1;32952:31;33002:4;32999:1;32992:15;33026:4;33023:1;33016:15;33042:127;33103:10;33098:3;33094:20;33091:1;33084:31;33134:4;33131:1;33124:15;33158:4;33155:1;33148:15;33174:127;33235:10;33230:3;33226:20;33223:1;33216:31;33266:4;33263:1;33256:15;33290:4;33287:1;33280:15;33306:131;-1:-1:-1;;;;;33381:31:23;;33371:42;;33361:2;;33427:1;33424;33417:12;33442:118;33528:5;33521:13;33514:21;33507:5;33504:32;33494:2;;33550:1;33547;33540:12;33565:131;-1:-1:-1;;;;;;33639:32:23;;33629:43;;33619:2;;33686:1;33683;33676:12

Swarm Source

ipfs://5adf4d24848f3e599a1110d0be7c407fa8f355a20311f48c1565b436f59758af
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.