ETH Price: $3,308.16 (-3.26%)
Gas: 13 Gwei

Token

Fight Club (FC)
 

Overview

Max Total Supply

1,004 FC

Holders

316

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
agogojoe.eth
Balance
2 FC
0x13546cdb4fea70936acacd8e8a07b2117af765ca
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:
FightClub

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-18
*/

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            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] = toDeleteIndex + 1; // All indexes are 1-based

            // 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) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

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

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


    // 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 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 {
    // 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 MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @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) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @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) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @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._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.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) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._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) {
        return _get(map, key, "EnumerableMap: nonexistent key");
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // 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 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.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits;
        temp = value;
        while (temp != 0) {
            buffer[--index] = bytes1(uint8(48 + uint256(temp % 10)));
            temp /= 10;
        }
        return string(buffer);
    }
}

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

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

        return _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

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

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

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

        string memory _tokenURI = _tokenURIs[tokenId];

        // If there is no base URI, return the token URI.
        if (bytes(_baseURI).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(_baseURI, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(_baseURI, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = 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 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 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 returns (bool) {
        return _tokenOwners.contains(tokenId);
    }

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

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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 = ownerOf(tokenId);

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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(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);

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    function _approve(address to, uint256 tokenId) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

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

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

contract FightClub is ERC721Burnable, Ownable {

    string public FC_PROVENANCE = "";

    uint256 public constant MAX_FC = 6666;

    uint256 public constant MINT_PRICE = 0.06666 ether; //0.06666 ETH

    address payable immutable ownerAddress;

    bool public mintIsActive = false;

    mapping(address => uint256) public minted;

    constructor() ERC721("Fight Club", "FC") {
        ownerAddress = payable(msg.sender);
    }

    function withdraw() external onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    /**
     * Set some NFTs aside
     */
    function reserve() public onlyOwner {        
        uint supply = totalSupply();
        for (uint i = 0; i < 15; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    /*     
    * Set provenance once it's calculated
    */
    function setProvenanceHash(string memory provenanceHash) external onlyOwner {
        FC_PROVENANCE = provenanceHash;
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        _setBaseURI(baseURI);
    }

    /*
    * Pause sale if active, make active if paused
    */
    function flipMintState() external onlyOwner {
        mintIsActive = !mintIsActive;
    }

    /**
    * Mints FC
    */
    function mintFC(uint256 noOfTokens) external payable {
        require(mintIsActive, "Fight Club sale is not active");
        if(totalSupply()>1000) {
            require(minted[msg.sender]+noOfTokens <= 12, "Cannot buy more then 12 nfts per Wallet");
            require(msg.value == (noOfTokens * MINT_PRICE)," Wrong eth value sent");
        }
        else {
            require(minted[msg.sender]+noOfTokens <= 5, "Cannot buy more then 5 free nfts per Wallet");
        }
        require(totalSupply()+noOfTokens <= MAX_FC, "All FCs has been minted");
        ownerAddress.transfer(msg.value);
        
        minted[msg.sender]+=noOfTokens;
        for(uint256 i=0; i<noOfTokens; i++)
        {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_FC) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FC_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMintState","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"noOfTokens","type":"uint256"}],"name":"mintFC","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040819052600060a08190526200001b91600b91620001b6565b50600c805460ff191690553480156200003357600080fd5b50604080518082018252600a8152692334b3b43a1021b63ab160b11b60208083019190915282518084019093526002835261464360f01b9083015290620000816301ffc9a760e01b62000132565b815162000096906006906020850190620001b6565b508051620000ac906007906020840190620001b6565b50620000bf6380ac58cd60e01b62000132565b620000d1635b5e139f60e01b62000132565b620000e363780e9d6360e01b62000132565b5050600a80546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3503360805262000299565b6001600160e01b03198082161415620001915760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b828054620001c4906200025c565b90600052602060002090601f016020900481019282620001e8576000855562000233565b82601f106200020357805160ff191683800117855562000233565b8280016001018555821562000233579182015b828111156200023357825182559160200191906001019062000216565b506200024192915062000245565b5090565b5b8082111562000241576000815560010162000246565b600181811c908216806200027157607f821691505b602082108114156200029357634e487b7160e01b600052602260045260246000fd5b50919050565b6080516127c8620002b56000396000610e5401526127c86000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461055d578063cd3293de1461057d578063e985e9c514610592578063f2fde38b146105db57600080fd5b8063a22cb465146104ec578063a5411f181461050c578063b88d4fde14610522578063c002d23d1461054257600080fd5b80637aac87a9116100d15780637aac87a9146104915780638da5cb5b146104a657806395d89b41146104c45780639de38353146104d957600080fd5b80636352211e146104275780636c0360eb1461044757806370a082311461045c578063715018a61461047c57600080fd5b80632f745c591161017a578063471a429411610149578063471a4294146103b85780634f6ccce7146103d257806355f804b3146103f257806359c74f291461041257600080fd5b80632f745c59146103435780633ccfd60b1461036357806342842e0e1461037857806342966c681461039857600080fd5b806310969523116101b657806310969523146102b357806318160ddd146102d35780631e7269c5146102f657806323b872dd1461032357600080fd5b806301ffc9a7146101e857806306fdde0314610237578063081812fc14610259578063095ea7b314610291575b600080fd5b3480156101f457600080fd5b506102226102033660046120ed565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561024357600080fd5b5061024c6105fb565b60405161022e9190612162565b34801561026557600080fd5b50610279610274366004612175565b61068d565b6040516001600160a01b03909116815260200161022e565b34801561029d57600080fd5b506102b16102ac3660046121aa565b61071a565b005b3480156102bf57600080fd5b506102b16102ce366004612260565b610830565b3480156102df57600080fd5b506102e8610871565b60405190815260200161022e565b34801561030257600080fd5b506102e86103113660046122a9565b600d6020526000908152604090205481565b34801561032f57600080fd5b506102b161033e3660046122c4565b610882565b34801561034f57600080fd5b506102e861035e3660046121aa565b6108b4565b34801561036f57600080fd5b506102b16108df565b34801561038457600080fd5b506102b16103933660046122c4565b610938565b3480156103a457600080fd5b506102b16103b3366004612175565b610953565b3480156103c457600080fd5b50600c546102229060ff1681565b3480156103de57600080fd5b506102e86103ed366004612175565b6109cd565b3480156103fe57600080fd5b506102b161040d366004612260565b6109e3565b34801561041e57600080fd5b506102b1610a16565b34801561043357600080fd5b50610279610442366004612175565b610a54565b34801561045357600080fd5b5061024c610a7c565b34801561046857600080fd5b506102e86104773660046122a9565b610a8b565b34801561048857600080fd5b506102b1610b17565b34801561049d57600080fd5b5061024c610b8b565b3480156104b257600080fd5b50600a546001600160a01b0316610279565b3480156104d057600080fd5b5061024c610c19565b6102b16104e7366004612175565b610c28565b3480156104f857600080fd5b506102b1610507366004612300565b610f07565b34801561051857600080fd5b506102e8611a0a81565b34801561052e57600080fd5b506102b161053d36600461233c565b610fcc565b34801561054e57600080fd5b506102e866ecd2eab4ba400081565b34801561056957600080fd5b5061024c610578366004612175565b611004565b34801561058957600080fd5b506102b1611175565b34801561059e57600080fd5b506102226105ad3660046123b8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105e757600080fd5b506102b16105f63660046122a9565b6111dc565b60606006805461060a906123eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610636906123eb565b80156106835780601f1061065857610100808354040283529160200191610683565b820191906000526020600020905b81548152906001019060200180831161066657829003601f168201915b5050505050905090565b6000610698826112c7565b6106fe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061072582610a54565b9050806001600160a01b0316836001600160a01b031614156107935760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f5565b336001600160a01b03821614806107af57506107af81336105ad565b6108215760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f5565b61082b83836112d4565b505050565b600a546001600160a01b0316331461085a5760405162461bcd60e51b81526004016106f590612426565b805161086d90600b906020840190612008565b5050565b600061087d6002611342565b905090565b61088d335b8261134c565b6108a95760405162461bcd60e51b81526004016106f59061245b565b61082b838383611436565b6001600160a01b03821660009081526001602052604081206108d690836115b7565b90505b92915050565b600a546001600160a01b031633146109095760405162461bcd60e51b81526004016106f590612426565b6040514790339082156108fc029083906000818181858888f1935050505015801561086d573d6000803e3d6000fd5b61082b83838360405180602001604052806000815250610fcc565b61095c33610887565b6109c15760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016106f5565b6109ca816115c3565b50565b6000806109db60028461167d565b509392505050565b600a546001600160a01b03163314610a0d5760405162461bcd60e51b81526004016106f590612426565b6109ca81611699565b600a546001600160a01b03163314610a405760405162461bcd60e51b81526004016106f590612426565b600c805460ff19811660ff90911615179055565b60006108d98260405180606001604052806029815260200161276a60299139600291906116ac565b60606009805461060a906123eb565b60006001600160a01b038216610af65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f5565b6001600160a01b03821660009081526001602052604090206108d990611342565b600a546001600160a01b03163314610b415760405162461bcd60e51b81526004016106f590612426565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600b8054610b98906123eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc4906123eb565b8015610c115780601f10610be657610100808354040283529160200191610c11565b820191906000526020600020905b815481529060010190602001808311610bf457829003601f168201915b505050505081565b60606007805461060a906123eb565b600c5460ff16610c7a5760405162461bcd60e51b815260206004820152601d60248201527f466967687420436c75622073616c65206973206e6f742061637469766500000060448201526064016106f5565b6103e8610c85610871565b1115610d6357336000908152600d6020526040902054600c90610ca99083906124c2565b1115610d075760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f7420627579206d6f7265207468656e203132206e667473207065726044820152660815d85b1b195d60ca1b60648201526084016106f5565b610d1866ecd2eab4ba4000826124da565b3414610d5e5760405162461bcd60e51b81526020600482015260156024820152740815dc9bdb99c8195d1a081d985b1d59481cd95b9d605a1b60448201526064016106f5565b610de3565b336000908152600d6020526040902054600590610d819083906124c2565b1115610de35760405162461bcd60e51b815260206004820152602b60248201527f43616e6e6f7420627579206d6f7265207468656e20352066726565206e66747360448201526a081c195c8815d85b1b195d60aa1b60648201526084016106f5565b611a0a81610def610871565b610df991906124c2565b1115610e475760405162461bcd60e51b815260206004820152601760248201527f416c6c2046437320686173206265656e206d696e74656400000000000000000060448201526064016106f5565b6040516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016903480156108fc02916000818181858888f19350505050158015610e9c573d6000803e3d6000fd5b50336000908152600d602052604081208054839290610ebc9084906124c2565b90915550600090505b8181101561086d576000610ed7610871565b9050611a0a610ee4610871565b1015610ef457610ef433826116c3565b5080610eff816124f9565b915050610ec5565b6001600160a01b038216331415610f605760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f5565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fd6338361134c565b610ff25760405162461bcd60e51b81526004016106f59061245b565b610ffe848484846116dd565b50505050565b606061100f826112c7565b6110735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f5565b6000828152600860205260408120805461108c906123eb565b80601f01602080910402602001604051908101604052809291908181526020018280546110b8906123eb565b80156111055780601f106110da57610100808354040283529160200191611105565b820191906000526020600020905b8154815290600101906020018083116110e857829003601f168201915b5050505050905060098054611119906123eb565b151590506111275792915050565b80511561115957600981604051602001611142929190612530565b604051602081830303815290604052915050919050565b600961116484611710565b604051602001611142929190612530565b600a546001600160a01b0316331461119f5760405162461bcd60e51b81526004016106f590612426565b60006111a9610871565b905060005b600f81101561086d576111ca336111c583856124c2565b6116c3565b806111d4816124f9565b9150506111ae565b600a546001600160a01b031633146112065760405162461bcd60e51b81526004016106f590612426565b6001600160a01b03811661126b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f5565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006108d9600283611819565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061130982610a54565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006108d9825490565b6000611357826112c7565b6113b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f5565b60006113c383610a54565b9050806001600160a01b0316846001600160a01b031614806113fe5750836001600160a01b03166113f38461068d565b6001600160a01b0316145b8061142e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661144982610a54565b6001600160a01b0316146114b15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f5565b6001600160a01b0382166115135760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f5565b61151e6000826112d4565b6001600160a01b03831660009081526001602052604090206115409082611831565b506001600160a01b0382166000908152600160205260409020611563908261183d565b5061157060028284611849565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006108d6838361185f565b60006115ce82610a54565b90506115db6000836112d4565b600082815260086020526040902080546115f4906123eb565b1590506116125760008281526008602052604081206116129161208c565b6001600160a01b03811660009081526001602052604090206116349083611831565b506116406002836118e5565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080808061168c86866118f1565b9097909650945050505050565b805161086d906009906020840190612008565b60006116b984848461198e565b90505b9392505050565b61086d8282604051806020016040528060008152506119f7565b6116e8848484611436565b6116f484848484611a2a565b610ffe5760405162461bcd60e51b81526004016106f5906125d7565b6060816117345750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175e5780611748816124f9565b91506117579050600a8361263f565b9150611738565b60008167ffffffffffffffff811115611779576117796121d4565b6040519080825280601f01601f1916602001820160405280156117a3576020820181803683370190505b508593509050815b8315611810576117bc600a85612653565b6117c79060306124c2565b60f81b826117d483612667565b925082815181106117e7576117e761267e565b60200101906001600160f81b031916908160001a905350611809600a8561263f565b93506117ab565b50949350505050565b600081815260018301602052604081205415156108d6565b60006108d68383611afb565b60006108d68383611bee565b60006116b984846001600160a01b038516611c3d565b815460009082106118bd5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106f5565b8260000182815481106118d2576118d261267e565b9060005260206000200154905092915050565b60006108d68383611cde565b8154600090819083106119515760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106f5565b60008460000184815481106119685761196861267e565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816119be5760405162461bcd60e51b81526004016106f59190612162565b50846119cb600183612694565b815481106119db576119db61267e565b9060005260206000209060020201600101549150509392505050565b611a018383611de5565b611a0e6000848484611a2a565b61082b5760405162461bcd60e51b81526004016106f5906125d7565b60006001600160a01b0384163b611a435750600161142e565b6000611ac4630a85bd0160e11b33888787604051602401611a6794939291906126ab565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612738603291396001600160a01b0388169190611efd565b9050600081806020019051810190611adc91906126e8565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60008181526001830160205260408120548015611be4576000611b1f600183612694565b8554909150600090611b3390600190612694565b90506000866000018281548110611b4c57611b4c61267e565b9060005260206000200154905080876000018481548110611b6f57611b6f61267e565b600091825260209091200155611b868360016124c2565b60008281526001890160205260409020558654879080611ba857611ba8612705565b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108d9565b60009150506108d9565b6000818152600183016020526040812054611c35575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108d9565b5060006108d9565b600082815260018401602052604081205480611ca25750506040805180820182528381526020808201848152865460018181018955600089815284812095516002909302909501918255915190820155865486845281880190925292909120556116bc565b8285611caf600184612694565b81548110611cbf57611cbf61267e565b90600052602060002090600202016001018190555060009150506116bc565b60008181526001830160205260408120548015611be4576000611d02600183612694565b8554909150600090611d1690600190612694565b90506000866000018281548110611d2f57611d2f61267e565b9060005260206000209060020201905080876000018481548110611d5557611d5561267e565b60009182526020909120825460029092020190815560019182015490820155611d7f9084906124c2565b815460009081526001890160205260409020558654879080611da357611da3612705565b60008281526020808220600260001990940193840201828155600190810183905592909355888152898201909252604082209190915594506108d99350505050565b6001600160a01b038216611e3b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f5565b611e44816112c7565b15611e915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f5565b6001600160a01b0382166000908152600160205260409020611eb3908261183d565b50611ec060028284611849565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606116b9848460008585843b611f565760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106f5565b600080866001600160a01b03168587604051611f72919061271b565b60006040518083038185875af1925050503d8060008114611faf576040519150601f19603f3d011682016040523d82523d6000602084013e611fb4565b606091505b5091509150611fc4828286611fcf565b979650505050505050565b60608315611fde5750816116bc565b825115611fee5782518084602001fd5b8160405162461bcd60e51b81526004016106f59190612162565b828054612014906123eb565b90600052602060002090601f016020900481019282612036576000855561207c565b82601f1061204f57805160ff191683800117855561207c565b8280016001018555821561207c579182015b8281111561207c578251825591602001919060010190612061565b506120889291506120c2565b5090565b508054612098906123eb565b6000825580601f106120a8575050565b601f0160209004906000526020600020908101906109ca91905b5b8082111561208857600081556001016120c3565b6001600160e01b0319811681146109ca57600080fd5b6000602082840312156120ff57600080fd5b81356116bc816120d7565b60005b8381101561212557818101518382015260200161210d565b83811115610ffe5750506000910152565b6000815180845261214e81602086016020860161210a565b601f01601f19169290920160200192915050565b6020815260006108d66020830184612136565b60006020828403121561218757600080fd5b5035919050565b80356001600160a01b03811681146121a557600080fd5b919050565b600080604083850312156121bd57600080fd5b6121c68361218e565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612205576122056121d4565b604051601f8501601f19908116603f0116810190828211818310171561222d5761222d6121d4565b8160405280935085815286868601111561224657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561227257600080fd5b813567ffffffffffffffff81111561228957600080fd5b8201601f8101841361229a57600080fd5b61142e848235602084016121ea565b6000602082840312156122bb57600080fd5b6108d68261218e565b6000806000606084860312156122d957600080fd5b6122e28461218e565b92506122f06020850161218e565b9150604084013590509250925092565b6000806040838503121561231357600080fd5b61231c8361218e565b91506020830135801515811461233157600080fd5b809150509250929050565b6000806000806080858703121561235257600080fd5b61235b8561218e565b93506123696020860161218e565b925060408501359150606085013567ffffffffffffffff81111561238c57600080fd5b8501601f8101871361239d57600080fd5b6123ac878235602084016121ea565b91505092959194509250565b600080604083850312156123cb57600080fd5b6123d48361218e565b91506123e26020840161218e565b90509250929050565b600181811c908216806123ff57607f821691505b6020821081141561242057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124d5576124d56124ac565b500190565b60008160001904831182151516156124f4576124f46124ac565b500290565b600060001982141561250d5761250d6124ac565b5060010190565b6000815161252681856020860161210a565b9290920192915050565b600080845481600182811c91508083168061254c57607f831692505b602080841082141561256c57634e487b7160e01b86526022600452602486fd5b8180156125805760018114612591576125be565b60ff198616895284890196506125be565b60008b81526020902060005b868110156125b65781548b82015290850190830161259d565b505084890196505b5050505050506125ce8185612514565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261264e5761264e612629565b500490565b60008261266257612662612629565b500690565b600081612676576126766124ac565b506000190190565b634e487b7160e01b600052603260045260246000fd5b6000828210156126a6576126a66124ac565b500390565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126de90830184612136565b9695505050505050565b6000602082840312156126fa57600080fd5b81516116bc816120d7565b634e487b7160e01b600052603160045260246000fd5b6000825161272d81846020870161210a565b919091019291505056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122090bf7b950dd35dc214b59420bec483088b45d136072d241fc81ff4077c2c013764736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461055d578063cd3293de1461057d578063e985e9c514610592578063f2fde38b146105db57600080fd5b8063a22cb465146104ec578063a5411f181461050c578063b88d4fde14610522578063c002d23d1461054257600080fd5b80637aac87a9116100d15780637aac87a9146104915780638da5cb5b146104a657806395d89b41146104c45780639de38353146104d957600080fd5b80636352211e146104275780636c0360eb1461044757806370a082311461045c578063715018a61461047c57600080fd5b80632f745c591161017a578063471a429411610149578063471a4294146103b85780634f6ccce7146103d257806355f804b3146103f257806359c74f291461041257600080fd5b80632f745c59146103435780633ccfd60b1461036357806342842e0e1461037857806342966c681461039857600080fd5b806310969523116101b657806310969523146102b357806318160ddd146102d35780631e7269c5146102f657806323b872dd1461032357600080fd5b806301ffc9a7146101e857806306fdde0314610237578063081812fc14610259578063095ea7b314610291575b600080fd5b3480156101f457600080fd5b506102226102033660046120ed565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561024357600080fd5b5061024c6105fb565b60405161022e9190612162565b34801561026557600080fd5b50610279610274366004612175565b61068d565b6040516001600160a01b03909116815260200161022e565b34801561029d57600080fd5b506102b16102ac3660046121aa565b61071a565b005b3480156102bf57600080fd5b506102b16102ce366004612260565b610830565b3480156102df57600080fd5b506102e8610871565b60405190815260200161022e565b34801561030257600080fd5b506102e86103113660046122a9565b600d6020526000908152604090205481565b34801561032f57600080fd5b506102b161033e3660046122c4565b610882565b34801561034f57600080fd5b506102e861035e3660046121aa565b6108b4565b34801561036f57600080fd5b506102b16108df565b34801561038457600080fd5b506102b16103933660046122c4565b610938565b3480156103a457600080fd5b506102b16103b3366004612175565b610953565b3480156103c457600080fd5b50600c546102229060ff1681565b3480156103de57600080fd5b506102e86103ed366004612175565b6109cd565b3480156103fe57600080fd5b506102b161040d366004612260565b6109e3565b34801561041e57600080fd5b506102b1610a16565b34801561043357600080fd5b50610279610442366004612175565b610a54565b34801561045357600080fd5b5061024c610a7c565b34801561046857600080fd5b506102e86104773660046122a9565b610a8b565b34801561048857600080fd5b506102b1610b17565b34801561049d57600080fd5b5061024c610b8b565b3480156104b257600080fd5b50600a546001600160a01b0316610279565b3480156104d057600080fd5b5061024c610c19565b6102b16104e7366004612175565b610c28565b3480156104f857600080fd5b506102b1610507366004612300565b610f07565b34801561051857600080fd5b506102e8611a0a81565b34801561052e57600080fd5b506102b161053d36600461233c565b610fcc565b34801561054e57600080fd5b506102e866ecd2eab4ba400081565b34801561056957600080fd5b5061024c610578366004612175565b611004565b34801561058957600080fd5b506102b1611175565b34801561059e57600080fd5b506102226105ad3660046123b8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105e757600080fd5b506102b16105f63660046122a9565b6111dc565b60606006805461060a906123eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610636906123eb565b80156106835780601f1061065857610100808354040283529160200191610683565b820191906000526020600020905b81548152906001019060200180831161066657829003601f168201915b5050505050905090565b6000610698826112c7565b6106fe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061072582610a54565b9050806001600160a01b0316836001600160a01b031614156107935760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f5565b336001600160a01b03821614806107af57506107af81336105ad565b6108215760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f5565b61082b83836112d4565b505050565b600a546001600160a01b0316331461085a5760405162461bcd60e51b81526004016106f590612426565b805161086d90600b906020840190612008565b5050565b600061087d6002611342565b905090565b61088d335b8261134c565b6108a95760405162461bcd60e51b81526004016106f59061245b565b61082b838383611436565b6001600160a01b03821660009081526001602052604081206108d690836115b7565b90505b92915050565b600a546001600160a01b031633146109095760405162461bcd60e51b81526004016106f590612426565b6040514790339082156108fc029083906000818181858888f1935050505015801561086d573d6000803e3d6000fd5b61082b83838360405180602001604052806000815250610fcc565b61095c33610887565b6109c15760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016106f5565b6109ca816115c3565b50565b6000806109db60028461167d565b509392505050565b600a546001600160a01b03163314610a0d5760405162461bcd60e51b81526004016106f590612426565b6109ca81611699565b600a546001600160a01b03163314610a405760405162461bcd60e51b81526004016106f590612426565b600c805460ff19811660ff90911615179055565b60006108d98260405180606001604052806029815260200161276a60299139600291906116ac565b60606009805461060a906123eb565b60006001600160a01b038216610af65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f5565b6001600160a01b03821660009081526001602052604090206108d990611342565b600a546001600160a01b03163314610b415760405162461bcd60e51b81526004016106f590612426565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600b8054610b98906123eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc4906123eb565b8015610c115780601f10610be657610100808354040283529160200191610c11565b820191906000526020600020905b815481529060010190602001808311610bf457829003601f168201915b505050505081565b60606007805461060a906123eb565b600c5460ff16610c7a5760405162461bcd60e51b815260206004820152601d60248201527f466967687420436c75622073616c65206973206e6f742061637469766500000060448201526064016106f5565b6103e8610c85610871565b1115610d6357336000908152600d6020526040902054600c90610ca99083906124c2565b1115610d075760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f7420627579206d6f7265207468656e203132206e667473207065726044820152660815d85b1b195d60ca1b60648201526084016106f5565b610d1866ecd2eab4ba4000826124da565b3414610d5e5760405162461bcd60e51b81526020600482015260156024820152740815dc9bdb99c8195d1a081d985b1d59481cd95b9d605a1b60448201526064016106f5565b610de3565b336000908152600d6020526040902054600590610d819083906124c2565b1115610de35760405162461bcd60e51b815260206004820152602b60248201527f43616e6e6f7420627579206d6f7265207468656e20352066726565206e66747360448201526a081c195c8815d85b1b195d60aa1b60648201526084016106f5565b611a0a81610def610871565b610df991906124c2565b1115610e475760405162461bcd60e51b815260206004820152601760248201527f416c6c2046437320686173206265656e206d696e74656400000000000000000060448201526064016106f5565b6040516001600160a01b037f000000000000000000000000b72d87c840f9abd5ba3a7abde0d241d675e045b216903480156108fc02916000818181858888f19350505050158015610e9c573d6000803e3d6000fd5b50336000908152600d602052604081208054839290610ebc9084906124c2565b90915550600090505b8181101561086d576000610ed7610871565b9050611a0a610ee4610871565b1015610ef457610ef433826116c3565b5080610eff816124f9565b915050610ec5565b6001600160a01b038216331415610f605760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f5565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fd6338361134c565b610ff25760405162461bcd60e51b81526004016106f59061245b565b610ffe848484846116dd565b50505050565b606061100f826112c7565b6110735760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f5565b6000828152600860205260408120805461108c906123eb565b80601f01602080910402602001604051908101604052809291908181526020018280546110b8906123eb565b80156111055780601f106110da57610100808354040283529160200191611105565b820191906000526020600020905b8154815290600101906020018083116110e857829003601f168201915b5050505050905060098054611119906123eb565b151590506111275792915050565b80511561115957600981604051602001611142929190612530565b604051602081830303815290604052915050919050565b600961116484611710565b604051602001611142929190612530565b600a546001600160a01b0316331461119f5760405162461bcd60e51b81526004016106f590612426565b60006111a9610871565b905060005b600f81101561086d576111ca336111c583856124c2565b6116c3565b806111d4816124f9565b9150506111ae565b600a546001600160a01b031633146112065760405162461bcd60e51b81526004016106f590612426565b6001600160a01b03811661126b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f5565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006108d9600283611819565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061130982610a54565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006108d9825490565b6000611357826112c7565b6113b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f5565b60006113c383610a54565b9050806001600160a01b0316846001600160a01b031614806113fe5750836001600160a01b03166113f38461068d565b6001600160a01b0316145b8061142e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661144982610a54565b6001600160a01b0316146114b15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f5565b6001600160a01b0382166115135760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f5565b61151e6000826112d4565b6001600160a01b03831660009081526001602052604090206115409082611831565b506001600160a01b0382166000908152600160205260409020611563908261183d565b5061157060028284611849565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006108d6838361185f565b60006115ce82610a54565b90506115db6000836112d4565b600082815260086020526040902080546115f4906123eb565b1590506116125760008281526008602052604081206116129161208c565b6001600160a01b03811660009081526001602052604090206116349083611831565b506116406002836118e5565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080808061168c86866118f1565b9097909650945050505050565b805161086d906009906020840190612008565b60006116b984848461198e565b90505b9392505050565b61086d8282604051806020016040528060008152506119f7565b6116e8848484611436565b6116f484848484611a2a565b610ffe5760405162461bcd60e51b81526004016106f5906125d7565b6060816117345750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175e5780611748816124f9565b91506117579050600a8361263f565b9150611738565b60008167ffffffffffffffff811115611779576117796121d4565b6040519080825280601f01601f1916602001820160405280156117a3576020820181803683370190505b508593509050815b8315611810576117bc600a85612653565b6117c79060306124c2565b60f81b826117d483612667565b925082815181106117e7576117e761267e565b60200101906001600160f81b031916908160001a905350611809600a8561263f565b93506117ab565b50949350505050565b600081815260018301602052604081205415156108d6565b60006108d68383611afb565b60006108d68383611bee565b60006116b984846001600160a01b038516611c3d565b815460009082106118bd5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106f5565b8260000182815481106118d2576118d261267e565b9060005260206000200154905092915050565b60006108d68383611cde565b8154600090819083106119515760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106f5565b60008460000184815481106119685761196861267e565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816119be5760405162461bcd60e51b81526004016106f59190612162565b50846119cb600183612694565b815481106119db576119db61267e565b9060005260206000209060020201600101549150509392505050565b611a018383611de5565b611a0e6000848484611a2a565b61082b5760405162461bcd60e51b81526004016106f5906125d7565b60006001600160a01b0384163b611a435750600161142e565b6000611ac4630a85bd0160e11b33888787604051602401611a6794939291906126ab565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612738603291396001600160a01b0388169190611efd565b9050600081806020019051810190611adc91906126e8565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60008181526001830160205260408120548015611be4576000611b1f600183612694565b8554909150600090611b3390600190612694565b90506000866000018281548110611b4c57611b4c61267e565b9060005260206000200154905080876000018481548110611b6f57611b6f61267e565b600091825260209091200155611b868360016124c2565b60008281526001890160205260409020558654879080611ba857611ba8612705565b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108d9565b60009150506108d9565b6000818152600183016020526040812054611c35575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108d9565b5060006108d9565b600082815260018401602052604081205480611ca25750506040805180820182528381526020808201848152865460018181018955600089815284812095516002909302909501918255915190820155865486845281880190925292909120556116bc565b8285611caf600184612694565b81548110611cbf57611cbf61267e565b90600052602060002090600202016001018190555060009150506116bc565b60008181526001830160205260408120548015611be4576000611d02600183612694565b8554909150600090611d1690600190612694565b90506000866000018281548110611d2f57611d2f61267e565b9060005260206000209060020201905080876000018481548110611d5557611d5561267e565b60009182526020909120825460029092020190815560019182015490820155611d7f9084906124c2565b815460009081526001890160205260409020558654879080611da357611da3612705565b60008281526020808220600260001990940193840201828155600190810183905592909355888152898201909252604082209190915594506108d99350505050565b6001600160a01b038216611e3b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f5565b611e44816112c7565b15611e915760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f5565b6001600160a01b0382166000908152600160205260409020611eb3908261183d565b50611ec060028284611849565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606116b9848460008585843b611f565760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106f5565b600080866001600160a01b03168587604051611f72919061271b565b60006040518083038185875af1925050503d8060008114611faf576040519150601f19603f3d011682016040523d82523d6000602084013e611fb4565b606091505b5091509150611fc4828286611fcf565b979650505050505050565b60608315611fde5750816116bc565b825115611fee5782518084602001fd5b8160405162461bcd60e51b81526004016106f59190612162565b828054612014906123eb565b90600052602060002090601f016020900481019282612036576000855561207c565b82601f1061204f57805160ff191683800117855561207c565b8280016001018555821561207c579182015b8281111561207c578251825591602001919060010190612061565b506120889291506120c2565b5090565b508054612098906123eb565b6000825580601f106120a8575050565b601f0160209004906000526020600020908101906109ca91905b5b8082111561208857600081556001016120c3565b6001600160e01b0319811681146109ca57600080fd5b6000602082840312156120ff57600080fd5b81356116bc816120d7565b60005b8381101561212557818101518382015260200161210d565b83811115610ffe5750506000910152565b6000815180845261214e81602086016020860161210a565b601f01601f19169290920160200192915050565b6020815260006108d66020830184612136565b60006020828403121561218757600080fd5b5035919050565b80356001600160a01b03811681146121a557600080fd5b919050565b600080604083850312156121bd57600080fd5b6121c68361218e565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612205576122056121d4565b604051601f8501601f19908116603f0116810190828211818310171561222d5761222d6121d4565b8160405280935085815286868601111561224657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561227257600080fd5b813567ffffffffffffffff81111561228957600080fd5b8201601f8101841361229a57600080fd5b61142e848235602084016121ea565b6000602082840312156122bb57600080fd5b6108d68261218e565b6000806000606084860312156122d957600080fd5b6122e28461218e565b92506122f06020850161218e565b9150604084013590509250925092565b6000806040838503121561231357600080fd5b61231c8361218e565b91506020830135801515811461233157600080fd5b809150509250929050565b6000806000806080858703121561235257600080fd5b61235b8561218e565b93506123696020860161218e565b925060408501359150606085013567ffffffffffffffff81111561238c57600080fd5b8501601f8101871361239d57600080fd5b6123ac878235602084016121ea565b91505092959194509250565b600080604083850312156123cb57600080fd5b6123d48361218e565b91506123e26020840161218e565b90509250929050565b600181811c908216806123ff57607f821691505b6020821081141561242057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124d5576124d56124ac565b500190565b60008160001904831182151516156124f4576124f46124ac565b500290565b600060001982141561250d5761250d6124ac565b5060010190565b6000815161252681856020860161210a565b9290920192915050565b600080845481600182811c91508083168061254c57607f831692505b602080841082141561256c57634e487b7160e01b86526022600452602486fd5b8180156125805760018114612591576125be565b60ff198616895284890196506125be565b60008b81526020902060005b868110156125b65781548b82015290850190830161259d565b505084890196505b5050505050506125ce8185612514565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261264e5761264e612629565b500490565b60008261266257612662612629565b500690565b600081612676576126766124ac565b506000190190565b634e487b7160e01b600052603260045260246000fd5b6000828210156126a6576126a66124ac565b500390565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126de90830184612136565b9695505050505050565b6000602082840312156126fa57600080fd5b81516116bc816120d7565b634e487b7160e01b600052603160045260246000fd5b6000825161272d81846020870161210a565b919091019291505056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122090bf7b950dd35dc214b59420bec483088b45d136072d241fc81ff4077c2c013764736f6c634300080b0033

Deployed Bytecode Sourcemap

56804:2244:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9519:142;;;;;;;;;;-1:-1:-1;9519:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;;9620:33:0;9596:4;9620:33;;;;;;;;;;;;;;9519:142;;;;565:14:1;;558:22;540:41;;528:2;513:18;9519:142:0;;;;;;;;41396:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44083:213::-;;;;;;;;;;-1:-1:-1;44083:213:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;44083:213:0;1550:203:1;43627:390:0;;;;;;;;;;-1:-1:-1;43627:390:0;;;;;:::i;:::-;;:::i;:::-;;57717:125;;;;;;;;;;-1:-1:-1;57717:125:0;;;;;:::i;:::-;;:::i;43121:203::-;;;;;;;;;;;;;:::i;:::-;;;3566:25:1;;;3554:2;3539:18;43121:203:0;3420:177:1;57107:41:0;;;;;;;;;;-1:-1:-1;57107:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;44957:305;;;;;;;;;;-1:-1:-1;44957:305:0;;;;;:::i;:::-;;:::i;42891:154::-;;;;;;;;;;-1:-1:-1;42891:154:0;;;;;:::i;:::-;;:::i;57259:142::-;;;;;;;;;;;;;:::i;45333:151::-;;;;;;;;;;-1:-1:-1;45333:151:0;;;;;:::i;:::-;;:::i;54348:245::-;;;;;;;;;;-1:-1:-1;54348:245:0;;;;;:::i;:::-;;:::i;57066:32::-;;;;;;;;;;-1:-1:-1;57066:32:0;;;;;;;;43401:164;;;;;;;;;;-1:-1:-1;43401:164:0;;;;;:::i;:::-;;:::i;57850:101::-;;;;;;;;;;-1:-1:-1;57850:101:0;;;;;:::i;:::-;;:::i;58026:91::-;;;;;;;;;;;;;:::i;41160:169::-;;;;;;;;;;-1:-1:-1;41160:169:0;;;;;:::i;:::-;;:::i;42718:89::-;;;;;;;;;;;;;:::i;40883:215::-;;;;;;;;;;-1:-1:-1;40883:215:0;;;;;:::i;:::-;;:::i;56250:148::-;;;;;;;;;;;;;:::i;56859:32::-;;;;;;;;;;;;;:::i;55608:79::-;;;;;;;;;;-1:-1:-1;55673:6:0;;-1:-1:-1;;;;;55673:6:0;55608:79;;41557:96;;;;;;;;;;;;;:::i;58158:887::-;;;;;;:::i;:::-;;:::i;44368:295::-;;;;;;;;;;-1:-1:-1;44368:295:0;;;;;:::i;:::-;;:::i;56900:37::-;;;;;;;;;;;;56933:4;56900:37;;45555:285;;;;;;;;;;-1:-1:-1;45555:285:0;;;;;:::i;:::-;;:::i;56946:50::-;;;;;;;;;;;;56983:13;56946:50;;41724:755;;;;;;;;;;-1:-1:-1;41724:755:0;;;;;:::i;:::-;;:::i;57455:190::-;;;;;;;;;;;;;:::i;44734:156::-;;;;;;;;;;-1:-1:-1;44734:156:0;;;;;:::i;:::-;-1:-1:-1;;;;;44847:25:0;;;44823:4;44847:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44734:156;56553:244;;;;;;;;;;-1:-1:-1;56553:244:0;;;;;:::i;:::-;;:::i;41396:92::-;41442:13;41475:5;41468:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41396:92;:::o;44083:213::-;44151:7;44179:16;44187:7;44179;:16::i;:::-;44171:73;;;;-1:-1:-1;;;44171:73:0;;6002:2:1;44171:73:0;;;5984:21:1;6041:2;6021:18;;;6014:30;6080:34;6060:18;;;6053:62;-1:-1:-1;;;6131:18:1;;;6124:42;6183:19;;44171:73:0;;;;;;;;;-1:-1:-1;44264:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44264:24:0;;44083:213::o;43627:390::-;43708:13;43724:16;43732:7;43724;:16::i;:::-;43708:32;;43765:5;-1:-1:-1;;;;;43759:11:0;:2;-1:-1:-1;;;;;43759:11:0;;;43751:57;;;;-1:-1:-1;;;43751:57:0;;6415:2:1;43751:57:0;;;6397:21:1;6454:2;6434:18;;;6427:30;6493:34;6473:18;;;6466:62;-1:-1:-1;;;6544:18:1;;;6537:31;6585:19;;43751:57:0;6213:397:1;43751:57:0;685:10;-1:-1:-1;;;;;43829:21:0;;;;:62;;-1:-1:-1;43854:37:0;43871:5;685:10;44734:156;:::i;43854:37::-;43821:154;;;;-1:-1:-1;;;43821:154:0;;6817:2:1;43821:154:0;;;6799:21:1;6856:2;6836:18;;;6829:30;6895:34;6875:18;;;6868:62;6966:26;6946:18;;;6939:54;7010:19;;43821:154:0;6615:420:1;43821:154:0;43988:21;43997:2;44001:7;43988:8;:21::i;:::-;43697:320;43627:390;;:::o;57717:125::-;55820:6;;-1:-1:-1;;;;;55820:6:0;685:10;55820:22;55812:67;;;;-1:-1:-1;;;55812:67:0;;;;;;;:::i;:::-;57804:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57717:125:::0;:::o;43121:203::-;43174:7;43295:21;:12;:19;:21::i;:::-;43288:28;;43121:203;:::o;44957:305::-;45118:41;685:10;45137:12;45151:7;45118:18;:41::i;:::-;45110:103;;;;-1:-1:-1;;;45110:103:0;;;;;;;:::i;:::-;45226:28;45236:4;45242:2;45246:7;45226:9;:28::i;42891:154::-;-1:-1:-1;;;;;43007:20:0;;42980:7;43007:20;;;:13;:20;;;;;:30;;43031:5;43007:23;:30::i;:::-;43000:37;;42891:154;;;;;:::o;57259:142::-;55820:6;;-1:-1:-1;;;;;55820:6:0;685:10;55820:22;55812:67;;;;-1:-1:-1;;;55812:67:0;;;;;;;:::i;:::-;57356:37:::1;::::0;57324:21:::1;::::0;57364:10:::1;::::0;57356:37;::::1;;;::::0;57324:21;;57309:12:::1;57356:37:::0;57309:12;57356:37;57324:21;57364:10;57356:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;45333:151:::0;45437:39;45454:4;45460:2;45464:7;45437:39;;;;;;;;;;;;:16;:39::i;54348:245::-;54466:41;685:10;54485:12;605:98;54466:41;54458:102;;;;-1:-1:-1;;;54458:102:0;;8021:2:1;54458:102:0;;;8003:21:1;8060:2;8040:18;;;8033:30;8099:34;8079:18;;;8072:62;-1:-1:-1;;;8150:18:1;;;8143:46;8206:19;;54458:102:0;7819:412:1;54458:102:0;54571:14;54577:7;54571:5;:14::i;:::-;54348:245;:::o;43401:164::-;43468:7;;43510:22;:12;43526:5;43510:15;:22::i;:::-;-1:-1:-1;43488:44:0;43401:164;-1:-1:-1;;;43401:164:0:o;57850:101::-;55820:6;;-1:-1:-1;;;;;55820:6:0;685:10;55820:22;55812:67;;;;-1:-1:-1;;;55812:67:0;;;;;;;:::i;:::-;57923:20:::1;57935:7;57923:11;:20::i;58026:91::-:0;55820:6;;-1:-1:-1;;;;;55820:6:0;685:10;55820:22;55812:67;;;;-1:-1:-1;;;55812:67:0;;;;;;;:::i;:::-;58097:12:::1;::::0;;-1:-1:-1;;58081:28:0;::::1;58097:12;::::0;;::::1;58096:13;58081:28;::::0;;58026:91::o;41160:169::-;41224:7;41251:70;41268:7;41251:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;42718:89::-;42758:13;42791:8;42784:15;;;;;:::i;40883:215::-;40947:7;-1:-1:-1;;;;;40975:19:0;;40967:74;;;;-1:-1:-1;;;40967:74:0;;8438:2:1;40967:74:0;;;8420:21:1;8477:2;8457:18;;;8450:30;8516:34;8496:18;;;8489:62;-1:-1:-1;;;8567:18:1;;;8560:40;8617:19;;40967:74:0;8236:406:1;40967:74:0;-1:-1:-1;;;;;41061:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;56250:148::-;55820:6;;-1:-1:-1;;;;;55820:6:0;685:10;55820:22;55812:67;;;;-1:-1:-1;;;55812:67:0;;;;;;;:::i;:::-;56341:6:::1;::::0;56320:40:::1;::::0;56357:1:::1;::::0;-1:-1:-1;;;;;56341:6:0::1;::::0;56320:40:::1;::::0;56357:1;;56320:40:::1;56371:6;:19:::0;;-1:-1:-1;;;;;;56371:19:0::1;::::0;;56250:148::o;56859:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41557:96::-;41605:13;41638:7;41631:14;;;;;:::i;58158:887::-;58230:12;;;;58222:54;;;;-1:-1:-1;;;58222:54:0;;8849:2:1;58222:54:0;;;8831:21:1;8888:2;8868:18;;;8861:30;8927:31;8907:18;;;8900:59;8976:18;;58222:54:0;8647:353:1;58222:54:0;58304:4;58290:13;:11;:13::i;:::-;:18;58287:355;;;58340:10;58333:18;;;;:6;:18;;;;;;58366:2;;58333:29;;58352:10;;58333:29;:::i;:::-;:35;;58325:87;;;;-1:-1:-1;;;58325:87:0;;9472:2:1;58325:87:0;;;9454:21:1;9511:2;9491:18;;;9484:30;9550:34;9530:18;;;9523:62;-1:-1:-1;;;9601:18:1;;;9594:37;9648:19;;58325:87:0;9270:403:1;58325:87:0;58449:23;56983:13;58449:10;:23;:::i;:::-;58435:9;:38;58427:71;;;;-1:-1:-1;;;58427:71:0;;10053:2:1;58427:71:0;;;10035:21:1;10092:2;10072:18;;;10065:30;-1:-1:-1;;;10111:18:1;;;10104:51;10172:18;;58427:71:0;9851:345:1;58427:71:0;58287:355;;;58555:10;58548:18;;;;:6;:18;;;;;;58581:1;;58548:29;;58567:10;;58548:29;:::i;:::-;:34;;58540:90;;;;-1:-1:-1;;;58540:90:0;;10403:2:1;58540:90:0;;;10385:21:1;10442:2;10422:18;;;10415:30;10481:34;10461:18;;;10454:62;-1:-1:-1;;;10532:18:1;;;10525:41;10583:19;;58540:90:0;10201:407:1;58540:90:0;56933:4;58674:10;58660:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;58652:70;;;;-1:-1:-1;;;58652:70:0;;10815:2:1;58652:70:0;;;10797:21:1;10854:2;10834:18;;;10827:30;10893:25;10873:18;;;10866:53;10936:18;;58652:70:0;10613:347:1;58652:70:0;58733:32;;-1:-1:-1;;;;;58733:12:0;:21;;58755:9;58733:32;;;;;;;;;58755:9;58733:21;:32;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58793:10:0;58786:18;;;;:6;:18;;;;;:30;;58806:10;;58786:18;:30;;58806:10;;58786:30;:::i;:::-;;;;-1:-1:-1;58831:9:0;;-1:-1:-1;58827:211:0;58846:10;58844:1;:12;58827:211;;;58887:14;58904:13;:11;:13::i;:::-;58887:30;;56933:4;58936:13;:11;:13::i;:::-;:22;58932:95;;;58979:32;58989:10;59001:9;58979;:32::i;:::-;-1:-1:-1;58858:3:0;;;;:::i;:::-;;;;58827:211;;44368:295;-1:-1:-1;;;;;44471:24:0;;685:10;44471:24;;44463:62;;;;-1:-1:-1;;;44463:62:0;;11307:2:1;44463:62:0;;;11289:21:1;11346:2;11326:18;;;11319:30;11385:27;11365:18;;;11358:55;11430:18;;44463:62:0;11105:349:1;44463:62:0;685:10;44538:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44538:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44538:53:0;;;;;;;;;;44607:48;;540:41:1;;;44538:42:0;;685:10;44607:48;;513:18:1;44607:48:0;;;;;;;44368:295;;:::o;45555:285::-;45687:41;685:10;45720:7;45687:18;:41::i;:::-;45679:103;;;;-1:-1:-1;;;45679:103:0;;;;;;;:::i;:::-;45793:39;45807:4;45813:2;45817:7;45826:5;45793:13;:39::i;:::-;45555:285;;;;:::o;41724:755::-;41789:13;41823:16;41831:7;41823;:16::i;:::-;41815:76;;;;-1:-1:-1;;;41815:76:0;;11661:2:1;41815:76:0;;;11643:21:1;11700:2;11680:18;;;11673:30;11739:34;11719:18;;;11712:62;-1:-1:-1;;;11790:18:1;;;11783:45;11845:19;;41815:76:0;11459:411:1;41815:76:0;41904:23;41930:19;;;:10;:19;;;;;41904:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42031:8;42025:22;;;;;:::i;:::-;:27;42021:76;;-1:-1:-1;42021:76:0;;42076:9;41724:755;-1:-1:-1;;41724:755:0:o;42021:76::-;42201:23;;:27;42197:112;;42276:8;42286:9;42259:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42245:52;;;41724:755;;;:::o;42197:112::-;42441:8;42451:18;:7;:16;:18::i;:::-;42424:46;;;;;;;;;:::i;57455:190::-;55820:6;;-1:-1:-1;;;;;55820:6:0;685:10;55820:22;55812:67;;;;-1:-1:-1;;;55812:67:0;;;;;;;:::i;:::-;57510:11:::1;57524:13;:11;:13::i;:::-;57510:27;;57553:6;57548:90;57569:2;57565:1;:6;57548:90;;;57593:33;57603:10;57615;57624:1:::0;57615:6;:10:::1;:::i;:::-;57593:9;:33::i;:::-;57573:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57548:90;;56553:244:::0;55820:6;;-1:-1:-1;;;;;55820:6:0;685:10;55820:22;55812:67;;;;-1:-1:-1;;;55812:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56642:22:0;::::1;56634:73;;;::::0;-1:-1:-1;;;56634:73:0;;13572:2:1;56634:73:0::1;::::0;::::1;13554:21:1::0;13611:2;13591:18;;;13584:30;13650:34;13630:18;;;13623:62;-1:-1:-1;;;13701:18:1;;;13694:36;13747:19;;56634:73:0::1;13370:402:1::0;56634:73:0::1;56744:6;::::0;56723:38:::1;::::0;-1:-1:-1;;;;;56723:38:0;;::::1;::::0;56744:6:::1;::::0;56723:38:::1;::::0;56744:6:::1;::::0;56723:38:::1;56772:6;:17:::0;;-1:-1:-1;;;;;;56772:17:0::1;-1:-1:-1::0;;;;;56772:17:0;;;::::1;::::0;;;::::1;::::0;;56553:244::o;47307:119::-;47364:4;47388:30;:12;47410:7;47388:21;:30::i;53134:158::-;53200:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;53200:29:0;-1:-1:-1;;;;;53200:29:0;;;;;;;;:24;;53254:16;53200:24;53254:7;:16::i;:::-;-1:-1:-1;;;;;53245:39:0;;;;;;;;;;;53134:158;;:::o;35004:123::-;35073:7;35100:19;35108:3;32461:19;;32378:110;47593:333;47678:4;47703:16;47711:7;47703;:16::i;:::-;47695:73;;;;-1:-1:-1;;;47695:73:0;;13979:2:1;47695:73:0;;;13961:21:1;14018:2;13998:18;;;13991:30;14057:34;14037:18;;;14030:62;-1:-1:-1;;;14108:18:1;;;14101:42;14160:19;;47695:73:0;13777:408:1;47695:73:0;47779:13;47795:16;47803:7;47795;:16::i;:::-;47779:32;;47841:5;-1:-1:-1;;;;;47830:16:0;:7;-1:-1:-1;;;;;47830:16:0;;:51;;;;47874:7;-1:-1:-1;;;;;47850:31:0;:20;47862:7;47850:11;:20::i;:::-;-1:-1:-1;;;;;47850:31:0;;47830:51;:87;;;-1:-1:-1;;;;;;44847:25:0;;;44823:4;44847:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47885:32;47822:96;47593:333;-1:-1:-1;;;;47593:333:0:o;50682:574::-;50800:4;-1:-1:-1;;;;;50780:24:0;:16;50788:7;50780;:16::i;:::-;-1:-1:-1;;;;;50780:24:0;;50772:78;;;;-1:-1:-1;;;50772:78:0;;14392:2:1;50772:78:0;;;14374:21:1;14431:2;14411:18;;;14404:30;14470:34;14450:18;;;14443:62;-1:-1:-1;;;14521:18:1;;;14514:39;14570:19;;50772:78:0;14190:405:1;50772:78:0;-1:-1:-1;;;;;50869:16:0;;50861:65;;;;-1:-1:-1;;;50861:65:0;;14802:2:1;50861:65:0;;;14784:21:1;14841:2;14821:18;;;14814:30;14880:34;14860:18;;;14853:62;-1:-1:-1;;;14931:18:1;;;14924:34;14975:19;;50861:65:0;14600:400:1;50861:65:0;51043:29;51060:1;51064:7;51043:8;:29::i;:::-;-1:-1:-1;;;;;51085:19:0;;;;;;:13;:19;;;;;:35;;51112:7;51085:26;:35::i;:::-;-1:-1:-1;;;;;;51131:17:0;;;;;;:13;:17;;;;;:30;;51153:7;51131:21;:30::i;:::-;-1:-1:-1;51174:29:0;:12;51191:7;51200:2;51174:16;:29::i;:::-;;51240:7;51236:2;-1:-1:-1;;;;;51221:27:0;51230:4;-1:-1:-1;;;;;51221:27:0;;;;;;;;;;;50682:574;;;:::o;27689:137::-;27760:7;27795:22;27799:3;27811:5;27795:3;:22::i;49825:520::-;49885:13;49901:16;49909:7;49901;:16::i;:::-;49885:32;;50019:29;50036:1;50040:7;50019:8;:29::i;:::-;50107:19;;;;:10;:19;;;;;50101:33;;;;;:::i;:::-;:38;;-1:-1:-1;50097:97:0;;50163:19;;;;:10;:19;;;;;50156:26;;;:::i;:::-;-1:-1:-1;;;;;50206:20:0;;;;;;:13;:20;;;;;:36;;50234:7;50206:27;:36::i;:::-;-1:-1:-1;50255:28:0;:12;50275:7;50255:19;:28::i;:::-;-1:-1:-1;50301:36:0;;50329:7;;50325:1;;-1:-1:-1;;;;;50301:36:0;;;;;50325:1;;50301:36;49874:471;49825:520;:::o;35466:236::-;35546:7;;;;35606:22;35610:3;35622:5;35606:3;:22::i;:::-;35575:53;;;;-1:-1:-1;35466:236:0;-1:-1:-1;;;;;35466:236:0:o;51857:100::-;51930:19;;;;:8;;:19;;;;;:::i;36146:213::-;36253:7;36304:44;36309:3;36329;36335:12;36304:4;:44::i;:::-;36296:53;-1:-1:-1;36146:213:0;;;;;;:::o;48269:110::-;48345:26;48355:2;48359:7;48345:26;;;;;;;;;;;;:9;:26::i;46722:272::-;46836:28;46846:4;46852:2;46856:7;46836:9;:28::i;:::-;46883:48;46906:4;46912:2;46916:7;46925:5;46883:22;:48::i;:::-;46875:111;;;;-1:-1:-1;;;46875:111:0;;;;;;;:::i;36517:751::-;36573:13;36794:10;36790:53;;-1:-1:-1;;36821:10:0;;;;;;;;;;;;-1:-1:-1;;;36821:10:0;;;;;36517:751::o;36790:53::-;36868:5;36853:12;36909:78;36916:9;;36909:78;;36942:8;;;;:::i;:::-;;-1:-1:-1;36965:10:0;;-1:-1:-1;36973:2:0;36965:10;;:::i;:::-;;;36909:78;;;36997:19;37029:6;37019:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37019:17:0;-1:-1:-1;37087:5:0;;-1:-1:-1;36997:39:0;-1:-1:-1;37063:6:0;37103:126;37110:9;;37103:126;;37180:9;37187:2;37180:4;:9;:::i;:::-;37167:23;;:2;:23;:::i;:::-;37154:38;;37136:6;37143:7;;;:::i;:::-;;;;37136:15;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;37136:56:0;;;;;;;;-1:-1:-1;37207:10:0;37215:2;37207:10;;:::i;:::-;;;37103:126;;;-1:-1:-1;37253:6:0;36517:751;-1:-1:-1;;;;36517:751:0:o;34765:151::-;34849:4;32253:17;;;:12;;;:17;;;;;;:22;;34873:35;32158:125;26776:137;26846:4;26870:35;26878:3;26898:5;26870:7;:35::i;26469:131::-;26536:4;26560:32;26565:3;26585:5;26560:4;:32::i;34188:185::-;34277:4;34301:64;34306:3;34326;-1:-1:-1;;;;;34340:23:0;;34301:4;:64::i;22727:204::-;22822:18;;22794:7;;22822:26;-1:-1:-1;22814:73:0;;;;-1:-1:-1;;;22814:73:0;;16273:2:1;22814:73:0;;;16255:21:1;16312:2;16292:18;;;16285:30;16351:34;16331:18;;;16324:62;-1:-1:-1;;;16402:18:1;;;16395:32;16444:19;;22814:73:0;16071:398:1;22814:73:0;22905:3;:11;;22917:5;22905:18;;;;;;;;:::i;:::-;;;;;;;;;22898:25;;22727:204;;;;:::o;34539:142::-;34616:4;34640:33;34648:3;34668;34640:7;:33::i;32843:279::-;32947:19;;32910:7;;;;32947:27;-1:-1:-1;32939:74:0;;;;-1:-1:-1;;;32939:74:0;;16676:2:1;32939:74:0;;;16658:21:1;16715:2;16695:18;;;16688:30;16754:34;16734:18;;;16727:62;-1:-1:-1;;;16805:18:1;;;16798:32;16847:19;;32939:74:0;16474:398:1;32939:74:0;33026:22;33051:3;:12;;33064:5;33051:19;;;;;;;;:::i;:::-;;;;;;;;;;;33026:44;;33089:5;:10;;;33101:5;:12;;;33081:33;;;;;32843:279;;;;;:::o;33545:319::-;33639:7;33678:17;;;:12;;;:17;;;;;;33729:12;33714:13;33706:36;;;;-1:-1:-1;;;33706:36:0;;;;;;;;:::i;:::-;-1:-1:-1;33796:3:0;33809:12;33820:1;33809:8;:12;:::i;:::-;33796:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;33789:40;;;33545:319;;;;;:::o;48606:250::-;48702:18;48708:2;48712:7;48702:5;:18::i;:::-;48739:54;48770:1;48774:2;48778:7;48787:5;48739:22;:54::i;:::-;48731:117;;;;-1:-1:-1;;;48731:117:0;;;;;;;:::i;52522:604::-;52643:4;-1:-1:-1;;;;;52670:13:0;;11324:20;52665:60;;-1:-1:-1;52709:4:0;52702:11;;52665:60;52735:23;52761:252;-1:-1:-1;;;685:10:0;52901:4;52920:7;52942:5;52777:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;52777:181:0;;;;;;;-1:-1:-1;;;;;52777:181:0;;;;;;;;;;;52761:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52761:15:0;;;:252;:15;:252::i;:::-;52735:278;;53024:13;53051:10;53040:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;53091:26:0;-1:-1:-1;;;53091:26:0;;-1:-1:-1;;;52522:604:0;;;;;;:::o;20429:1544::-;20495:4;20634:19;;;:12;;;:19;;;;;;20670:15;;20666:1300;;21032:21;21056:14;21069:1;21056:10;:14;:::i;:::-;21105:18;;21032:38;;-1:-1:-1;21085:17:0;;21105:22;;21126:1;;21105:22;:::i;:::-;21085:42;;21372:17;21392:3;:11;;21404:9;21392:22;;;;;;;;:::i;:::-;;;;;;;;;21372:42;;21538:9;21509:3;:11;;21521:13;21509:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;21641:17;:13;21657:1;21641:17;:::i;:::-;21615:23;;;;:12;;;:23;;;;;:43;21767:17;;21615:3;;21767:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21862:3;:12;;:19;21875:5;21862:19;;;;;;;;;;;21855:26;;;21905:4;21898:11;;;;;;;;20666:1300;21949:5;21942:12;;;;;19839:414;19902:4;32253:17;;;:12;;;:17;;;;;;19919:327;;-1:-1:-1;19962:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;20145:18;;20123:19;;;:12;;;:19;;;;;;:40;;;;20178:11;;19919:327;-1:-1:-1;20229:5:0;20222:12;;29658:692;29734:4;29869:17;;;:12;;;:17;;;;;;29903:13;29899:444;;-1:-1:-1;;29988:38:0;;;;;;;;;;;;;;;;;;29970:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;30185:19;;30165:17;;;:12;;;:17;;;;;;;:39;30219:11;;29899:444;30299:5;30263:3;30276:12;30287:1;30276:8;:12;:::i;:::-;30263:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;:41;;;;30326:5;30319:12;;;;;30525:1549;30589:4;30724:17;;;:12;;;:17;;;;;;30758:13;;30754:1313;;31119:21;31143:12;31154:1;31143:8;:12;:::i;:::-;31190:19;;31119:36;;-1:-1:-1;31170:17:0;;31190:23;;31212:1;;31190:23;:::i;:::-;31170:43;;31458:26;31487:3;:12;;31500:9;31487:23;;;;;;;;:::i;:::-;;;;;;;;;;;31458:52;;31635:9;31605:3;:12;;31618:13;31605:27;;;;;;;;:::i;:::-;;;;;;;;;:39;;:27;;;;;:39;;;;;;;;;;;;31743:17;;:13;;:17;:::i;:::-;31725:14;;31712:28;;;;:12;;;:28;;;;;:48;31869:18;;31712:3;;31869:18;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;31869:18:0;;;;;;;;;;;;;;;;;;;;;31965:17;;;:12;;;:17;;;;;;31958:24;;;;31869:18;-1:-1:-1;31999:11:0;;-1:-1:-1;;;;31999:11:0;49192:404;-1:-1:-1;;;;;49272:16:0;;49264:61;;;;-1:-1:-1;;;49264:61:0;;18100:2:1;49264:61:0;;;18082:21:1;;;18119:18;;;18112:30;18178:34;18158:18;;;18151:62;18230:18;;49264:61:0;17898:356:1;49264:61:0;49345:16;49353:7;49345;:16::i;:::-;49344:17;49336:58;;;;-1:-1:-1;;;49336:58:0;;18461:2:1;49336:58:0;;;18443:21:1;18500:2;18480:18;;;18473:30;18539;18519:18;;;18512:58;18587:18;;49336:58:0;18259:352:1;49336:58:0;-1:-1:-1;;;;;49465:17:0;;;;;;:13;:17;;;;;:30;;49487:7;49465:21;:30::i;:::-;-1:-1:-1;49508:29:0;:12;49525:7;49534:2;49508:16;:29::i;:::-;-1:-1:-1;49555:33:0;;49580:7;;-1:-1:-1;;;;;49555:33:0;;;49572:1;;49555:33;;49572:1;;49555:33;49192:404;;:::o;13875:195::-;13978:12;14010:52;14032:6;14040:4;14046:1;14049:12;13978;11324:20;;15171:60;;;;-1:-1:-1;;;15171:60:0;;19225:2:1;15171:60:0;;;19207:21:1;19264:2;19244:18;;;19237:30;19303:31;19283:18;;;19276:59;19352:18;;15171:60:0;19023:353:1;15171:60:0;15305:12;15319:23;15346:6;-1:-1:-1;;;;;15346:11:0;15366:5;15374:4;15346:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15304:75;;;;15397:52;15415:7;15424:10;15436:12;15397:17;:52::i;:::-;15390:59;14927:530;-1:-1:-1;;;;;;;14927:530:0:o;17467:742::-;17582:12;17611:7;17607:595;;;-1:-1:-1;17642:10:0;17635:17;;17607:595;17756:17;;:21;17752:439;;18019:10;18013:17;18080:15;18067:10;18063:2;18059:19;18052:44;17752:439;18162:12;18155:20;;-1:-1:-1;;;18155:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2195:127::-;2256:10;2251:3;2247:20;2244:1;2237:31;2287:4;2284:1;2277:15;2311:4;2308:1;2301:15;2327:632;2392:5;2422:18;2463:2;2455:6;2452:14;2449:40;;;2469:18;;:::i;:::-;2544:2;2538:9;2512:2;2598:15;;-1:-1:-1;;2594:24:1;;;2620:2;2590:33;2586:42;2574:55;;;2644:18;;;2664:22;;;2641:46;2638:72;;;2690:18;;:::i;:::-;2730:10;2726:2;2719:22;2759:6;2750:15;;2789:6;2781;2774:22;2829:3;2820:6;2815:3;2811:16;2808:25;2805:45;;;2846:1;2843;2836:12;2805:45;2896:6;2891:3;2884:4;2876:6;2872:17;2859:44;2951:1;2944:4;2935:6;2927;2923:19;2919:30;2912:41;;;;2327:632;;;;;:::o;2964:451::-;3033:6;3086:2;3074:9;3065:7;3061:23;3057:32;3054:52;;;3102:1;3099;3092:12;3054:52;3142:9;3129:23;3175:18;3167:6;3164:30;3161:50;;;3207:1;3204;3197:12;3161:50;3230:22;;3283:4;3275:13;;3271:27;-1:-1:-1;3261:55:1;;3312:1;3309;3302:12;3261:55;3335:74;3401:7;3396:2;3383:16;3378:2;3374;3370:11;3335:74;:::i;3602:186::-;3661:6;3714:2;3702:9;3693:7;3689:23;3685:32;3682:52;;;3730:1;3727;3720:12;3682:52;3753:29;3772:9;3753:29;:::i;3793:328::-;3870:6;3878;3886;3939:2;3927:9;3918:7;3914:23;3910:32;3907:52;;;3955:1;3952;3945:12;3907:52;3978:29;3997:9;3978:29;:::i;:::-;3968:39;;4026:38;4060:2;4049:9;4045:18;4026:38;:::i;:::-;4016:48;;4111:2;4100:9;4096:18;4083:32;4073:42;;3793:328;;;;;:::o;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:380::-;5494:1;5490:12;;;;5537;;;5558:61;;5612:4;5604:6;5600:17;5590:27;;5558:61;5665:2;5657:6;5654:14;5634:18;5631:38;5628:161;;;5711:10;5706:3;5702:20;5699:1;5692:31;5746:4;5743:1;5736:15;5774:4;5771:1;5764:15;5628:161;;5415:380;;;:::o;7040:356::-;7242:2;7224:21;;;7261:18;;;7254:30;7320:34;7315:2;7300:18;;7293:62;7387:2;7372:18;;7040:356::o;7401:413::-;7603:2;7585:21;;;7642:2;7622:18;;;7615:30;7681:34;7676:2;7661:18;;7654:62;-1:-1:-1;;;7747:2:1;7732:18;;7725:47;7804:3;7789:19;;7401:413::o;9005:127::-;9066:10;9061:3;9057:20;9054:1;9047:31;9097:4;9094:1;9087:15;9121:4;9118:1;9111:15;9137:128;9177:3;9208:1;9204:6;9201:1;9198:13;9195:39;;;9214:18;;:::i;:::-;-1:-1:-1;9250:9:1;;9137:128::o;9678:168::-;9718:7;9784:1;9780;9776:6;9772:14;9769:1;9766:21;9761:1;9754:9;9747:17;9743:45;9740:71;;;9791:18;;:::i;:::-;-1:-1:-1;9831:9:1;;9678:168::o;10965:135::-;11004:3;-1:-1:-1;;11025:17:1;;11022:43;;;11045:18;;:::i;:::-;-1:-1:-1;11092:1:1;11081:13;;10965:135::o;12001:185::-;12043:3;12081:5;12075:12;12096:52;12141:6;12136:3;12129:4;12122:5;12118:16;12096:52;:::i;:::-;12164:16;;;;;12001:185;-1:-1:-1;;12001:185:1:o;12191:1174::-;12367:3;12396:1;12429:6;12423:13;12459:3;12481:1;12509:9;12505:2;12501:18;12491:28;;12569:2;12558:9;12554:18;12591;12581:61;;12635:4;12627:6;12623:17;12613:27;;12581:61;12661:2;12709;12701:6;12698:14;12678:18;12675:38;12672:165;;;-1:-1:-1;;;12736:33:1;;12792:4;12789:1;12782:15;12822:4;12743:3;12810:17;12672:165;12853:18;12880:104;;;;12998:1;12993:320;;;;12846:467;;12880:104;-1:-1:-1;;12913:24:1;;12901:37;;12958:16;;;;-1:-1:-1;12880:104:1;;12993:320;11948:1;11941:14;;;11985:4;11972:18;;13088:1;13102:165;13116:6;13113:1;13110:13;13102:165;;;13194:14;;13181:11;;;13174:35;13237:16;;;;13131:10;;13102:165;;;13106:3;;13296:6;13291:3;13287:16;13280:23;;12846:467;;;;;;;13329:30;13355:3;13347:6;13329:30;:::i;:::-;13322:37;12191:1174;-1:-1:-1;;;;;12191:1174:1:o;15005:414::-;15207:2;15189:21;;;15246:2;15226:18;;;15219:30;15285:34;15280:2;15265:18;;15258:62;-1:-1:-1;;;15351:2:1;15336:18;;15329:48;15409:3;15394:19;;15005:414::o;15424:127::-;15485:10;15480:3;15476:20;15473:1;15466:31;15516:4;15513:1;15506:15;15540:4;15537:1;15530:15;15556:120;15596:1;15622;15612:35;;15627:18;;:::i;:::-;-1:-1:-1;15661:9:1;;15556:120::o;15681:112::-;15713:1;15739;15729:35;;15744:18;;:::i;:::-;-1:-1:-1;15778:9:1;;15681:112::o;15798:136::-;15837:3;15865:5;15855:39;;15874:18;;:::i;:::-;-1:-1:-1;;;15910:18:1;;15798:136::o;15939:127::-;16000:10;15995:3;15991:20;15988:1;15981:31;16031:4;16028:1;16021:15;16055:4;16052:1;16045:15;16877:125;16917:4;16945:1;16942;16939:8;16936:34;;;16950:18;;:::i;:::-;-1:-1:-1;16987:9:1;;16877:125::o;17007:500::-;-1:-1:-1;;;;;17276:15:1;;;17258:34;;17328:15;;17323:2;17308:18;;17301:43;17375:2;17360:18;;17353:34;;;17423:3;17418:2;17403:18;;17396:31;;;17201:4;;17444:57;;17481:19;;17473:6;17444:57;:::i;:::-;17436:65;17007:500;-1:-1:-1;;;;;;17007:500:1:o;17512:249::-;17581:6;17634:2;17622:9;17613:7;17609:23;17605:32;17602:52;;;17650:1;17647;17640:12;17602:52;17682:9;17676:16;17701:30;17725:5;17701:30;:::i;17766:127::-;17827:10;17822:3;17818:20;17815:1;17808:31;17858:4;17855:1;17848:15;17882:4;17879:1;17872:15;19381:274;19510:3;19548:6;19542:13;19564:53;19610:6;19605:3;19598:4;19590:6;19586:17;19564:53;:::i;:::-;19633:16;;;;;19381:274;-1:-1:-1;;19381:274:1:o

Swarm Source

ipfs://90bf7b950dd35dc214b59420bec483088b45d136072d241fc81ff4077c2c0137
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.