ETH Price: $2,518.19 (-0.26%)
Gas: 1 Gwei

Token

Emojiverse (EMOJI)
 

Overview

Max Total Supply

1,423 EMOJI

Holders

190

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lank.eth
Balance
1 EMOJI
0x6C2D65145B14978a95D14c8dDc5415d9FC447910
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Emojiverse

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 17: Emojiverse.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

import "./ERC721.sol";
import "./Ownable.sol";
import "./Address.sol";
import "./SafeMath.sol";
import "./Counters.sol";
import "./PaymentSplitter.sol";

interface iDaoji {
    function updateRewards(address _sender, address _reciever) external;
    function burnDaoji(address _account, uint256 _number) external;
}

contract Emojiverse is ERC721, Ownable, PaymentSplitter {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    using Address for address;
    
    iDaoji public Daoji;
    
    mapping (uint256 => string) private _tokenURIs;
    mapping (address => bool) approvedAddress;

    string private _baseURIextended;
    
    bool public saleStatus = false;
    bool public burnState = false;
    
    Counters.Counter private _tokenIdCounter;
    
    uint256 public constant maxEmojis = 11111;
    uint256 public salePrice;
    uint256 public supplyCount;
    
    address payable thisContract;
    
    address[] private _team = [
        0x1CE46c579f0D2dB71B3875b5c391Ce7E81cff135
        ];
    
    uint256[] private _teamShares = [
        100
        ];
    
    constructor() ERC721("Emojiverse", "EMOJI") PaymentSplitter(_team, _teamShares) {
    }
    
    fallback() external payable {

  	}
  	
  	function setDaoji(address _daoji) external onlyOwner {
  	    Daoji = iDaoji(_daoji);
  	}
  	
    function totalSupply() external view returns (uint256) {
        return supplyCount;
    }
    
    function setSaleStatus() external onlyOwner {
        saleStatus = !saleStatus;
    }
    
    function setBurnState() external onlyOwner {
        burnState = !burnState;
    }
    
    function setSalePrice(uint256 _priceInWei) external onlyOwner {
        salePrice = _priceInWei;
    }
    
    function withdrawAll() external onlyOwner {
        for (uint256 i = 0; i < _team.length; i++) {
            address payable wallet = payable(_team[i]);
            release(wallet);
        }
    }
  	
  	function setBaseURI(string memory baseURI_) external onlyOwner {
            _baseURIextended = baseURI_;
    }
    
    function setApprovedAddress(address _approved, bool _trueOrFalse) external onlyOwner {
        approvedAddress[_approved] = _trueOrFalse;
    }
    
    function setThisContract(address payable _thisContract) external onlyOwner {
        thisContract = _thisContract;
    }
    
    function happyFace(uint256 _numberOfEmojis) external payable {
        require(msg.value >= calculateTotalPrice(_numberOfEmojis), "Insuffcient amount sent");
        require(thisContract.send(msg.value), "Receiever must be the contract");
        require(_tokenIdCounter.current().add(_numberOfEmojis) <= maxEmojis, "Purchase would exceed max supply");
        require(saleStatus == true, "Sale is not active");
        require(_numberOfEmojis <= 24, "Max per transaction is 24");
        
        if(_numberOfEmojis != 24) {
            for(uint256 i = 0; i < _numberOfEmojis; i++) {
                _safeMint(msg.sender, _tokenIdCounter.current() + 1);
                _tokenIdCounter.increment();
                supplyCount = supplyCount + 1;
            }
        } else
        if(_numberOfEmojis == 24) {
            for(uint256 i = 0; i < 30; i++) {
                _safeMint(msg.sender, _tokenIdCounter.current() + 1);
                _tokenIdCounter.increment();
                supplyCount = supplyCount + 1;
            }
        }
    }
    
    function sadFace(uint256 _tokenID) external {
        require(super.ownerOf(_tokenID) == msg.sender || approvedAddress[msg.sender] == true, "You are not eligible for the ID you are trying to burn");
        require(burnState == true, "Burning is not enabled");
        _burn(_tokenID);
        supplyCount = supplyCount - 1;
    }
    
    function daojiBurn(address _account, uint256 _amount) external {
        require(approvedAddress[msg.sender] == true, "You are not approved to burn with this function");
        Daoji.burnDaoji(_account, _amount);
    }
    
    function transferFrom(address from, address to, uint256 tokenId) public override {
        Daoji.updateRewards(from, to);
        ERC721.transferFrom(from, to, tokenId);
    }
    
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public override {
        Daoji.updateRewards(from, to);
        ERC721.safeTransferFrom(from, to, tokenId, _data);
    }
    
    function calculateTotalPrice(uint256 _numberOfEmojis) public view returns(uint256) {
        return salePrice.mul(_numberOfEmojis);
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
            return _baseURIextended;
    }
    
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 17: 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 3 of 17: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 17: EnumerableMap.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./EnumerableSet.sol";

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    using EnumerableSet for EnumerableSet.Bytes32Set;

    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct Map {
        // Storage of keys
        EnumerableSet.Bytes32Set _keys;
        mapping(bytes32 => bytes32) _values;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(
        Map storage map,
        bytes32 key,
        bytes32 value
    ) private returns (bool) {
        map._values[key] = value;
        return map._keys.add(key);
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        delete map._values[key];
        return map._keys.remove(key);
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._keys.contains(key);
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._keys.length();
    }

    /**
     * @dev Returns the key-value pair stored at position `index` in the map. O(1).
     *
     * Note that there are no guarantees on the ordering of entries inside the
     * array, and it may change when more entries are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        bytes32 key = map._keys.at(index);
        return (key, map._values[key]);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        bytes32 value = map._values[key];
        if (value == bytes32(0)) {
            return (_contains(map, key), bytes32(0));
        } else {
            return (true, value);
        }
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        bytes32 value = map._values[key];
        require(value != 0 || _contains(map, key), "EnumerableMap: nonexistent key");
        return value;
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(
        Map storage map,
        bytes32 key,
        string memory errorMessage
    ) private view returns (bytes32) {
        bytes32 value = map._values[key];
        require(value != 0 || _contains(map, key), errorMessage);
        return value;
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        UintToAddressMap storage map,
        uint256 key,
        address value
    ) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

    /**
     * @dev Returns the element stored at position `index` in the set. O(1).
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        UintToAddressMap storage map,
        uint256 key,
        string memory errorMessage
    ) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

File 6 of 17: EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 17: 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 12 of 17: 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 13 of 17: 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 14 of 17: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./Address.sol";
import "./Context.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

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

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

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

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

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

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

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

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

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

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

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

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

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

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

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

File 16 of 17: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 17 of 17: 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"Daoji","outputs":[{"internalType":"contract iDaoji","name":"","type":"address"}],"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":"burnState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfEmojis","type":"uint256"}],"name":"calculateTotalPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"daojiBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfEmojis","type":"uint256"}],"name":"happyFace","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxEmojis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"sadFace","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_approved","type":"address"},{"internalType":"bool","name":"_trueOrFalse","type":"bool"}],"name":"setApprovedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setBurnState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_daoji","type":"address"}],"name":"setDaoji","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceInWei","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_thisContract","type":"address"}],"name":"setThisContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6010805461ffff1916905560a0604052731ce46c579f0d2db71b3875b5c391ce7e81cff1356080908152620000399060159060016200051a565b506040805160208101909152606481526200005990601690600162000584565b503480156200006757600080fd5b506015805480602002602001604051908101604052809291908181526020018280548015620000c057602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620000a1575b505050505060168054806020026020016040519081016040528092919081815260200182805480156200011357602002820191906000526020600020905b815481526020019060010190808311620000fe575b5050604080518082018252600a815269456d6f6a69766572736560b01b602080830191825283518085019094526005845264454d4f4a4960d81b90840152815191955091935062000169925060009190620005c7565b5080516200017f906001906020840190620005c7565b5050506200019c62000196620002d660201b60201c565b620002da565b80518251146200020e5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002615760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000205565b60005b8251811015620002cd57620002b8838281518110620002875762000287620006e7565b6020026020010151838381518110620002a457620002a4620006e7565b60200260200101516200032c60201b60201c565b80620002c481620006b3565b91505062000264565b505050620006fd565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003995760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000205565b60008111620003eb5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000205565b6001600160a01b03821660009081526009602052604090205415620004675760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000205565b600b8054600181019091557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319166001600160a01b0384169081179091556000908152600960205260409020819055600754620004d19082906200065b565b600755604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b82805482825590600052602060002090810192821562000572579160200282015b828111156200057257825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200053b565b506200058092915062000644565b5090565b82805482825590600052602060002090810192821562000572579160200282015b8281111562000572578251829060ff16905591602001919060010190620005a5565b828054620005d59062000676565b90600052602060002090601f016020900481019282620005f9576000855562000572565b82601f106200061457805160ff191683800117855562000572565b8280016001018555821562000572579182015b828111156200057257825182559160200191906001019062000627565b5b8082111562000580576000815560010162000645565b60008219821115620006715762000671620006d1565b500190565b600181811c908216806200068b57607f821691505b60208210811415620006ad57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620006ca57620006ca620006d1565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b612761806200070d6000396000f3fe6080604052600436106102325760003560e01c8063853828b61161012d578063c87b56dd116100b0578063e985e9c511610077578063e985e9c5146106d4578063eb9fea3b1461071d578063f2fde38b14610733578063f51f96dd14610753578063f9020e3314610769578063fac557851461078357005b8063c87b56dd14610636578063ce7c2ac214610656578063d0991d561461068c578063db5961281461069f578063e33b7de3146106bf57005b8063a22cb465116100f4578063a22cb465146105a1578063b88d4fde146105c1578063ba69f34e146105e1578063c25b9fd1146105f6578063c4bc508e1461061657005b8063853828b6146105035780638b83209b146105185780638da5cb5b1461053857806395d89b41146105565780639852595c1461056b57005b8063269d9e92116101b5578063575765e21161017c578063575765e21461046e5780636352211e1461048e57806370a08231146104ae578063715018a6146104ce57806378b05006146104e357005b8063269d9e92146103e55780633a98ef391461040457806342842e0e14610419578063502b33af1461043957806355f804b31461044e57005b80630dbed4f3116101f95780630dbed4f31461035057806318160ddd1461037057806319165587146103855780631919fed7146103a557806323b872dd146103c557005b806301ffc9a71461027d57806306fdde03146102b2578063081812fc146102d4578063095ea7b31461030c5780630c37b3bd1461032c57005b3661027b577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b005b34801561028957600080fd5b5061029d610298366004612391565b6107a3565b60405190151581526020015b60405180910390f35b3480156102be57600080fd5b506102c76107f5565b6040516102a991906124c5565b3480156102e057600080fd5b506102f46102ef366004612414565b610887565b6040516001600160a01b0390911681526020016102a9565b34801561031857600080fd5b5061027b610327366004612365565b610921565b34801561033857600080fd5b50610342612b6781565b6040519081526020016102a9565b34801561035c57600080fd5b50600c546102f4906001600160a01b031681565b34801561037c57600080fd5b50601354610342565b34801561039157600080fd5b5061027b6103a036600461221b565b610a37565b3480156103b157600080fd5b5061027b6103c0366004612414565b610c08565b3480156103d157600080fd5b5061027b6103e0366004612271565b610c37565b3480156103f157600080fd5b5060105461029d90610100900460ff1681565b34801561041057600080fd5b50600754610342565b34801561042557600080fd5b5061027b610434366004612271565b610ca9565b34801561044557600080fd5b5061027b610cc4565b34801561045a57600080fd5b5061027b6104693660046123cb565b610d02565b34801561047a57600080fd5b5061027b610489366004612332565b610d43565b34801561049a57600080fd5b506102f46104a9366004612414565b610d98565b3480156104ba57600080fd5b506103426104c936600461221b565b610e0f565b3480156104da57600080fd5b5061027b610e96565b3480156104ef57600080fd5b5061027b6104fe36600461221b565b610ecc565b34801561050f57600080fd5b5061027b610f18565b34801561052457600080fd5b506102f4610533366004612414565b610f9a565b34801561054457600080fd5b506006546001600160a01b03166102f4565b34801561056257600080fd5b506102c7610fca565b34801561057757600080fd5b5061034261058636600461221b565b6001600160a01b03166000908152600a602052604090205490565b3480156105ad57600080fd5b5061027b6105bc366004612332565b610fd9565b3480156105cd57600080fd5b5061027b6105dc3660046122b2565b61109e565b3480156105ed57600080fd5b5061027b611117565b34801561060257600080fd5b5061027b61061136600461221b565b61115e565b34801561062257600080fd5b50610342610631366004612414565b6111aa565b34801561064257600080fd5b506102c7610651366004612414565b6111ba565b34801561066257600080fd5b5061034261067136600461221b565b6001600160a01b031660009081526009602052604090205490565b61027b61069a366004612414565b611295565b3480156106ab57600080fd5b5061027b6106ba366004612365565b611516565b3480156106cb57600080fd5b50600854610342565b3480156106e057600080fd5b5061029d6106ef366004612238565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072957600080fd5b5061034260135481565b34801561073f57600080fd5b5061027b61074e36600461221b565b6115fc565b34801561075f57600080fd5b5061034260125481565b34801561077557600080fd5b5060105461029d9060ff1681565b34801561078f57600080fd5b5061027b61079e366004612414565b611694565b60006001600160e01b031982166380ac58cd60e01b14806107d457506001600160e01b03198216635b5e139f60e01b145b806107ef57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108049061263e565b80601f01602080910402602001604051908101604052809291908181526020018280546108309061263e565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109055760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061092c82610d98565b9050806001600160a01b0316836001600160a01b0316141561099a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108fc565b336001600160a01b03821614806109b657506109b681336106ef565b610a285760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108fc565b610a3283836117a6565b505050565b6001600160a01b038116600090815260096020526040902054610aab5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016108fc565b600060085447610abb91906125b0565b6001600160a01b0383166000908152600a60209081526040808320546007546009909352908320549394509192610af290856125dc565b610afc91906125c8565b610b0691906125fb565b905080610b695760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016108fc565b6001600160a01b0383166000908152600a6020526040902054610b8d9082906125b0565b6001600160a01b0384166000908152600a6020526040902055600854610bb49082906125b0565b600855610bc18382611814565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6006546001600160a01b03163314610c325760405162461bcd60e51b81526004016108fc9061252a565b601255565b600c54604051630e37d36f60e01b81526001600160a01b038581166004830152848116602483015290911690630e37d36f90604401600060405180830381600087803b158015610c8657600080fd5b505af1158015610c9a573d6000803e3d6000fd5b50505050610a3283838361192d565b610a328383836040518060200160405280600081525061109e565b6006546001600160a01b03163314610cee5760405162461bcd60e51b81526004016108fc9061252a565b6010805460ff19811660ff90911615179055565b6006546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016108fc9061252a565b8051610d3f90600f90602084019061210c565b5050565b6006546001600160a01b03163314610d6d5760405162461bcd60e51b81526004016108fc9061252a565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6000818152600260205260408120546001600160a01b0316806107ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108fc565b60006001600160a01b038216610e7a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108fc565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ec05760405162461bcd60e51b81526004016108fc9061252a565b610eca600061195e565b565b6006546001600160a01b03163314610ef65760405162461bcd60e51b81526004016108fc9061252a565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610f425760405162461bcd60e51b81526004016108fc9061252a565b60005b601554811015610f9757600060158281548110610f6457610f646126d4565b6000918252602090912001546001600160a01b03169050610f8481610a37565b5080610f8f81612679565b915050610f45565b50565b6000600b8281548110610faf57610faf6126d4565b6000918252602090912001546001600160a01b031692915050565b6060600180546108049061263e565b6001600160a01b0382163314156110325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108fc565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c54604051630e37d36f60e01b81526001600160a01b038681166004830152858116602483015290911690630e37d36f90604401600060405180830381600087803b1580156110ed57600080fd5b505af1158015611101573d6000803e3d6000fd5b50505050611111848484846119b0565b50505050565b6006546001600160a01b031633146111415760405162461bcd60e51b81526004016108fc9061252a565b6010805461ff001981166101009182900460ff1615909102179055565b6006546001600160a01b031633146111885760405162461bcd60e51b81526004016108fc9061252a565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6012546000906107ef90836119e2565b6000818152600260205260409020546060906001600160a01b03166112395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108fc565b60006112436119ee565b90506000815111611263576040518060200160405280600081525061128e565b8061126d846119fd565b60405160200161127e929190612459565b6040516020818303038152906040525b9392505050565b61129e816111aa565b3410156112ed5760405162461bcd60e51b815260206004820152601760248201527f496e737566666369656e7420616d6f756e742073656e7400000000000000000060448201526064016108fc565b6014546040516001600160a01b03909116903480156108fc02916000818181858888f193505050506113615760405162461bcd60e51b815260206004820152601e60248201527f526563656965766572206d7573742062652074686520636f6e7472616374000060448201526064016108fc565b612b676113778261137160115490565b90611b03565b11156113c55760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016108fc565b60105460ff1615156001146114115760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016108fc565b60188111156114625760405162461bcd60e51b815260206004820152601960248201527f4d617820706572207472616e73616374696f6e2069732032340000000000000060448201526064016108fc565b806018146114c35760005b81811015610d3f576114923361148260115490565b61148d9060016125b0565b611b0f565b6114a0601180546001019055565b6013546114ae9060016125b0565b601355806114bb81612679565b91505061146d565b8060181415610f975760005b601e811015610d3f576114e53361148260115490565b6114f3601180546001019055565b6013546115019060016125b0565b6013558061150e81612679565b9150506114cf565b336000908152600e602052604090205460ff1615156001146115925760405162461bcd60e51b815260206004820152602f60248201527f596f7520617265206e6f7420617070726f76656420746f206275726e2077697460448201526e34103a3434b990333ab731ba34b7b760891b60648201526084016108fc565b600c5460405163a7d7812960e01b81526001600160a01b038481166004830152602482018490529091169063a7d7812990604401600060405180830381600087803b1580156115e057600080fd5b505af11580156115f4573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031633146116265760405162461bcd60e51b81526004016108fc9061252a565b6001600160a01b03811661168b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fc565b610f978161195e565b3361169e82610d98565b6001600160a01b031614806116c75750336000908152600e602052604090205460ff1615156001145b6117325760405162461bcd60e51b815260206004820152603660248201527f596f7520617265206e6f7420656c696769626c6520666f7220746865204944206044820152753cb7ba9030b932903a393cb4b733903a3790313ab93760511b60648201526084016108fc565b60105460ff6101009091041615156001146117885760405162461bcd60e51b8152602060048201526016602482015275109d5c9b9a5b99c81a5cc81b9bdd08195b98589b195960521b60448201526064016108fc565b61179181611b29565b60016013546117a091906125fb565b60135550565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117db82610d98565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156118645760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108fc565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146118b1576040519150601f19603f3d011682016040523d82523d6000602084013e6118b6565b606091505b5050905080610a325760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108fc565b6119373382611bc4565b6119535760405162461bcd60e51b81526004016108fc9061255f565b610a32838383611cb7565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119ba3383611bc4565b6119d65760405162461bcd60e51b81526004016108fc9061255f565b61111184848484611e57565b600061128e82846125dc565b6060600f80546108049061263e565b606081611a215750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a4b5780611a3581612679565b9150611a449050600a836125c8565b9150611a25565b60008167ffffffffffffffff811115611a6657611a666126ea565b6040519080825280601f01601f191660200182016040528015611a90576020820181803683370190505b5090505b8415611afb57611aa56001836125fb565b9150611ab2600a86612694565b611abd9060306125b0565b60f81b818381518110611ad257611ad26126d4565b60200101906001600160f81b031916908160001a905350611af4600a866125c8565b9450611a94565b949350505050565b600061128e82846125b0565b610d3f828260405180602001604052806000815250611e8a565b6000611b3482610d98565b9050611b416000836117a6565b6001600160a01b0381166000908152600360205260408120805460019290611b6a9084906125fb565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000818152600260205260408120546001600160a01b0316611c3d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fc565b6000611c4883610d98565b9050806001600160a01b0316846001600160a01b03161480611c835750836001600160a01b0316611c7884610887565b6001600160a01b0316145b80611afb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611afb565b826001600160a01b0316611cca82610d98565b6001600160a01b031614611d325760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108fc565b6001600160a01b038216611d945760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108fc565b611d9f6000826117a6565b6001600160a01b0383166000908152600360205260408120805460019290611dc89084906125fb565b90915550506001600160a01b0382166000908152600360205260408120805460019290611df69084906125b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611e62848484611cb7565b611e6e84848484611ebd565b6111115760405162461bcd60e51b81526004016108fc906124d8565b611e948383611fca565b611ea16000848484611ebd565b610a325760405162461bcd60e51b81526004016108fc906124d8565b60006001600160a01b0384163b15611fbf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f01903390899088908890600401612488565b602060405180830381600087803b158015611f1b57600080fd5b505af1925050508015611f4b575060408051601f3d908101601f19168201909252611f48918101906123ae565b60015b611fa5573d808015611f79576040519150601f19603f3d011682016040523d82523d6000602084013e611f7e565b606091505b508051611f9d5760405162461bcd60e51b81526004016108fc906124d8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611afb565b506001949350505050565b6001600160a01b0382166120205760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108fc565b6000818152600260205260409020546001600160a01b0316156120855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fc565b6001600160a01b03821660009081526003602052604081208054600192906120ae9084906125b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121189061263e565b90600052602060002090601f01602090048101928261213a5760008555612180565b82601f1061215357805160ff1916838001178555612180565b82800160010185558215612180579182015b82811115612180578251825591602001919060010190612165565b5061218c929150612190565b5090565b5b8082111561218c5760008155600101612191565b600067ffffffffffffffff808411156121c0576121c06126ea565b604051601f8501601f19908116603f011681019082821181831017156121e8576121e86126ea565b8160405280935085815286868601111561220157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561222d57600080fd5b813561128e81612700565b6000806040838503121561224b57600080fd5b823561225681612700565b9150602083013561226681612700565b809150509250929050565b60008060006060848603121561228657600080fd5b833561229181612700565b925060208401356122a181612700565b929592945050506040919091013590565b600080600080608085870312156122c857600080fd5b84356122d381612700565b935060208501356122e381612700565b925060408501359150606085013567ffffffffffffffff81111561230657600080fd5b8501601f8101871361231757600080fd5b612326878235602084016121a5565b91505092959194509250565b6000806040838503121561234557600080fd5b823561235081612700565b91506020830135801515811461226657600080fd5b6000806040838503121561237857600080fd5b823561238381612700565b946020939093013593505050565b6000602082840312156123a357600080fd5b813561128e81612715565b6000602082840312156123c057600080fd5b815161128e81612715565b6000602082840312156123dd57600080fd5b813567ffffffffffffffff8111156123f457600080fd5b8201601f8101841361240557600080fd5b611afb848235602084016121a5565b60006020828403121561242657600080fd5b5035919050565b60008151808452612445816020860160208601612612565b601f01601f19169290920160200192915050565b6000835161246b818460208801612612565b83519083019061247f818360208801612612565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124bb9083018461242d565b9695505050505050565b60208152600061128e602083018461242d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125c3576125c36126a8565b500190565b6000826125d7576125d76126be565b500490565b60008160001904831182151516156125f6576125f66126a8565b500290565b60008282101561260d5761260d6126a8565b500390565b60005b8381101561262d578181015183820152602001612615565b838111156111115750506000910152565b600181811c9082168061265257607f821691505b6020821081141561267357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561268d5761268d6126a8565b5060010190565b6000826126a3576126a36126be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f9757600080fd5b6001600160e01b031981168114610f9757600080fdfea264697066735822122033400ded1d46668df7bb9f8f3b6d600350cf88edf210dd996c84587dfd9cc64f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102325760003560e01c8063853828b61161012d578063c87b56dd116100b0578063e985e9c511610077578063e985e9c5146106d4578063eb9fea3b1461071d578063f2fde38b14610733578063f51f96dd14610753578063f9020e3314610769578063fac557851461078357005b8063c87b56dd14610636578063ce7c2ac214610656578063d0991d561461068c578063db5961281461069f578063e33b7de3146106bf57005b8063a22cb465116100f4578063a22cb465146105a1578063b88d4fde146105c1578063ba69f34e146105e1578063c25b9fd1146105f6578063c4bc508e1461061657005b8063853828b6146105035780638b83209b146105185780638da5cb5b1461053857806395d89b41146105565780639852595c1461056b57005b8063269d9e92116101b5578063575765e21161017c578063575765e21461046e5780636352211e1461048e57806370a08231146104ae578063715018a6146104ce57806378b05006146104e357005b8063269d9e92146103e55780633a98ef391461040457806342842e0e14610419578063502b33af1461043957806355f804b31461044e57005b80630dbed4f3116101f95780630dbed4f31461035057806318160ddd1461037057806319165587146103855780631919fed7146103a557806323b872dd146103c557005b806301ffc9a71461027d57806306fdde03146102b2578063081812fc146102d4578063095ea7b31461030c5780630c37b3bd1461032c57005b3661027b577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b005b34801561028957600080fd5b5061029d610298366004612391565b6107a3565b60405190151581526020015b60405180910390f35b3480156102be57600080fd5b506102c76107f5565b6040516102a991906124c5565b3480156102e057600080fd5b506102f46102ef366004612414565b610887565b6040516001600160a01b0390911681526020016102a9565b34801561031857600080fd5b5061027b610327366004612365565b610921565b34801561033857600080fd5b50610342612b6781565b6040519081526020016102a9565b34801561035c57600080fd5b50600c546102f4906001600160a01b031681565b34801561037c57600080fd5b50601354610342565b34801561039157600080fd5b5061027b6103a036600461221b565b610a37565b3480156103b157600080fd5b5061027b6103c0366004612414565b610c08565b3480156103d157600080fd5b5061027b6103e0366004612271565b610c37565b3480156103f157600080fd5b5060105461029d90610100900460ff1681565b34801561041057600080fd5b50600754610342565b34801561042557600080fd5b5061027b610434366004612271565b610ca9565b34801561044557600080fd5b5061027b610cc4565b34801561045a57600080fd5b5061027b6104693660046123cb565b610d02565b34801561047a57600080fd5b5061027b610489366004612332565b610d43565b34801561049a57600080fd5b506102f46104a9366004612414565b610d98565b3480156104ba57600080fd5b506103426104c936600461221b565b610e0f565b3480156104da57600080fd5b5061027b610e96565b3480156104ef57600080fd5b5061027b6104fe36600461221b565b610ecc565b34801561050f57600080fd5b5061027b610f18565b34801561052457600080fd5b506102f4610533366004612414565b610f9a565b34801561054457600080fd5b506006546001600160a01b03166102f4565b34801561056257600080fd5b506102c7610fca565b34801561057757600080fd5b5061034261058636600461221b565b6001600160a01b03166000908152600a602052604090205490565b3480156105ad57600080fd5b5061027b6105bc366004612332565b610fd9565b3480156105cd57600080fd5b5061027b6105dc3660046122b2565b61109e565b3480156105ed57600080fd5b5061027b611117565b34801561060257600080fd5b5061027b61061136600461221b565b61115e565b34801561062257600080fd5b50610342610631366004612414565b6111aa565b34801561064257600080fd5b506102c7610651366004612414565b6111ba565b34801561066257600080fd5b5061034261067136600461221b565b6001600160a01b031660009081526009602052604090205490565b61027b61069a366004612414565b611295565b3480156106ab57600080fd5b5061027b6106ba366004612365565b611516565b3480156106cb57600080fd5b50600854610342565b3480156106e057600080fd5b5061029d6106ef366004612238565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072957600080fd5b5061034260135481565b34801561073f57600080fd5b5061027b61074e36600461221b565b6115fc565b34801561075f57600080fd5b5061034260125481565b34801561077557600080fd5b5060105461029d9060ff1681565b34801561078f57600080fd5b5061027b61079e366004612414565b611694565b60006001600160e01b031982166380ac58cd60e01b14806107d457506001600160e01b03198216635b5e139f60e01b145b806107ef57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108049061263e565b80601f01602080910402602001604051908101604052809291908181526020018280546108309061263e565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109055760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061092c82610d98565b9050806001600160a01b0316836001600160a01b0316141561099a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108fc565b336001600160a01b03821614806109b657506109b681336106ef565b610a285760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108fc565b610a3283836117a6565b505050565b6001600160a01b038116600090815260096020526040902054610aab5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016108fc565b600060085447610abb91906125b0565b6001600160a01b0383166000908152600a60209081526040808320546007546009909352908320549394509192610af290856125dc565b610afc91906125c8565b610b0691906125fb565b905080610b695760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016108fc565b6001600160a01b0383166000908152600a6020526040902054610b8d9082906125b0565b6001600160a01b0384166000908152600a6020526040902055600854610bb49082906125b0565b600855610bc18382611814565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6006546001600160a01b03163314610c325760405162461bcd60e51b81526004016108fc9061252a565b601255565b600c54604051630e37d36f60e01b81526001600160a01b038581166004830152848116602483015290911690630e37d36f90604401600060405180830381600087803b158015610c8657600080fd5b505af1158015610c9a573d6000803e3d6000fd5b50505050610a3283838361192d565b610a328383836040518060200160405280600081525061109e565b6006546001600160a01b03163314610cee5760405162461bcd60e51b81526004016108fc9061252a565b6010805460ff19811660ff90911615179055565b6006546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016108fc9061252a565b8051610d3f90600f90602084019061210c565b5050565b6006546001600160a01b03163314610d6d5760405162461bcd60e51b81526004016108fc9061252a565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6000818152600260205260408120546001600160a01b0316806107ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108fc565b60006001600160a01b038216610e7a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108fc565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ec05760405162461bcd60e51b81526004016108fc9061252a565b610eca600061195e565b565b6006546001600160a01b03163314610ef65760405162461bcd60e51b81526004016108fc9061252a565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610f425760405162461bcd60e51b81526004016108fc9061252a565b60005b601554811015610f9757600060158281548110610f6457610f646126d4565b6000918252602090912001546001600160a01b03169050610f8481610a37565b5080610f8f81612679565b915050610f45565b50565b6000600b8281548110610faf57610faf6126d4565b6000918252602090912001546001600160a01b031692915050565b6060600180546108049061263e565b6001600160a01b0382163314156110325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108fc565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c54604051630e37d36f60e01b81526001600160a01b038681166004830152858116602483015290911690630e37d36f90604401600060405180830381600087803b1580156110ed57600080fd5b505af1158015611101573d6000803e3d6000fd5b50505050611111848484846119b0565b50505050565b6006546001600160a01b031633146111415760405162461bcd60e51b81526004016108fc9061252a565b6010805461ff001981166101009182900460ff1615909102179055565b6006546001600160a01b031633146111885760405162461bcd60e51b81526004016108fc9061252a565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6012546000906107ef90836119e2565b6000818152600260205260409020546060906001600160a01b03166112395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108fc565b60006112436119ee565b90506000815111611263576040518060200160405280600081525061128e565b8061126d846119fd565b60405160200161127e929190612459565b6040516020818303038152906040525b9392505050565b61129e816111aa565b3410156112ed5760405162461bcd60e51b815260206004820152601760248201527f496e737566666369656e7420616d6f756e742073656e7400000000000000000060448201526064016108fc565b6014546040516001600160a01b03909116903480156108fc02916000818181858888f193505050506113615760405162461bcd60e51b815260206004820152601e60248201527f526563656965766572206d7573742062652074686520636f6e7472616374000060448201526064016108fc565b612b676113778261137160115490565b90611b03565b11156113c55760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016108fc565b60105460ff1615156001146114115760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016108fc565b60188111156114625760405162461bcd60e51b815260206004820152601960248201527f4d617820706572207472616e73616374696f6e2069732032340000000000000060448201526064016108fc565b806018146114c35760005b81811015610d3f576114923361148260115490565b61148d9060016125b0565b611b0f565b6114a0601180546001019055565b6013546114ae9060016125b0565b601355806114bb81612679565b91505061146d565b8060181415610f975760005b601e811015610d3f576114e53361148260115490565b6114f3601180546001019055565b6013546115019060016125b0565b6013558061150e81612679565b9150506114cf565b336000908152600e602052604090205460ff1615156001146115925760405162461bcd60e51b815260206004820152602f60248201527f596f7520617265206e6f7420617070726f76656420746f206275726e2077697460448201526e34103a3434b990333ab731ba34b7b760891b60648201526084016108fc565b600c5460405163a7d7812960e01b81526001600160a01b038481166004830152602482018490529091169063a7d7812990604401600060405180830381600087803b1580156115e057600080fd5b505af11580156115f4573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031633146116265760405162461bcd60e51b81526004016108fc9061252a565b6001600160a01b03811661168b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fc565b610f978161195e565b3361169e82610d98565b6001600160a01b031614806116c75750336000908152600e602052604090205460ff1615156001145b6117325760405162461bcd60e51b815260206004820152603660248201527f596f7520617265206e6f7420656c696769626c6520666f7220746865204944206044820152753cb7ba9030b932903a393cb4b733903a3790313ab93760511b60648201526084016108fc565b60105460ff6101009091041615156001146117885760405162461bcd60e51b8152602060048201526016602482015275109d5c9b9a5b99c81a5cc81b9bdd08195b98589b195960521b60448201526064016108fc565b61179181611b29565b60016013546117a091906125fb565b60135550565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117db82610d98565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156118645760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108fc565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146118b1576040519150601f19603f3d011682016040523d82523d6000602084013e6118b6565b606091505b5050905080610a325760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108fc565b6119373382611bc4565b6119535760405162461bcd60e51b81526004016108fc9061255f565b610a32838383611cb7565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119ba3383611bc4565b6119d65760405162461bcd60e51b81526004016108fc9061255f565b61111184848484611e57565b600061128e82846125dc565b6060600f80546108049061263e565b606081611a215750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a4b5780611a3581612679565b9150611a449050600a836125c8565b9150611a25565b60008167ffffffffffffffff811115611a6657611a666126ea565b6040519080825280601f01601f191660200182016040528015611a90576020820181803683370190505b5090505b8415611afb57611aa56001836125fb565b9150611ab2600a86612694565b611abd9060306125b0565b60f81b818381518110611ad257611ad26126d4565b60200101906001600160f81b031916908160001a905350611af4600a866125c8565b9450611a94565b949350505050565b600061128e82846125b0565b610d3f828260405180602001604052806000815250611e8a565b6000611b3482610d98565b9050611b416000836117a6565b6001600160a01b0381166000908152600360205260408120805460019290611b6a9084906125fb565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000818152600260205260408120546001600160a01b0316611c3d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fc565b6000611c4883610d98565b9050806001600160a01b0316846001600160a01b03161480611c835750836001600160a01b0316611c7884610887565b6001600160a01b0316145b80611afb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611afb565b826001600160a01b0316611cca82610d98565b6001600160a01b031614611d325760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108fc565b6001600160a01b038216611d945760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108fc565b611d9f6000826117a6565b6001600160a01b0383166000908152600360205260408120805460019290611dc89084906125fb565b90915550506001600160a01b0382166000908152600360205260408120805460019290611df69084906125b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611e62848484611cb7565b611e6e84848484611ebd565b6111115760405162461bcd60e51b81526004016108fc906124d8565b611e948383611fca565b611ea16000848484611ebd565b610a325760405162461bcd60e51b81526004016108fc906124d8565b60006001600160a01b0384163b15611fbf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f01903390899088908890600401612488565b602060405180830381600087803b158015611f1b57600080fd5b505af1925050508015611f4b575060408051601f3d908101601f19168201909252611f48918101906123ae565b60015b611fa5573d808015611f79576040519150601f19603f3d011682016040523d82523d6000602084013e611f7e565b606091505b508051611f9d5760405162461bcd60e51b81526004016108fc906124d8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611afb565b506001949350505050565b6001600160a01b0382166120205760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108fc565b6000818152600260205260409020546001600160a01b0316156120855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fc565b6001600160a01b03821660009081526003602052604081208054600192906120ae9084906125b0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121189061263e565b90600052602060002090601f01602090048101928261213a5760008555612180565b82601f1061215357805160ff1916838001178555612180565b82800160010185558215612180579182015b82811115612180578251825591602001919060010190612165565b5061218c929150612190565b5090565b5b8082111561218c5760008155600101612191565b600067ffffffffffffffff808411156121c0576121c06126ea565b604051601f8501601f19908116603f011681019082821181831017156121e8576121e86126ea565b8160405280935085815286868601111561220157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561222d57600080fd5b813561128e81612700565b6000806040838503121561224b57600080fd5b823561225681612700565b9150602083013561226681612700565b809150509250929050565b60008060006060848603121561228657600080fd5b833561229181612700565b925060208401356122a181612700565b929592945050506040919091013590565b600080600080608085870312156122c857600080fd5b84356122d381612700565b935060208501356122e381612700565b925060408501359150606085013567ffffffffffffffff81111561230657600080fd5b8501601f8101871361231757600080fd5b612326878235602084016121a5565b91505092959194509250565b6000806040838503121561234557600080fd5b823561235081612700565b91506020830135801515811461226657600080fd5b6000806040838503121561237857600080fd5b823561238381612700565b946020939093013593505050565b6000602082840312156123a357600080fd5b813561128e81612715565b6000602082840312156123c057600080fd5b815161128e81612715565b6000602082840312156123dd57600080fd5b813567ffffffffffffffff8111156123f457600080fd5b8201601f8101841361240557600080fd5b611afb848235602084016121a5565b60006020828403121561242657600080fd5b5035919050565b60008151808452612445816020860160208601612612565b601f01601f19169290920160200192915050565b6000835161246b818460208801612612565b83519083019061247f818360208801612612565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124bb9083018461242d565b9695505050505050565b60208152600061128e602083018461242d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125c3576125c36126a8565b500190565b6000826125d7576125d76126be565b500490565b60008160001904831182151516156125f6576125f66126a8565b500290565b60008282101561260d5761260d6126a8565b500390565b60005b8381101561262d578181015183820152602001612615565b838111156111115750506000910152565b600181811c9082168061265257607f821691505b6020821081141561267357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561268d5761268d6126a8565b5060010190565b6000826126a3576126a36126be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f9757600080fd5b6001600160e01b031981168114610f9757600080fdfea264697066735822122033400ded1d46668df7bb9f8f3b6d600350cf88edf210dd996c84587dfd9cc64f64736f6c63430008070033

Deployed Bytecode Sourcemap

374:4341:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2610:40:14;666:10:1;2610:40:14;;;-1:-1:-1;;;;;6055:32:17;;;6037:51;;2640:9:14;6119:2:17;6104:18;;6097:34;6010:18;2610:40:14;;;;;;;374:4341:5;;;1431:300:4;;;;;;;;;;-1:-1:-1;1431:300:4;;;;;:::i;:::-;;:::i;:::-;;;7388:14:17;;7381:22;7363:41;;7351:2;7336:18;1431:300:4;;;;;;;;2349:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5811:32:17;;;5793:51;;5781:2;5766:18;3860:217:4;5647:203:17;3398:401:4;;;;;;;;;;-1:-1:-1;3398:401:4;;;;;:::i;:::-;;:::i;844:41:5:-;;;;;;;;;;;;880:5;844:41;;;;;18957:25:17;;;18945:2;18930:18;844:41:5;18811:177:17;545:19:5;;;;;;;;;;-1:-1:-1;545:19:5;;;;-1:-1:-1;;;;;545:19:5;;;1401:90;;;;;;;;;;-1:-1:-1;1473:11:5;;1401:90;;3784:600:14;;;;;;;;;;-1:-1:-1;3784:600:14;;;;;:::i;:::-;;:::i;1688:102:5:-;;;;;;;;;;-1:-1:-1;1688:102:5;;;;;:::i;:::-;;:::i;4037:175::-;;;;;;;;;;-1:-1:-1;4037:175:5;;;;;:::i;:::-;;:::i;753:29::-;;;;;;;;;;-1:-1:-1;753:29:5;;;;;;;;;;;2735:91:14;;;;;;;;;;-1:-1:-1;2807:12:14;;2735:91;;5120:179:4;;;;;;;;;;-1:-1:-1;5120:179:4;;;;;:::i;:::-;;:::i;1501:85:5:-;;;;;;;;;;;;;:::i;2005:111::-;;;;;;;;;;-1:-1:-1;2005:111:5;;;;;:::i;:::-;;:::i;2126:143::-;;;;;;;;;;-1:-1:-1;2126:143:5;;;;;:::i;:::-;;:::i;2052:235:4:-;;;;;;;;;;-1:-1:-1;2052:235:4;;;;;:::i;:::-;;:::i;1790:205::-;;;;;;;;;;-1:-1:-1;1790:205:4;;;;;:::i;:::-;;:::i;1598:92:13:-;;;;;;;;;;;;;:::i;1302:90:5:-;;;;;;;;;;-1:-1:-1;1302:90:5;;;;;:::i;:::-;;:::i;1800:197::-;;;;;;;;;;;;;:::i;3490:100:14:-;;;;;;;;;;-1:-1:-1;3490:100:14;;;;;:::i;:::-;;:::i;966:85:13:-;;;;;;;;;;-1:-1:-1;1038:6:13;;-1:-1:-1;;;;;1038:6:13;966:85;;2511:102:4;;;;;;;;;;;;;:::i;3295:109:14:-;;;;;;;;;;-1:-1:-1;3295:109:14;;;;;:::i;:::-;-1:-1:-1;;;;;3379:18:14;3353:7;3379:18;;;:9;:18;;;;;;;3295:109;4144:290:4;;;;;;;;;;-1:-1:-1;4144:290:4;;;;;:::i;:::-;;:::i;4222:210:5:-;;;;;;;;;;-1:-1:-1;4222:210:5;;;;;:::i;:::-;;:::i;1596:82::-;;;;;;;;;;;;;:::i;2279:120::-;;;;;;;;;;-1:-1:-1;2279:120:5;;;;;:::i;:::-;;:::i;4442:137::-;;;;;;;;;;-1:-1:-1;4442:137:5;;;;;:::i;:::-;;:::i;2679:329:4:-;;;;;;;;;;-1:-1:-1;2679:329:4;;;;;:::i;:::-;;:::i;3096:105:14:-;;;;;;;;;;-1:-1:-1;3096:105:14;;;;;:::i;:::-;-1:-1:-1;;;;;3178:16:14;3152:7;3178:16;;;:7;:16;;;;;;;3096:105;2409:1049:5;;;;;;:::i;:::-;;:::i;3808:219::-;;;;;;;;;;-1:-1:-1;3808:219:5;;;;;:::i;:::-;;:::i;2915:95:14:-;;;;;;;;;;-1:-1:-1;2989:14:14;;2915:95;;4500:162:4;;;;;;;;;;-1:-1:-1;4500:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;4620:25:4;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4500:162;921:26:5;;;;;;;;;;;;;;;;1839:189:13;;;;;;;;;;-1:-1:-1;1839:189:13;;;;;:::i;:::-;;:::i;891:24:5:-;;;;;;;;;;;;;;;;717:30;;;;;;;;;;-1:-1:-1;717:30:5;;;;;;;;3468:330;;;;;;;;;;-1:-1:-1;3468:330:5;;;;;:::i;:::-;;:::i;1431:300:4:-;1533:4;-1:-1:-1;;;;;;1568:40:4;;-1:-1:-1;;;1568:40:4;;:104;;-1:-1:-1;;;;;;;1624:48:4;;-1:-1:-1;;;1624:48:4;1568:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:3;;;1688:36:4;1549:175;1431:300;-1:-1:-1;;1431:300:4:o;2349:98::-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;3955:73;;;;-1:-1:-1;;;3955:73:4;;16170:2:17;3955:73:4;;;16152:21:17;16209:2;16189:18;;;16182:30;16248:34;16228:18;;;16221:62;-1:-1:-1;;;16299:18:17;;;16292:42;16351:19;;3955:73:4;;;;;;;;;-1:-1:-1;4046:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:4;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:4;:2;-1:-1:-1;;;;;3535:11:4;;;3527:57;;;;-1:-1:-1;;;3527:57:4;;18193:2:17;3527:57:4;;;18175:21:17;18232:2;18212:18;;;18205:30;18271:34;18251:18;;;18244:62;-1:-1:-1;;;18322:18:17;;;18315:31;18363:19;;3527:57:4;17991:397:17;3527:57:4;666:10:1;-1:-1:-1;;;;;3616:21:4;;;;:62;;-1:-1:-1;3641:37:4;3658:5;666:10:1;4500:162:4;:::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:4;;13786:2:17;3595:165:4;;;13768:21:17;13825:2;13805:18;;;13798:30;13864:34;13844:18;;;13837:62;13935:26;13915:18;;;13908:54;13979:19;;3595:165:4;13584:420:17;3595:165:4;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;3784:600:14:-;-1:-1:-1;;;;;3859:16:14;;3878:1;3859:16;;;:7;:16;;;;;;3851:71;;;;-1:-1:-1;;;3851:71:14;;10312:2:17;3851:71:14;;;10294:21:17;10351:2;10331:18;;;10324:30;10390:34;10370:18;;;10363:62;-1:-1:-1;;;10441:18:17;;;10434:36;10487:19;;3851:71:14;10110:402:17;3851:71:14;3933:21;3981:14;;3957:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;4075:18:14;;4005:15;4075:18;;;:9;:18;;;;;;;;;4060:12;;4040:7;:16;;;;;;;3933:62;;-1:-1:-1;4005:15:14;;4024:32;;3933:62;4024:32;:::i;:::-;4023:49;;;;:::i;:::-;:70;;;;:::i;:::-;4005:88;-1:-1:-1;4112:12:14;4104:68;;;;-1:-1:-1;;;4104:68:14;;13023:2:17;4104:68:14;;;13005:21:17;13062:2;13042:18;;;13035:30;13101:34;13081:18;;;13074:62;-1:-1:-1;;;13152:18:17;;;13145:41;13203:19;;4104:68:14;12821:407:17;4104:68:14;-1:-1:-1;;;;;4204:18:14;;;;;;:9;:18;;;;;;:28;;4225:7;;4204:28;:::i;:::-;-1:-1:-1;;;;;4183:18:14;;;;;;:9;:18;;;;;:49;4259:14;;:24;;4276:7;;4259:24;:::i;:::-;4242:14;:41;4294:35;4312:7;4321;4294:17;:35::i;:::-;4344:33;;;-1:-1:-1;;;;;6055:32:17;;6037:51;;6119:2;6104:18;;6097:34;;;4344:33:14;;6010:18:17;4344:33:14;;;;;;;3841:543;;3784:600;:::o;1688:102:5:-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;1760:9:5::1;:23:::0;1688:102::o;4037:175::-;4128:5;;:29;;-1:-1:-1;;;4128:29:5;;-1:-1:-1;;;;;6372:15:17;;;4128:29:5;;;6354:34:17;6424:15;;;6404:18;;;6397:43;4128:5:5;;;;:19;;6289:18:17;;4128:29:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4167:38;4187:4;4193:2;4197:7;4167:19;:38::i;5120:179:4:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;1501:85:5:-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;1569:10:5::1;::::0;;-1:-1:-1;;1555:24:5;::::1;1569:10;::::0;;::::1;1568:11;1555:24;::::0;;1501:85::o;2005:111::-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;2082:27:5;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2005:111:::0;:::o;2126:143::-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;2221:26:5;;;::::1;;::::0;;;:15:::1;:26;::::0;;;;:41;;-1:-1:-1;;2221:41:5::1;::::0;::::1;;::::0;;;::::1;::::0;;2126:143::o;2052:235:4:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:4;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:4;;14622:2:17;2185:73:4;;;14604:21:17;14661:2;14641:18;;;14634:30;14700:34;14680:18;;;14673:62;-1:-1:-1;;;14751:18:17;;;14744:39;14800:19;;2185:73:4;14420:405:17;1790:205:4;1862:7;-1:-1:-1;;;;;1889:19:4;;1881:74;;;;-1:-1:-1;;;1881:74:4;;14211:2:17;1881:74:4;;;14193:21:17;14250:2;14230:18;;;14223:30;14289:34;14269:18;;;14262:62;-1:-1:-1;;;14340:18:17;;;14333:40;14390:19;;1881:74:4;14009:406:17;1881:74:4;-1:-1:-1;;;;;;1972:16:4;;;;;:9;:16;;;;;;;1790:205::o;1598:92:13:-;1038:6;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;1302:90:5:-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;1364:5:5::1;:22:::0;;-1:-1:-1;;;;;;1364:22:5::1;-1:-1:-1::0;;;;;1364:22:5;;;::::1;::::0;;;::::1;::::0;;1302:90::o;1800:197::-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;1857:9:5::1;1852:139;1876:5;:12:::0;1872:16;::::1;1852:139;;;1909:22;1942:5;1948:1;1942:8;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;1942:8:5::1;::::0;-1:-1:-1;1965:15:5::1;1942:8:::0;1965:7:::1;:15::i;:::-;-1:-1:-1::0;1890:3:5;::::1;::::0;::::1;:::i;:::-;;;;1852:139;;;;1800:197::o:0;3490:100:14:-;3543:7;3569;3577:5;3569:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;3569:14:14;;3490:100;-1:-1:-1;;3490:100:14:o;2511:102:4:-;2567:13;2599:7;2592:14;;;;;:::i;4144:290::-;-1:-1:-1;;;;;4246:24:4;;666:10:1;4246:24:4;;4238:62;;;;-1:-1:-1;;;4238:62:4;;11124:2:17;4238:62:4;;;11106:21:17;11163:2;11143:18;;;11136:30;11202:27;11182:18;;;11175:55;11247:18;;4238:62:4;10922:349:17;4238:62:4;666:10:1;4311:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4311:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:4;;;;;;;;;;4379:48;;7363:41:17;;;4311:42:4;;666:10:1;4379:48:4;;7336:18:17;4379:48:4;;;;;;;4144:290;;:::o;4222:210:5:-;4337:5;;:29;;-1:-1:-1;;;4337:29:5;;-1:-1:-1;;;;;6372:15:17;;;4337:29:5;;;6354:34:17;6424:15;;;6404:18;;;6397:43;4337:5:5;;;;:19;;6289:18:17;;4337:29:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4376:49;4400:4;4406:2;4410:7;4419:5;4376:23;:49::i;:::-;4222:210;;;;:::o;1596:82::-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;1662:9:5::1;::::0;;-1:-1:-1;;1649:22:5;::::1;1662:9;::::0;;;::::1;;;1661:10;1649:22:::0;;::::1;;::::0;;1596:82::o;2279:120::-;1038:6:13;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;2364:12:5::1;:28:::0;;-1:-1:-1;;;;;;2364:28:5::1;-1:-1:-1::0;;;;;2364:28:5;;;::::1;::::0;;;::::1;::::0;;2279:120::o;4442:137::-;4542:9;;4516:7;;4542:30;;4556:15;4542:13;:30::i;2679:329:4:-;7222:4;7245:16;;;:7;:16;;;;;;2752:13;;-1:-1:-1;;;;;7245:16:4;2777:76;;;;-1:-1:-1;;;2777:76:4;;17777:2:17;2777:76:4;;;17759:21:17;17816:2;17796:18;;;17789:30;17855:34;17835:18;;;17828:62;-1:-1:-1;;;17906:18:17;;;17899:45;17961:19;;2777:76:4;17575:411:17;2777:76:4;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;2679:329;-1:-1:-1;;;2679:329:4:o;2409:1049:5:-;2501:36;2521:15;2501:19;:36::i;:::-;2488:9;:49;;2480:85;;;;-1:-1:-1;;;2480:85:5;;8483:2:17;2480:85:5;;;8465:21:17;8522:2;8502:18;;;8495:30;8561:25;8541:18;;;8534:53;8604:18;;2480:85:5;8281:347:17;2480:85:5;2583:12;;:28;;-1:-1:-1;;;;;2583:12:5;;;;2601:9;2583:28;;;;;:12;:28;:12;:28;2601:9;2583:12;:28;;;;;;;2575:71;;;;-1:-1:-1;;;2575:71:5;;9242:2:17;2575:71:5;;;9224:21:17;9281:2;9261:18;;;9254:30;9320:32;9300:18;;;9293:60;9370:18;;2575:71:5;9040:354:17;2575:71:5;880:5;2664:46;2694:15;2664:25;:15;864:14:2;;773:112;2664:25:5;:29;;:46::i;:::-;:59;;2656:104;;;;-1:-1:-1;;;2656:104:5;;15448:2:17;2656:104:5;;;15430:21:17;;;15467:18;;;15460:30;15526:34;15506:18;;;15499:62;15578:18;;2656:104:5;15246:356:17;2656:104:5;2778:10;;;;:18;;:10;:18;2770:49;;;;-1:-1:-1;;;2770:49:5;;11478:2:17;2770:49:5;;;11460:21:17;11517:2;11497:18;;;11490:30;-1:-1:-1;;;11536:18:17;;;11529:48;11594:18;;2770:49:5;11276:342:17;2770:49:5;2856:2;2837:15;:21;;2829:59;;;;-1:-1:-1;;;2829:59:5;;9958:2:17;2829:59:5;;;9940:21:17;9997:2;9977:18;;;9970:30;10036:27;10016:18;;;10009:55;10081:18;;2829:59:5;9756:349:17;2829:59:5;2910:15;2929:2;2910:21;2907:545;;2951:9;2947:222;2970:15;2966:1;:19;2947:222;;;3010:52;3020:10;3032:25;:15;864:14:2;;773:112;3032:25:5;:29;;3060:1;3032:29;:::i;:::-;3010:9;:52::i;:::-;3080:27;:15;978:19:2;;996:1;978:19;;;891:123;3080:27:5;3139:11;;:15;;3153:1;3139:15;:::i;:::-;3125:11;:29;2987:3;;;;:::i;:::-;;;;2947:222;;2907:545;3196:15;3215:2;3196:21;3193:259;;;3237:9;3233:209;3256:2;3252:1;:6;3233:209;;;3283:52;3293:10;3305:25;:15;864:14:2;;773:112;3283:52:5;3353:27;:15;978:19:2;;996:1;978:19;;;891:123;3353:27:5;3412:11;;:15;;3426:1;3412:15;:::i;:::-;3398:11;:29;3260:3;;;;:::i;:::-;;;;3233:209;;3808:219;3905:10;3889:27;;;;:15;:27;;;;;;;;:35;;:27;:35;3881:95;;;;-1:-1:-1;;;3881:95:5;;15032:2:17;3881:95:5;;;15014:21:17;15071:2;15051:18;;;15044:30;15110:34;15090:18;;;15083:62;-1:-1:-1;;;15161:18:17;;;15154:45;15216:19;;3881:95:5;14830:411:17;3881:95:5;3986:5;;:34;;-1:-1:-1;;;3986:34:5;;-1:-1:-1;;;;;6055:32:17;;;3986:34:5;;;6037:51:17;6104:18;;;6097:34;;;3986:5:5;;;;:15;;6010:18:17;;3986:34:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3808:219;;:::o;1839:189:13:-;1038:6;;-1:-1:-1;;;;;1038:6:13;666:10:1;1178:23:13;1170:68;;;;-1:-1:-1;;;1170:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:13;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:13;;8835:2:17;1919:73:13::1;::::0;::::1;8817:21:17::0;8874:2;8854:18;;;8847:30;8913:34;8893:18;;;8886:62;-1:-1:-1;;;8964:18:17;;;8957:36;9010:19;;1919:73:13::1;8633:402:17::0;1919:73:13::1;2002:19;2012:8;2002:9;:19::i;3468:330:5:-:0;3557:10;3530:23;3544:8;3530:13;:23::i;:::-;-1:-1:-1;;;;;3530:37:5;;:76;;;-1:-1:-1;3587:10:5;3571:27;;;;:15;:27;;;;;;;;:35;;:27;:35;3530:76;3522:143;;;;-1:-1:-1;;;3522:143:5;;16583:2:17;3522:143:5;;;16565:21:17;16622:2;16602:18;;;16595:30;16661:34;16641:18;;;16634:62;-1:-1:-1;;;16712:18:17;;;16705:52;16774:19;;3522:143:5;16381:418:17;3522:143:5;3683:9;;;;;;;;:17;;:9;:17;3675:52;;;;-1:-1:-1;;;3675:52:5;;13435:2:17;3675:52:5;;;13417:21:17;13474:2;13454:18;;;13447:30;-1:-1:-1;;;13493:18:17;;;13486:52;13555:18;;3675:52:5;13233:346:17;3675:52:5;3737:15;3743:8;3737:5;:15::i;:::-;3790:1;3776:11;;:15;;;;:::i;:::-;3762:11;:29;-1:-1:-1;3468:330:5:o;11008:171:4:-;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:4;-1:-1:-1;;;;;11082:29:4;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:4;;;;;;;;;;;11008:171;;:::o;2012:312:0:-;2126:6;2101:21;:31;;2093:73;;;;-1:-1:-1;;;2093:73:0;;12252:2:17;2093:73:0;;;12234:21:17;12291:2;12271:18;;;12264:30;12330:31;12310:18;;;12303:59;12379:18;;2093:73:0;12050:353:17;2093:73:0;2178:12;2196:9;-1:-1:-1;;;;;2196:14:0;2218:6;2196:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2177:52;;;2247:7;2239:78;;;;-1:-1:-1;;;2239:78:0;;11825:2:17;2239:78:0;;;11807:21:17;11864:2;11844:18;;;11837:30;11903:34;11883:18;;;11876:62;11974:28;11954:18;;;11947:56;12020:19;;2239:78:0;11623:422:17;4724:330:4;4913:41;666:10:1;4946:7:4;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:4;;;;;;;:::i;:::-;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;2034:169:13:-;2108:6;;;-1:-1:-1;;;;;2124:17:13;;;-1:-1:-1;;;;;;2124:17:13;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2079:124;2034:169;:::o;5365:320:4:-;5534:41;666:10:1;5567:7:4;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:4;;;;;;;:::i;:::-;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;3382:96:15:-;3440:7;3466:5;3470:1;3466;:5;:::i;4589:119:5:-;4649:13;4685:16;4678:23;;;;;:::i;275:703:16:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:16;;;;;;;;;;;;-1:-1:-1;;;574:10:16;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:16;;-1:-1:-1;720:2:16;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:16;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:16;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:16;;;;;;;;-1:-1:-1;919:11:16;928:2;919:11;;:::i;:::-;;;791:150;;;964:6;275:703;-1:-1:-1;;;;275:703:16:o;2672:96:15:-;2730:7;2756:5;2760:1;2756;:5;:::i;8114:108:4:-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;9665:348::-;9724:13;9740:23;9755:7;9740:14;:23::i;:::-;9724:39;;9860:29;9877:1;9881:7;9860:8;:29::i;:::-;-1:-1:-1;;;;;9900:16:4;;;;;;:9;:16;;;;;:21;;9920:1;;9900:16;:21;;9920:1;;9900:21;:::i;:::-;;;;-1:-1:-1;;9938:16:4;;;;:7;:16;;;;;;9931:23;;-1:-1:-1;;;;;;9931:23:4;;;9970:36;9946:7;;9938:16;-1:-1:-1;;;;;9970:36:4;;;;;9938:16;;9970:36;9714:299;9665:348;:::o;7440:344::-;7533:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;7549:73;;;;-1:-1:-1;;;7549:73:4;;12610:2:17;7549:73:4;;;12592:21:17;12649:2;12629:18;;;12622:30;12688:34;12668:18;;;12661:62;-1:-1:-1;;;12739:18:17;;;12732:42;12791:19;;7549:73:4;12408:408:17;7549:73:4;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:4;:7;-1:-1:-1;;;;;7689:16:4;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:4;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:4;;7689:51;:87;;;-1:-1:-1;;;;;;4620:25:4;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7744:32;4500:162;10337:560;10491:4;-1:-1:-1;;;;;10464:31:4;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:4;;10456:85;;;;-1:-1:-1;;;10456:85:4;;17367:2:17;10456:85:4;;;17349:21:17;17406:2;17386:18;;;17379:30;17445:34;17425:18;;;17418:62;-1:-1:-1;;;17496:18:17;;;17489:39;17545:19;;10456:85:4;17165:405:17;10456:85:4;-1:-1:-1;;;;;10559:16:4;;10551:65;;;;-1:-1:-1;;;10551:65:4;;10719:2:17;10551:65:4;;;10701:21:17;10758:2;10738:18;;;10731:30;10797:34;10777:18;;;10770:62;-1:-1:-1;;;10848:18:17;;;10841:34;10892:19;;10551:65:4;10517:400:17;10551:65:4;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:4;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:4;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:4;-1:-1:-1;;;;;10826:21:4;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;6547:307::-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:4;;;;;;;:::i;8443:311::-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;-1:-1:-1;;;8596:151:4;;;;;;;:::i;11732:778::-;11882:4;-1:-1:-1;;;;;11902:13:4;;1034:20:0;1080:8;11898:606:4;;11937:72;;-1:-1:-1;;;11937:72:4;;-1:-1:-1;;;;;11937:36:4;;;;;:72;;666:10:1;;11988:4:4;;11994:7;;12003:5;;11937:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:4;;;;;;;;-1:-1:-1;;11937:72:4;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12176:13:4;;12172:266;;12218:60;;-1:-1:-1;;;12218:60:4;;;;;;;:::i;12172:266::-;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;-1:-1:-1;;;;;;12059:51:4;-1:-1:-1;;;12059:51:4;;-1:-1:-1;12052:58:4;;11898:606;-1:-1:-1;12489:4:4;11732:778;;;;;;:::o;9076:372::-;-1:-1:-1;;;;;9155:16:4;;9147:61;;;;-1:-1:-1;;;9147:61:4;;15809:2:17;9147:61:4;;;15791:21:17;;;15828:18;;;15821:30;15887:34;15867:18;;;15860:62;15939:18;;9147:61:4;15607:356:17;9147:61:4;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:4;:30;9218:58;;;;-1:-1:-1;;;9218:58:4;;9601:2:17;9218:58:4;;;9583:21:17;9640:2;9620:18;;;9613:30;9679;9659:18;;;9652:58;9727:18;;9218:58:4;9399:352:17;9218:58:4;-1:-1:-1;;;;;9343:13:4;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:4;-1:-1:-1;;;;;9371:21:4;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:17;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:17;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;1162:388::-;1230:6;1238;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1346:9;1333:23;1365:31;1390:5;1365:31;:::i;:::-;1415:5;-1:-1:-1;1472:2:17;1457:18;;1444:32;1485:33;1444:32;1485:33;:::i;:::-;1537:7;1527:17;;;1162:388;;;;;:::o;1555:456::-;1632:6;1640;1648;1701:2;1689:9;1680:7;1676:23;1672:32;1669:52;;;1717:1;1714;1707:12;1669:52;1756:9;1743:23;1775:31;1800:5;1775:31;:::i;:::-;1825:5;-1:-1:-1;1882:2:17;1867:18;;1854:32;1895:33;1854:32;1895:33;:::i;:::-;1555:456;;1947:7;;-1:-1:-1;;;2001:2:17;1986:18;;;;1973:32;;1555:456::o;2016:794::-;2111:6;2119;2127;2135;2188:3;2176:9;2167:7;2163:23;2159:33;2156:53;;;2205:1;2202;2195:12;2156:53;2244:9;2231:23;2263:31;2288:5;2263:31;:::i;:::-;2313:5;-1:-1:-1;2370:2:17;2355:18;;2342:32;2383:33;2342:32;2383:33;:::i;:::-;2435:7;-1:-1:-1;2489:2:17;2474:18;;2461:32;;-1:-1:-1;2544:2:17;2529:18;;2516:32;2571:18;2560:30;;2557:50;;;2603:1;2600;2593:12;2557:50;2626:22;;2679:4;2671:13;;2667:27;-1:-1:-1;2657:55:17;;2708:1;2705;2698:12;2657:55;2731:73;2796:7;2791:2;2778:16;2773:2;2769;2765:11;2731:73;:::i;:::-;2721:83;;;2016:794;;;;;;;:::o;2815:416::-;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;-1:-1:-1;3122:2:17;3107:18;;3094:32;3164:15;;3157:23;3145:36;;3135:64;;3195:1;3192;3185:12;3236:315;3304:6;3312;3365:2;3353:9;3344:7;3340:23;3336:32;3333:52;;;3381:1;3378;3371:12;3333:52;3420:9;3407:23;3439:31;3464:5;3439:31;:::i;:::-;3489:5;3541:2;3526:18;;;;3513:32;;-1:-1:-1;;;3236:315:17:o;3556:245::-;3614:6;3667:2;3655:9;3646:7;3642:23;3638:32;3635:52;;;3683:1;3680;3673:12;3635:52;3722:9;3709:23;3741:30;3765:5;3741:30;:::i;3806:249::-;3875:6;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;3976:9;3970:16;3995:30;4019:5;3995:30;:::i;4060:450::-;4129:6;4182:2;4170:9;4161:7;4157:23;4153:32;4150:52;;;4198:1;4195;4188:12;4150:52;4238:9;4225:23;4271:18;4263:6;4260:30;4257:50;;;4303:1;4300;4293:12;4257:50;4326:22;;4379:4;4371:13;;4367:27;-1:-1:-1;4357:55:17;;4408:1;4405;4398:12;4357:55;4431:73;4496:7;4491:2;4478:16;4473:2;4469;4465:11;4431:73;:::i;4515:180::-;4574:6;4627:2;4615:9;4606:7;4602:23;4598:32;4595:52;;;4643:1;4640;4633:12;4595:52;-1:-1:-1;4666:23:17;;4515:180;-1:-1:-1;4515:180:17:o;4700:257::-;4741:3;4779:5;4773:12;4806:6;4801:3;4794:19;4822:63;4878:6;4871:4;4866:3;4862:14;4855:4;4848:5;4844:16;4822:63;:::i;:::-;4939:2;4918:15;-1:-1:-1;;4914:29:17;4905:39;;;;4946:4;4901:50;;4700:257;-1:-1:-1;;4700:257:17:o;4962:470::-;5141:3;5179:6;5173:13;5195:53;5241:6;5236:3;5229:4;5221:6;5217:17;5195:53;:::i;:::-;5311:13;;5270:16;;;;5333:57;5311:13;5270:16;5367:4;5355:17;;5333:57;:::i;:::-;5406:20;;4962:470;-1:-1:-1;;;;4962:470:17:o;6451:488::-;-1:-1:-1;;;;;6720:15:17;;;6702:34;;6772:15;;6767:2;6752:18;;6745:43;6819:2;6804:18;;6797:34;;;6867:3;6862:2;6847:18;;6840:31;;;6645:4;;6888:45;;6913:19;;6905:6;6888:45;:::i;:::-;6880:53;6451:488;-1:-1:-1;;;;;;6451:488:17:o;7638:219::-;7787:2;7776:9;7769:21;7750:4;7807:44;7847:2;7836:9;7832:18;7824:6;7807:44;:::i;7862:414::-;8064:2;8046:21;;;8103:2;8083:18;;;8076:30;8142:34;8137:2;8122:18;;8115:62;-1:-1:-1;;;8208:2:17;8193:18;;8186:48;8266:3;8251:19;;7862:414::o;16804:356::-;17006:2;16988:21;;;17025:18;;;17018:30;17084:34;17079:2;17064:18;;17057:62;17151:2;17136:18;;16804:356::o;18393:413::-;18595:2;18577:21;;;18634:2;18614:18;;;18607:30;18673:34;18668:2;18653:18;;18646:62;-1:-1:-1;;;18739:2:17;18724:18;;18717:47;18796:3;18781:19;;18393:413::o;18993:128::-;19033:3;19064:1;19060:6;19057:1;19054:13;19051:39;;;19070:18;;:::i;:::-;-1:-1:-1;19106:9:17;;18993:128::o;19126:120::-;19166:1;19192;19182:35;;19197:18;;:::i;:::-;-1:-1:-1;19231:9:17;;19126:120::o;19251:168::-;19291:7;19357:1;19353;19349:6;19345:14;19342:1;19339:21;19334:1;19327:9;19320:17;19316:45;19313:71;;;19364:18;;:::i;:::-;-1:-1:-1;19404:9:17;;19251:168::o;19424:125::-;19464:4;19492:1;19489;19486:8;19483:34;;;19497:18;;:::i;:::-;-1:-1:-1;19534:9:17;;19424:125::o;19554:258::-;19626:1;19636:113;19650:6;19647:1;19644:13;19636:113;;;19726:11;;;19720:18;19707:11;;;19700:39;19672:2;19665:10;19636:113;;;19767:6;19764:1;19761:13;19758:48;;;-1:-1:-1;;19802:1:17;19784:16;;19777:27;19554:258::o;19817:380::-;19896:1;19892:12;;;;19939;;;19960:61;;20014:4;20006:6;20002:17;19992:27;;19960:61;20067:2;20059:6;20056:14;20036:18;20033:38;20030:161;;;20113:10;20108:3;20104:20;20101:1;20094:31;20148:4;20145:1;20138:15;20176:4;20173:1;20166:15;20030:161;;19817:380;;;:::o;20202:135::-;20241:3;-1:-1:-1;;20262:17:17;;20259:43;;;20282:18;;:::i;:::-;-1:-1:-1;20329:1:17;20318:13;;20202:135::o;20342:112::-;20374:1;20400;20390:35;;20405:18;;:::i;:::-;-1:-1:-1;20439:9:17;;20342:112::o;20459:127::-;20520:10;20515:3;20511:20;20508:1;20501:31;20551:4;20548:1;20541:15;20575:4;20572:1;20565:15;20591:127;20652:10;20647:3;20643:20;20640:1;20633:31;20683:4;20680:1;20673:15;20707:4;20704:1;20697:15;20723:127;20784:10;20779:3;20775:20;20772:1;20765:31;20815:4;20812:1;20805:15;20839:4;20836:1;20829:15;20855:127;20916:10;20911:3;20907:20;20904:1;20897:31;20947:4;20944:1;20937:15;20971:4;20968:1;20961:15;20987:131;-1:-1:-1;;;;;21062:31:17;;21052:42;;21042:70;;21108:1;21105;21098:12;21123:131;-1:-1:-1;;;;;;21197:32:17;;21187:43;;21177:71;;21244:1;21241;21234:12

Swarm Source

ipfs://33400ded1d46668df7bb9f8f3b6d600350cf88edf210dd996c84587dfd9cc64f
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.