ETH Price: $3,245.87 (-0.43%)
Gas: 2 Gwei

Token

CORE DEPLOYER (CD)
 

Overview

Max Total Supply

845 CD

Holders

45

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CD
0x5cd1c9be0bbe4294d70a87a826323958caf94e4a
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:
NonFungibleToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-13
*/

// Sources flattened with hardhat v2.9.2 https://hardhat.org

// File contracts/dependencies/Context.sol

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

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


// File contracts/dependencies/EnumerableSet.sol

/**
 * @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.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

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

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

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

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

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

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

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

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

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

        assembly {
            result := store
        }

        return result;
    }
}


// File contracts/dependencies/Address.sol

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/dependencies/AccessControl.sol

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


// File contracts/dependencies/IERC165.sol

/**
 * @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);
    /*
     function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
    */
}


// File contracts/dependencies/ERC165.sol

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


// File contracts/dependencies/IERC721.sol

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;
    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

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

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

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

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


// File contracts/dependencies/IERC721Metadata.sol

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

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

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


// File contracts/dependencies/IERC721Receiver.sol

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


// File contracts/dependencies/Strings.sol

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

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

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

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

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


// File contracts/dependencies/ERC721A.sol

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Base URI
    string private _baseURI;

        /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
    /**
     * @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 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 _getbaseURI() internal view returns (string memory) {
        return _baseURI;
    }
    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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


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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    function _safeMint(address to, uint256 quantity, string[] memory _colors) internal {
        _safeMint(to, quantity, '', _colors);
    }

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {
        require(!paused(), "ERC721Pausable: token transfer while paused");
        require(tag[startTokenId] != round, "token already redeemed");

    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(!paused(), "ERC721Pausable: token transfer while paused");
        require(tag[tokenId] != round, "token already redeemed");
    }

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



// File contracts/NonFungibleToken.sol

// SPDX-License-Identifier: MIT


pragma solidity 0.8.4;


/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *  - token ID and URI autogeneration
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract NonFungibleToken is Context, AccessControl, ERC721A {

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    address public owner;
    bool public whitelistingEnabled = false;
    bool public mintingEnabled = true;
    uint256 public maxPerWallet = 100;
    bool public freezeMetadata = false;

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * Token URIs will be autogenerated based on `baseURI` and their token IDs.
     * See {ERC721-tokenURI}.
     */
    constructor(string memory name, string memory symbol, string memory baseURI) public ERC721A(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
       _setupRole(PAUSER_ROLE, _msgSender());

        _setBaseURI(baseURI);

        owner = msg.sender;
    }

    function setFreezeMetadata() public virtual {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NonFungibleToken: must have minter role to mint");
        require(! freezeMetadata, "NonFungibleToken: already frozen !");

        freezeMetadata = true;

    }

    function setURI(string memory baseURI) public virtual {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NonFungibleToken: must have admin role");
        require(! freezeMetadata, "Metadata frozen !");
        _setBaseURI(baseURI);

    }

    function setMaxPerWallet(uint256 _maxPerWallet) public virtual {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NonFungibleToken: must have minter role to mint");
        maxPerWallet = _maxPerWallet;

    }


    function setOwner(address _owner) public virtual {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NonFungibleToken: must have admin role to mint");
        owner = _owner;

    }

    function toggleMinting(bool _bool) public virtual {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NonFungibleToken: must have admin role to mint");
        mintingEnabled = _bool;

    }

    function toggleWhitelisting(bool _toggle) public virtual {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NonFungibleToken: must have admin role");
        whitelistingEnabled = _toggle;

    }

      /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function pause() public  whenNotPaused {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NonFungibleToken: must have admin role");
        _pause();
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function unpause() public whenPaused {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NonFungibleToken: must have admin role");
        _unpause();
    }



    function Whitelist(address[] memory _beneficiaries) external {
      require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NonFungibleToken: must have admin role");
      for (uint256 i = 0; i < _beneficiaries.length; i++) {

        whitelists[_beneficiaries[i]] = true;
      }
    }

    function bulkMint(address[] memory _beneficiaries, string[] memory _colors) external {
      require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NonFungibleToken: must have admin role");
      for (uint256 i = 0; i < _beneficiaries.length; i++) {
          string[] memory color = new string[](1);

          color[0] = _colors[i];
          _safeMint(_beneficiaries[i], 1, color);
      }
    }

    function setRound(uint _round) external {
      require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NonFungibleToken: must have admin role");
      round = _round;
    }

    function tagNft(uint nftId) external {
      require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "NonFungibleToken: must have admin role");
      tag[nftId] = round;
    }


    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked(_getbaseURI(), "contract-metadata.json"));
    }



    /**
     * @dev Creates a new token for `to`. Its token ID will be automatically
     * assigned (and available on the emitted {IERC721-Transfer} event), and the token
     * URI autogenerated based on the base URI passed at construction.
     *
     * See {ERC721-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */

    function mint(address to, uint256 quantity, string[] memory _colors) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "NonFungibleToken: must have minter role to mint");
        require(whitelists[to] || ! whitelistingEnabled, "User not whitelisted !");

        require(mintingEnabled, "Minting not enabled !");
        // We cannot just use balanceOf to create the new tokenId because tokens
        // can be burned (destroyed), so we need a separate counter.
        _safeMint(to, quantity, _colors);
        require(balanceOf(to) <= maxPerWallet, "Max NFTs reached by wallet");
    }
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721A) {
        //super._beforeTokenTransfer(from, to, tokenId);
        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_beneficiaries","type":"address[]"}],"name":"Whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_beneficiaries","type":"address[]"},{"internalType":"string[]","name":"_colors","type":"string[]"}],"name":"bulkMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"colors","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"string[]","name":"_colors","type":"string[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"round","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setFreezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_round","type":"uint256"}],"name":"setRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setURI","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":"","type":"uint256"}],"name":"tag","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"}],"name":"tagNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_toggle","type":"bool"}],"name":"toggleWhitelisting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526001600355600f805461ffff60a01b1916600160a81b17905560646010556011805460ff191690553480156200003957600080fd5b5060405162002d9a38038062002d9a8339810160408190526200005c916200037f565b8251839083906200007590600790602085019062000226565b5080516200008b90600890602084019062000226565b5060016005555050600a805460ff19169055620000aa60003362000128565b620000d67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63362000128565b620001027f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3362000128565b6200010d8162000138565b5050600f80546001600160a01b03191633179055506200045f565b6200013482826200014d565b5050565b80516200013490600990602084019062000226565b600082815260208181526040909120620001729183906200133a620001b4821b17901c565b15620001345760405133906001600160a01b0383169084907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d90600090a45050565b6000620001cb836001600160a01b038416620001d4565b90505b92915050565b60008181526001830160205260408120546200021d57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001ce565b506000620001ce565b82805462000234906200040c565b90600052602060002090601f016020900481019282620002585760008555620002a3565b82601f106200027357805160ff1916838001178555620002a3565b82800160010185558215620002a3579182015b82811115620002a357825182559160200191906001019062000286565b50620002b1929150620002b5565b5090565b5b80821115620002b15760008155600101620002b6565b600082601f830112620002dd578081fd5b81516001600160401b0380821115620002fa57620002fa62000449565b604051601f8301601f19908116603f0116810190828211818310171562000325576200032562000449565b8160405283815260209250868385880101111562000341578485fd5b8491505b8382101562000364578582018301518183018401529082019062000345565b838211156200037557848385830101525b9695505050505050565b60008060006060848603121562000394578283fd5b83516001600160401b0380821115620003ab578485fd5b620003b987838801620002cc565b94506020860151915080821115620003cf578384fd5b620003dd87838801620002cc565b93506040860151915080821115620003f3578283fd5b506200040286828701620002cc565b9150509250925092565b600181811c908216806200042157607f821691505b602082108114156200044357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61292b806200046f6000396000f3fe608060405234801561001057600080fd5b50600436106102a05760003560e01c806370a0823111610167578063bd11f69d116100ce578063d547741f11610087578063d547741f146105e9578063d5d1416a146105fc578063e268e4d31461060f578063e63ab1e914610622578063e8a3d48514610649578063e985e9c51461065157600080fd5b8063bd11f69d1461055c578063c87b56dd1461056f578063ca15c87314610582578063cf6459ff14610595578063d111515d146105b5578063d5391393146105c257600080fd5b80639b624e7b116101205780639b624e7b146104f45780639fd6db1214610507578063a217fddf1461051b578063a22cb46514610523578063b53200a614610536578063b88d4fde1461054957600080fd5b806370a08231146104985780638456cb59146104ab5780638da5cb5b146104b35780639010d07c146104c657806391d14854146104d957806395d89b41146104ec57600080fd5b806323b872dd1161020b578063453c2310116101c4578063453c231014610442578063539d5c871461044b5780635b0c29eb146104535780635c975abb146104675780636082adf8146104725780636352211e1461048557600080fd5b806323b872dd146103cb578063248a9ca3146103de5780632f2ff15d1461040157806336568abe146104145780633f4ba83a1461042757806342842e0e1461042f57600080fd5b8063146ca5311161025d578063146ca53114610348578063170a3ef01461035f57806318160ddd146103725780631e7be2101461038257806321775c92146103a557806322df11d8146103b857600080fd5b806301ffc9a7146102a557806302fe5305146102cd57806306fdde03146102e2578063081812fc146102f7578063095ea7b31461032257806313af403514610335575b600080fd5b6102b86102b336600461252f565b61068d565b60405190151581526020015b60405180910390f35b6102e06102db366004612567565b6106df565b005b6102ea610762565b6040516102c4919061267b565b61030a6103053660046124d4565b6107f4565b6040516001600160a01b0390911681526020016102c4565b6102e06103303660046123ab565b610838565b6102e0610343366004612283565b6108c6565b61035160035481565b6040519081526020016102c4565b6102e061036d36600461245a565b61090f565b6006546005540360001901610351565b6102b8610390366004612283565b60016020526000908152604090205460ff1681565b6102e06103b33660046124ba565b610a0a565b6102e06103c63660046123d4565b610a4f565b6102e06103d93660046122cf565b610bc1565b6103516103ec3660046124d4565b60009081526020819052604090206002015490565b6102e061040f3660046124ec565b610bcc565b6102e06104223660046124ec565b610c5a565b6102e0610cd4565b6102e061043d3660046122cf565b610d4e565b61035160105481565b6102e0610d69565b600f546102b890600160a01b900460ff1681565b600a5460ff166102b8565b6102e06104803660046124ba565b610dfd565b61030a6104933660046124d4565b610e42565b6103516104a6366004612283565b610e54565b6102e0610ea2565b600f5461030a906001600160a01b031681565b61030a6104d436600461250e565b610f17565b6102b86104e73660046124ec565b610f36565b6102ea610f4e565b6102e06105023660046124d4565b610f5d565b600f546102b890600160a81b900460ff1681565b610351600081565b6102e0610531366004612382565b610f89565b6102e0610544366004612428565b61101f565b6102e061055736600461230a565b6110bb565b6102ea61056a3660046124d4565b61110c565b6102ea61057d3660046124d4565b6111a6565b6103516105903660046124d4565b61120c565b6103516105a33660046124d4565b60046020526000908152604090205481565b6011546102b89060ff1681565b6103517f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102e06105f73660046124ec565b611223565b6102e061060a3660046124d4565b6112a4565b6102e061061d3660046124d4565b6112e0565b6103517f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6102ea61130c565b6102b861065f36600461229d565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b14806106be57506001600160e01b03198216635b5e139f60e01b145b806106d957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6106ea600033610f36565b61070f5760405162461bcd60e51b81526004016107069061272b565b60405180910390fd5b60115460ff16156107565760405162461bcd60e51b81526020600482015260116024820152704d657461646174612066726f7a656e202160781b6044820152606401610706565b61075f8161134f565b50565b60606007805461077190612833565b80601f016020809104026020016040519081016040528092919081815260200182805461079d90612833565b80156107ea5780601f106107bf576101008083540402835291602001916107ea565b820191906000526020600020905b8154815290600101906020018083116107cd57829003601f168201915b5050505050905090565b60006107ff82611362565b61081c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600d60205260409020546001600160a01b031690565b600061084382610e42565b9050806001600160a01b0316836001600160a01b031614156108785760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108985750610896813361065f565b155b156108b6576040516367d9dca160e11b815260040160405180910390fd5b6108c183838361139b565b505050565b6108d1600033610f36565b6108ed5760405162461bcd60e51b8152600401610706906126dd565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b61091a600033610f36565b6109365760405162461bcd60e51b81526004016107069061272b565b60005b82518110156108c157604080516001808252818301909252600091816020015b606081526020019060019003908161095957905050905082828151811061099057634e487b7160e01b600052603260045260246000fd5b6020026020010151816000815181106109b957634e487b7160e01b600052603260045260246000fd5b60200260200101819052506109f78483815181106109e757634e487b7160e01b600052603260045260246000fd5b60200260200101516001836113f7565b5080610a028161286e565b915050610939565b610a15600033610f36565b610a315760405162461bcd60e51b8152600401610706906126dd565b600f8054911515600160a81b0260ff60a81b19909216919091179055565b610a797f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610f36565b610a955760405162461bcd60e51b81526004016107069061268e565b6001600160a01b03831660009081526001602052604090205460ff1680610ac65750600f54600160a01b900460ff16155b610b0b5760405162461bcd60e51b815260206004820152601660248201527555736572206e6f742077686974656c6973746564202160501b6044820152606401610706565b600f54600160a81b900460ff16610b5c5760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206e6f7420656e61626c6564202160581b6044820152606401610706565b610b678383836113f7565b601054610b7384610e54565b11156108c15760405162461bcd60e51b815260206004820152601a60248201527f4d6178204e46547320726561636865642062792077616c6c65740000000000006044820152606401610706565b6108c1838383611412565b600082815260208190526040902060020154610be89033610f36565b610c4c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b6064820152608401610706565b610c56828261160c565b5050565b6001600160a01b0381163314610cca5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610706565b610c568282611665565b600a5460ff16610d1d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610706565b610d28600033610f36565b610d445760405162461bcd60e51b81526004016107069061272b565b610d4c6116be565b565b6108c1838383604051806020016040528060008152506110bb565b610d74600033610f36565b610d905760405162461bcd60e51b81526004016107069061268e565b60115460ff1615610dee5760405162461bcd60e51b815260206004820152602260248201527f4e6f6e46756e6769626c65546f6b656e3a20616c72656164792066726f7a656e604482015261202160f01b6064820152608401610706565b6011805460ff19166001179055565b610e08600033610f36565b610e245760405162461bcd60e51b81526004016107069061272b565b600f8054911515600160a01b0260ff60a01b19909216919091179055565b6000610e4d82611751565b5192915050565b60006001600160a01b038216610e7d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600c60205260409020546001600160401b031690565b600a5460ff1615610ee85760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610706565b610ef3600033610f36565b610f0f5760405162461bcd60e51b81526004016107069061272b565b610d4c611878565b6000828152602081905260408120610f2f90836118f3565b9392505050565b6000828152602081905260408120610f2f90836118ff565b60606008805461077190612833565b610f68600033610f36565b610f845760405162461bcd60e51b81526004016107069061272b565b600355565b6001600160a01b038216331415610fb35760405163b06307db60e01b815260040160405180910390fd5b336000818152600e602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61102a600033610f36565b6110465760405162461bcd60e51b81526004016107069061272b565b60005b8151811015610c5657600180600084848151811061107757634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110b38161286e565b915050611049565b6110c6848484611412565b6001600160a01b0383163b151580156110e857506110e684848484611921565b155b15611106576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6002602052600090815260409020805461112590612833565b80601f016020809104026020016040519081016040528092919081815260200182805461115190612833565b801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b505050505081565b60606111b182611362565b6111ce57604051630a14c4b560e41b815260040160405180910390fd5b60006111d8611a19565b9050806111e484611a28565b6040516020016111f59291906125c5565b604051602081830303815290604052915050919050565b60008181526020819052604081206106d990611b41565b60008281526020819052604090206002015461123f9033610f36565b610cca5760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b6064820152608401610706565b6112af600033610f36565b6112cb5760405162461bcd60e51b81526004016107069061272b565b60035460009182526004602052604090912055565b6112eb600033610f36565b6113075760405162461bcd60e51b81526004016107069061268e565b601055565b6060611316611a19565b6040516020016113269190612604565b604051602081830303815290604052905090565b6000610f2f836001600160a01b038416611b4b565b8051610c56906009906020840190612053565b600081600111158015611376575060055482105b80156106d95750506000908152600b6020526040902054600160e01b900460ff161590565b6000828152600d602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108c183836040518060200160405280600081525084611b9a565b600061141d82611751565b9050836001600160a01b031681600001516001600160a01b0316146114545760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114725750611472853361065f565b8061148d575033611482846107f4565b6001600160a01b0316145b9050806114ad57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114d457604051633a954ecd60e21b815260040160405180910390fd5b6114e18585856001611ba8565b6114ed6000848761139b565b6001600160a01b038581166000908152600c60209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600b90945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115c15760055482146115c157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000828152602081905260409020611624908261133a565b15610c565760405133906001600160a01b0383169084907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d90600090a45050565b600082815260208190526040902061167d9082611c68565b15610c565760405133906001600160a01b0383169084907ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b90600090a45050565b600a5460ff166117075760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610706565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101919091528180600111158015611781575060055481105b1561185f576000818152600b6020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061185d5780516001600160a01b0316156117f4579392505050565b50600019016000818152600b6020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611858579392505050565b6117f4565b505b604051636f96cda160e11b815260040160405180910390fd5b600a5460ff16156118be5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610706565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117343390565b6000610f2f8383611c7d565b6001600160a01b03811660009081526001830160205260408120541515610f2f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061195690339089908890889060040161263e565b602060405180830381600087803b15801561197057600080fd5b505af19250505080156119a0575060408051601f3d908101601f1916820190925261199d9181019061254b565b60015b6119fb573d8080156119ce576040519150601f19603f3d011682016040523d82523d6000602084013e6119d3565b606091505b5080516119f3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461077190612833565b606081611a4c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a765780611a608161286e565b9150611a6f9050600a836127dc565b9150611a50565b6000816001600160401b03811115611a9e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ac8576020820181803683370190505b5090505b8415611a1157611add6001836127f0565b9150611aea600a86612889565b611af59060306127c4565b60f81b818381518110611b1857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b3a600a866127dc565b9450611acc565b60006106d9825490565b6000818152600183016020526040812054611b92575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556106d9565b5060006106d9565b611106848484846001611cb5565b600a5460ff1615611c0f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610706565b60035460008381526004602052604090205414156111065760405162461bcd60e51b81526020600482015260166024820152751d1bdad95b88185b1c9958591e481c995919595b595960521b6044820152606401610706565b6000610f2f836001600160a01b038416611f36565b6000826000018281548110611ca257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b6005546001600160a01b038616611cde57604051622e076360e81b815260040160405180910390fd5b84611cfc5760405163b562e8dd60e01b815260040160405180910390fd5b611d096000878388611ba8565b6001600160a01b0386166000818152600c6020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168d0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168d01811690920217909155858452600b90925290912080546001600160e01b031916909217600160a01b429092169190910217905580808601838015611dba57506001600160a01b0388163b15155b15611e94575b60405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48483830381518110611e1a57634e487b7160e01b600052603260045260246000fd5b6020026020010151600260008481526020019081526020016000209080519060200190611e48929190612053565b50611e5c6000898480600101955089611921565b611e79576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611dc0578260055414611e8f57600080fd5b611f2a565b8483830381518110611eb657634e487b7160e01b600052603260045260246000fd5b6020026020010151600260008481526020019081526020016000209080519060200190611ee4929190612053565b506040516001830192906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611e94575b50600555505050505050565b60008181526001830160205260408120548015612049576000611f5a6001836127f0565b8554909150600090611f6e906001906127f0565b9050818114611fef576000866000018281548110611f9c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110611fcd57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061200e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506106d9565b60009150506106d9565b82805461205f90612833565b90600052602060002090601f01602090048101928261208157600085556120c7565b82601f1061209a57805160ff19168380011785556120c7565b828001600101855582156120c7579182015b828111156120c75782518255916020019190600101906120ac565b506120d39291506120d7565b5090565b5b808211156120d357600081556001016120d8565b60006001600160401b03831115612105576121056128c9565b612118601f8401601f1916602001612771565b905082815283838301111561212c57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461215a57600080fd5b919050565b600082601f83011261216f578081fd5b8135602061218461217f836127a1565b612771565b80838252828201915082860187848660051b89010111156121a3578586fd5b855b858110156121c8576121b682612143565b845292840192908401906001016121a5565b5090979650505050505050565b600082601f8301126121e5578081fd5b813560206121f561217f836127a1565b80838252828201915082860187848660051b8901011115612214578586fd5b855b858110156121c85781356001600160401b03811115612233578788fd5b6122418a87838c0101612264565b8552509284019290840190600101612216565b8035801515811461215a57600080fd5b600082601f830112612274578081fd5b610f2f838335602085016120ec565b600060208284031215612294578081fd5b610f2f82612143565b600080604083850312156122af578081fd5b6122b883612143565b91506122c660208401612143565b90509250929050565b6000806000606084860312156122e3578081fd5b6122ec84612143565b92506122fa60208501612143565b9150604084013590509250925092565b6000806000806080858703121561231f578081fd5b61232885612143565b935061233660208601612143565b92506040850135915060608501356001600160401b03811115612357578182fd5b8501601f81018713612367578182fd5b612376878235602084016120ec565b91505092959194509250565b60008060408385031215612394578182fd5b61239d83612143565b91506122c660208401612254565b600080604083850312156123bd578182fd5b6123c683612143565b946020939093013593505050565b6000806000606084860312156123e8578283fd5b6123f184612143565b92506020840135915060408401356001600160401b03811115612412578182fd5b61241e868287016121d5565b9150509250925092565b600060208284031215612439578081fd5b81356001600160401b0381111561244e578182fd5b611a118482850161215f565b6000806040838503121561246c578182fd5b82356001600160401b0380821115612482578384fd5b61248e8683870161215f565b935060208501359150808211156124a3578283fd5b506124b0858286016121d5565b9150509250929050565b6000602082840312156124cb578081fd5b610f2f82612254565b6000602082840312156124e5578081fd5b5035919050565b600080604083850312156124fe578182fd5b823591506122c660208401612143565b60008060408385031215612520578182fd5b50508035926020909101359150565b600060208284031215612540578081fd5b8135610f2f816128df565b60006020828403121561255c578081fd5b8151610f2f816128df565b600060208284031215612578578081fd5b81356001600160401b0381111561258d578182fd5b611a1184828501612264565b600081518084526125b1816020860160208601612807565b601f01601f19169290920160200192915050565b600083516125d7818460208801612807565b8351908301906125eb818360208801612807565b64173539b7b760d91b9101908152600501949350505050565b60008251612616818460208701612807565b7531b7b73a3930b1ba16b6b2ba30b230ba30973539b7b760511b920191825250601601919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061267190830184612599565b9695505050505050565b602081526000610f2f6020830184612599565b6020808252602f908201527f4e6f6e46756e6769626c65546f6b656e3a206d7573742068617665206d696e7460408201526e195c881c9bdb19481d1bc81b5a5b9d608a1b606082015260800190565b6020808252602e908201527f4e6f6e46756e6769626c65546f6b656e3a206d75737420686176652061646d6960408201526d1b881c9bdb19481d1bc81b5a5b9d60921b606082015260800190565b60208082526026908201527f4e6f6e46756e6769626c65546f6b656e3a206d75737420686176652061646d696040820152656e20726f6c6560d01b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612799576127996128c9565b604052919050565b60006001600160401b038211156127ba576127ba6128c9565b5060051b60200190565b600082198211156127d7576127d761289d565b500190565b6000826127eb576127eb6128b3565b500490565b6000828210156128025761280261289d565b500390565b60005b8381101561282257818101518382015260200161280a565b838111156111065750506000910152565b600181811c9082168061284757607f821691505b6020821081141561286857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128825761288261289d565b5060010190565b600082612898576128986128b3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461075f57600080fdfea264697066735822122023378368b02ecca0e9ecf0da7b27633675d8b7c614d80508ad874b5bd785ba0564736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d434f5245204445504c4f5945520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024344000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d61684d62536d616d676551385442625232464e7373645053584d6376353346635a3568666e6d5744797a6d772f000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102a05760003560e01c806370a0823111610167578063bd11f69d116100ce578063d547741f11610087578063d547741f146105e9578063d5d1416a146105fc578063e268e4d31461060f578063e63ab1e914610622578063e8a3d48514610649578063e985e9c51461065157600080fd5b8063bd11f69d1461055c578063c87b56dd1461056f578063ca15c87314610582578063cf6459ff14610595578063d111515d146105b5578063d5391393146105c257600080fd5b80639b624e7b116101205780639b624e7b146104f45780639fd6db1214610507578063a217fddf1461051b578063a22cb46514610523578063b53200a614610536578063b88d4fde1461054957600080fd5b806370a08231146104985780638456cb59146104ab5780638da5cb5b146104b35780639010d07c146104c657806391d14854146104d957806395d89b41146104ec57600080fd5b806323b872dd1161020b578063453c2310116101c4578063453c231014610442578063539d5c871461044b5780635b0c29eb146104535780635c975abb146104675780636082adf8146104725780636352211e1461048557600080fd5b806323b872dd146103cb578063248a9ca3146103de5780632f2ff15d1461040157806336568abe146104145780633f4ba83a1461042757806342842e0e1461042f57600080fd5b8063146ca5311161025d578063146ca53114610348578063170a3ef01461035f57806318160ddd146103725780631e7be2101461038257806321775c92146103a557806322df11d8146103b857600080fd5b806301ffc9a7146102a557806302fe5305146102cd57806306fdde03146102e2578063081812fc146102f7578063095ea7b31461032257806313af403514610335575b600080fd5b6102b86102b336600461252f565b61068d565b60405190151581526020015b60405180910390f35b6102e06102db366004612567565b6106df565b005b6102ea610762565b6040516102c4919061267b565b61030a6103053660046124d4565b6107f4565b6040516001600160a01b0390911681526020016102c4565b6102e06103303660046123ab565b610838565b6102e0610343366004612283565b6108c6565b61035160035481565b6040519081526020016102c4565b6102e061036d36600461245a565b61090f565b6006546005540360001901610351565b6102b8610390366004612283565b60016020526000908152604090205460ff1681565b6102e06103b33660046124ba565b610a0a565b6102e06103c63660046123d4565b610a4f565b6102e06103d93660046122cf565b610bc1565b6103516103ec3660046124d4565b60009081526020819052604090206002015490565b6102e061040f3660046124ec565b610bcc565b6102e06104223660046124ec565b610c5a565b6102e0610cd4565b6102e061043d3660046122cf565b610d4e565b61035160105481565b6102e0610d69565b600f546102b890600160a01b900460ff1681565b600a5460ff166102b8565b6102e06104803660046124ba565b610dfd565b61030a6104933660046124d4565b610e42565b6103516104a6366004612283565b610e54565b6102e0610ea2565b600f5461030a906001600160a01b031681565b61030a6104d436600461250e565b610f17565b6102b86104e73660046124ec565b610f36565b6102ea610f4e565b6102e06105023660046124d4565b610f5d565b600f546102b890600160a81b900460ff1681565b610351600081565b6102e0610531366004612382565b610f89565b6102e0610544366004612428565b61101f565b6102e061055736600461230a565b6110bb565b6102ea61056a3660046124d4565b61110c565b6102ea61057d3660046124d4565b6111a6565b6103516105903660046124d4565b61120c565b6103516105a33660046124d4565b60046020526000908152604090205481565b6011546102b89060ff1681565b6103517f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102e06105f73660046124ec565b611223565b6102e061060a3660046124d4565b6112a4565b6102e061061d3660046124d4565b6112e0565b6103517f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6102ea61130c565b6102b861065f36600461229d565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b14806106be57506001600160e01b03198216635b5e139f60e01b145b806106d957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6106ea600033610f36565b61070f5760405162461bcd60e51b81526004016107069061272b565b60405180910390fd5b60115460ff16156107565760405162461bcd60e51b81526020600482015260116024820152704d657461646174612066726f7a656e202160781b6044820152606401610706565b61075f8161134f565b50565b60606007805461077190612833565b80601f016020809104026020016040519081016040528092919081815260200182805461079d90612833565b80156107ea5780601f106107bf576101008083540402835291602001916107ea565b820191906000526020600020905b8154815290600101906020018083116107cd57829003601f168201915b5050505050905090565b60006107ff82611362565b61081c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600d60205260409020546001600160a01b031690565b600061084382610e42565b9050806001600160a01b0316836001600160a01b031614156108785760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108985750610896813361065f565b155b156108b6576040516367d9dca160e11b815260040160405180910390fd5b6108c183838361139b565b505050565b6108d1600033610f36565b6108ed5760405162461bcd60e51b8152600401610706906126dd565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b61091a600033610f36565b6109365760405162461bcd60e51b81526004016107069061272b565b60005b82518110156108c157604080516001808252818301909252600091816020015b606081526020019060019003908161095957905050905082828151811061099057634e487b7160e01b600052603260045260246000fd5b6020026020010151816000815181106109b957634e487b7160e01b600052603260045260246000fd5b60200260200101819052506109f78483815181106109e757634e487b7160e01b600052603260045260246000fd5b60200260200101516001836113f7565b5080610a028161286e565b915050610939565b610a15600033610f36565b610a315760405162461bcd60e51b8152600401610706906126dd565b600f8054911515600160a81b0260ff60a81b19909216919091179055565b610a797f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610f36565b610a955760405162461bcd60e51b81526004016107069061268e565b6001600160a01b03831660009081526001602052604090205460ff1680610ac65750600f54600160a01b900460ff16155b610b0b5760405162461bcd60e51b815260206004820152601660248201527555736572206e6f742077686974656c6973746564202160501b6044820152606401610706565b600f54600160a81b900460ff16610b5c5760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206e6f7420656e61626c6564202160581b6044820152606401610706565b610b678383836113f7565b601054610b7384610e54565b11156108c15760405162461bcd60e51b815260206004820152601a60248201527f4d6178204e46547320726561636865642062792077616c6c65740000000000006044820152606401610706565b6108c1838383611412565b600082815260208190526040902060020154610be89033610f36565b610c4c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b6064820152608401610706565b610c56828261160c565b5050565b6001600160a01b0381163314610cca5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610706565b610c568282611665565b600a5460ff16610d1d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610706565b610d28600033610f36565b610d445760405162461bcd60e51b81526004016107069061272b565b610d4c6116be565b565b6108c1838383604051806020016040528060008152506110bb565b610d74600033610f36565b610d905760405162461bcd60e51b81526004016107069061268e565b60115460ff1615610dee5760405162461bcd60e51b815260206004820152602260248201527f4e6f6e46756e6769626c65546f6b656e3a20616c72656164792066726f7a656e604482015261202160f01b6064820152608401610706565b6011805460ff19166001179055565b610e08600033610f36565b610e245760405162461bcd60e51b81526004016107069061272b565b600f8054911515600160a01b0260ff60a01b19909216919091179055565b6000610e4d82611751565b5192915050565b60006001600160a01b038216610e7d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600c60205260409020546001600160401b031690565b600a5460ff1615610ee85760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610706565b610ef3600033610f36565b610f0f5760405162461bcd60e51b81526004016107069061272b565b610d4c611878565b6000828152602081905260408120610f2f90836118f3565b9392505050565b6000828152602081905260408120610f2f90836118ff565b60606008805461077190612833565b610f68600033610f36565b610f845760405162461bcd60e51b81526004016107069061272b565b600355565b6001600160a01b038216331415610fb35760405163b06307db60e01b815260040160405180910390fd5b336000818152600e602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61102a600033610f36565b6110465760405162461bcd60e51b81526004016107069061272b565b60005b8151811015610c5657600180600084848151811061107757634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110b38161286e565b915050611049565b6110c6848484611412565b6001600160a01b0383163b151580156110e857506110e684848484611921565b155b15611106576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6002602052600090815260409020805461112590612833565b80601f016020809104026020016040519081016040528092919081815260200182805461115190612833565b801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b505050505081565b60606111b182611362565b6111ce57604051630a14c4b560e41b815260040160405180910390fd5b60006111d8611a19565b9050806111e484611a28565b6040516020016111f59291906125c5565b604051602081830303815290604052915050919050565b60008181526020819052604081206106d990611b41565b60008281526020819052604090206002015461123f9033610f36565b610cca5760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b6064820152608401610706565b6112af600033610f36565b6112cb5760405162461bcd60e51b81526004016107069061272b565b60035460009182526004602052604090912055565b6112eb600033610f36565b6113075760405162461bcd60e51b81526004016107069061268e565b601055565b6060611316611a19565b6040516020016113269190612604565b604051602081830303815290604052905090565b6000610f2f836001600160a01b038416611b4b565b8051610c56906009906020840190612053565b600081600111158015611376575060055482105b80156106d95750506000908152600b6020526040902054600160e01b900460ff161590565b6000828152600d602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108c183836040518060200160405280600081525084611b9a565b600061141d82611751565b9050836001600160a01b031681600001516001600160a01b0316146114545760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114725750611472853361065f565b8061148d575033611482846107f4565b6001600160a01b0316145b9050806114ad57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114d457604051633a954ecd60e21b815260040160405180910390fd5b6114e18585856001611ba8565b6114ed6000848761139b565b6001600160a01b038581166000908152600c60209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600b90945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115c15760055482146115c157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000828152602081905260409020611624908261133a565b15610c565760405133906001600160a01b0383169084907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d90600090a45050565b600082815260208190526040902061167d9082611c68565b15610c565760405133906001600160a01b0383169084907ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b90600090a45050565b600a5460ff166117075760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610706565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101919091528180600111158015611781575060055481105b1561185f576000818152600b6020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061185d5780516001600160a01b0316156117f4579392505050565b50600019016000818152600b6020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611858579392505050565b6117f4565b505b604051636f96cda160e11b815260040160405180910390fd5b600a5460ff16156118be5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610706565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117343390565b6000610f2f8383611c7d565b6001600160a01b03811660009081526001830160205260408120541515610f2f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061195690339089908890889060040161263e565b602060405180830381600087803b15801561197057600080fd5b505af19250505080156119a0575060408051601f3d908101601f1916820190925261199d9181019061254b565b60015b6119fb573d8080156119ce576040519150601f19603f3d011682016040523d82523d6000602084013e6119d3565b606091505b5080516119f3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461077190612833565b606081611a4c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a765780611a608161286e565b9150611a6f9050600a836127dc565b9150611a50565b6000816001600160401b03811115611a9e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ac8576020820181803683370190505b5090505b8415611a1157611add6001836127f0565b9150611aea600a86612889565b611af59060306127c4565b60f81b818381518110611b1857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b3a600a866127dc565b9450611acc565b60006106d9825490565b6000818152600183016020526040812054611b92575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556106d9565b5060006106d9565b611106848484846001611cb5565b600a5460ff1615611c0f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610706565b60035460008381526004602052604090205414156111065760405162461bcd60e51b81526020600482015260166024820152751d1bdad95b88185b1c9958591e481c995919595b595960521b6044820152606401610706565b6000610f2f836001600160a01b038416611f36565b6000826000018281548110611ca257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b6005546001600160a01b038616611cde57604051622e076360e81b815260040160405180910390fd5b84611cfc5760405163b562e8dd60e01b815260040160405180910390fd5b611d096000878388611ba8565b6001600160a01b0386166000818152600c6020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168d0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168d01811690920217909155858452600b90925290912080546001600160e01b031916909217600160a01b429092169190910217905580808601838015611dba57506001600160a01b0388163b15155b15611e94575b60405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48483830381518110611e1a57634e487b7160e01b600052603260045260246000fd5b6020026020010151600260008481526020019081526020016000209080519060200190611e48929190612053565b50611e5c6000898480600101955089611921565b611e79576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611dc0578260055414611e8f57600080fd5b611f2a565b8483830381518110611eb657634e487b7160e01b600052603260045260246000fd5b6020026020010151600260008481526020019081526020016000209080519060200190611ee4929190612053565b506040516001830192906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611e94575b50600555505050505050565b60008181526001830160205260408120548015612049576000611f5a6001836127f0565b8554909150600090611f6e906001906127f0565b9050818114611fef576000866000018281548110611f9c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110611fcd57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061200e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506106d9565b60009150506106d9565b82805461205f90612833565b90600052602060002090601f01602090048101928261208157600085556120c7565b82601f1061209a57805160ff19168380011785556120c7565b828001600101855582156120c7579182015b828111156120c75782518255916020019190600101906120ac565b506120d39291506120d7565b5090565b5b808211156120d357600081556001016120d8565b60006001600160401b03831115612105576121056128c9565b612118601f8401601f1916602001612771565b905082815283838301111561212c57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461215a57600080fd5b919050565b600082601f83011261216f578081fd5b8135602061218461217f836127a1565b612771565b80838252828201915082860187848660051b89010111156121a3578586fd5b855b858110156121c8576121b682612143565b845292840192908401906001016121a5565b5090979650505050505050565b600082601f8301126121e5578081fd5b813560206121f561217f836127a1565b80838252828201915082860187848660051b8901011115612214578586fd5b855b858110156121c85781356001600160401b03811115612233578788fd5b6122418a87838c0101612264565b8552509284019290840190600101612216565b8035801515811461215a57600080fd5b600082601f830112612274578081fd5b610f2f838335602085016120ec565b600060208284031215612294578081fd5b610f2f82612143565b600080604083850312156122af578081fd5b6122b883612143565b91506122c660208401612143565b90509250929050565b6000806000606084860312156122e3578081fd5b6122ec84612143565b92506122fa60208501612143565b9150604084013590509250925092565b6000806000806080858703121561231f578081fd5b61232885612143565b935061233660208601612143565b92506040850135915060608501356001600160401b03811115612357578182fd5b8501601f81018713612367578182fd5b612376878235602084016120ec565b91505092959194509250565b60008060408385031215612394578182fd5b61239d83612143565b91506122c660208401612254565b600080604083850312156123bd578182fd5b6123c683612143565b946020939093013593505050565b6000806000606084860312156123e8578283fd5b6123f184612143565b92506020840135915060408401356001600160401b03811115612412578182fd5b61241e868287016121d5565b9150509250925092565b600060208284031215612439578081fd5b81356001600160401b0381111561244e578182fd5b611a118482850161215f565b6000806040838503121561246c578182fd5b82356001600160401b0380821115612482578384fd5b61248e8683870161215f565b935060208501359150808211156124a3578283fd5b506124b0858286016121d5565b9150509250929050565b6000602082840312156124cb578081fd5b610f2f82612254565b6000602082840312156124e5578081fd5b5035919050565b600080604083850312156124fe578182fd5b823591506122c660208401612143565b60008060408385031215612520578182fd5b50508035926020909101359150565b600060208284031215612540578081fd5b8135610f2f816128df565b60006020828403121561255c578081fd5b8151610f2f816128df565b600060208284031215612578578081fd5b81356001600160401b0381111561258d578182fd5b611a1184828501612264565b600081518084526125b1816020860160208601612807565b601f01601f19169290920160200192915050565b600083516125d7818460208801612807565b8351908301906125eb818360208801612807565b64173539b7b760d91b9101908152600501949350505050565b60008251612616818460208701612807565b7531b7b73a3930b1ba16b6b2ba30b230ba30973539b7b760511b920191825250601601919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061267190830184612599565b9695505050505050565b602081526000610f2f6020830184612599565b6020808252602f908201527f4e6f6e46756e6769626c65546f6b656e3a206d7573742068617665206d696e7460408201526e195c881c9bdb19481d1bc81b5a5b9d608a1b606082015260800190565b6020808252602e908201527f4e6f6e46756e6769626c65546f6b656e3a206d75737420686176652061646d6960408201526d1b881c9bdb19481d1bc81b5a5b9d60921b606082015260800190565b60208082526026908201527f4e6f6e46756e6769626c65546f6b656e3a206d75737420686176652061646d696040820152656e20726f6c6560d01b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612799576127996128c9565b604052919050565b60006001600160401b038211156127ba576127ba6128c9565b5060051b60200190565b600082198211156127d7576127d761289d565b500190565b6000826127eb576127eb6128b3565b500490565b6000828210156128025761280261289d565b500390565b60005b8381101561282257818101518382015260200161280a565b838111156111065750506000910152565b600181811c9082168061284757607f821691505b6020821081141561286857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128825761288261289d565b5060010190565b600082612898576128986128b3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461075f57600080fdfea264697066735822122023378368b02ecca0e9ecf0da7b27633675d8b7c614d80508ad874b5bd785ba0564736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d434f5245204445504c4f5945520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024344000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d61684d62536d616d676551385442625232464e7373645053584d6376353346635a3568666e6d5744797a6d772f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): CORE DEPLOYER
Arg [1] : symbol (string): CD
Arg [2] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmahMbSmamgeQ8TBbR2FNssdPSXMcv53FcZ5hfnmWDyzmw/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 434f5245204445504c4f59455200000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4344000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d61684d62536d616d676551385442625232464e7373645053584d6376
Arg [10] : 353346635a3568666e6d5744797a6d772f000000000000000000000000000000


Deployed Bytecode Sourcemap

64795:5536:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45845:305;;;;;;:::i;:::-;;:::i;:::-;;;10386:14:1;;10379:22;10361:41;;10349:2;10334:18;45845:305:0;;;;;;;;66081:255;;;;;;:::i;:::-;;:::i;:::-;;48958:100;;;:::i;:::-;;;;;;;:::i;50207:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9684:32:1;;;9666:51;;9654:2;9639:18;50207:204:0;9621:102:1;49770:371:0;;;;;;:::i;:::-;;:::i;66578:195::-;;;;;;:::i;:::-;;:::i;40396:21::-;;;;;;;;;10559:25:1;;;10547:2;10532:18;40396:21:0;10514:76:1;68137:403:0;;;;;;:::i;:::-;;:::i;45094:303::-;45348:12;;45332:13;;:28;-1:-1:-1;;45332:46:0;45094:303;;40301:43;;;;;;:::i;:::-;;;;;;;;;;;;;;;;66781:204;;;;;;:::i;:::-;;:::i;69455:617::-;;;;;;:::i;:::-;;:::i;51072:170::-;;;;;;:::i;:::-;;:::i;25649:114::-;;;;;;:::i;:::-;25706:7;25733:12;;;;;;;;;;:22;;;;25649:114;26025:227;;;;;;:::i;:::-;;:::i;27234:209::-;;;;;;:::i;:::-;;:::i;67659:169::-;;;:::i;51313:185::-;;;;;;:::i;:::-;;:::i;65116:33::-;;;;;;65799:274;;;:::i;65030:39::-;;;;;-1:-1:-1;;;65030:39:0;;;;;;42158:86;42229:7;;;;42158:86;;66993:210;;;;;;:::i;:::-;;:::i;48766:125::-;;;;;;:::i;:::-;;:::i;46214:206::-;;;;;;:::i;:::-;;:::i;67349:169::-;;;:::i;65003:20::-;;;;;-1:-1:-1;;;;;65003:20:0;;;25322:138;;;;;;:::i;:::-;;:::i;24283:139::-;;;;;;:::i;:::-;;:::i;49127:104::-;;;:::i;68548:172::-;;;;;;:::i;:::-;;:::i;65076:33::-;;;;;-1:-1:-1;;;65076:33:0;;;;;;23028:49;;23073:4;23028:49;;50483:287;;;;;;:::i;:::-;;:::i;67840:289::-;;;;;;:::i;:::-;;:::i;51569:369::-;;;;;;:::i;:::-;;:::i;40351:38::-;;;;;;:::i;:::-;;:::i;49302:404::-;;;;;;:::i;:::-;;:::i;24596:127::-;;;;;;:::i;:::-;;:::i;40478:33::-;;;;;;:::i;:::-;;;;;;;;;;;;;;65156:34;;;;;;;;;64865:62;;64903:24;64865:62;;26497:230;;;;;;:::i;:::-;;:::i;68728:173::-;;;;;;:::i;:::-;;:::i;66344:224::-;;;;;;:::i;:::-;;:::i;64934:62::-;;64972:24;64934:62;;68911:150;;;:::i;50841:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;50962:25:0;;;50938:4;50962:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50841:164;45845:305;45947:4;-1:-1:-1;;;;;;45984:40:0;;-1:-1:-1;;;45984:40:0;;:105;;-1:-1:-1;;;;;;;46041:48:0;;-1:-1:-1;;;46041:48:0;45984:105;:158;;;-1:-1:-1;;;;;;;;;;30704:40:0;;;46106:36;45964:178;45845:305;-1:-1:-1;;45845:305:0:o;66081:255::-;66154:41;23073:4;730:10;24283:139;:::i;66154:41::-;66146:92;;;;-1:-1:-1;;;66146:92:0;;;;;;;:::i;:::-;;;;;;;;;66259:14;;;;66257:16;66249:46;;;;-1:-1:-1;;;66249:46:0;;14497:2:1;66249:46:0;;;14479:21:1;14536:2;14516:18;;;14509:30;-1:-1:-1;;;14555:18:1;;;14548:47;14612:18;;66249:46:0;14469:167:1;66249:46:0;66306:20;66318:7;66306:11;:20::i;:::-;66081:255;:::o;48958:100::-;49012:13;49045:5;49038:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48958:100;:::o;50207:204::-;50275:7;50300:16;50308:7;50300;:16::i;:::-;50295:64;;50325:34;;-1:-1:-1;;;50325:34:0;;;;;;;;;;;50295:64;-1:-1:-1;50379:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;50379:24:0;;50207:204::o;49770:371::-;49843:13;49859:24;49875:7;49859:15;:24::i;:::-;49843:40;;49904:5;-1:-1:-1;;;;;49898:11:0;:2;-1:-1:-1;;;;;49898:11:0;;49894:48;;;49918:24;;-1:-1:-1;;;49918:24:0;;;;;;;;;;;49894:48;730:10;-1:-1:-1;;;;;49959:21:0;;;;;;:63;;-1:-1:-1;49985:37:0;50002:5;730:10;50841:164;:::i;49985:37::-;49984:38;49959:63;49955:138;;;50046:35;;-1:-1:-1;;;50046:35:0;;;;;;;;;;;49955:138;50105:28;50114:2;50118:7;50127:5;50105:8;:28::i;:::-;49770:371;;;:::o;66578:195::-;66646:41;23073:4;730:10;24283:139;:::i;66646:41::-;66638:100;;;;-1:-1:-1;;;66638:100:0;;;;;;;:::i;:::-;66749:5;:14;;-1:-1:-1;;;;;;66749:14:0;-1:-1:-1;;;;;66749:14:0;;;;;;;;;;66578:195::o;68137:403::-;68239:41;23073:4;730:10;24283:139;:::i;68239:41::-;68231:92;;;;-1:-1:-1;;;68231:92:0;;;;;;;:::i;:::-;68337:9;68332:201;68356:14;:21;68352:1;:25;68332:201;;;68421:15;;;68434:1;68421:15;;;;;;;;;68397:21;;68421:15;;;;;;;;;;;;;;;;;;;;68397:39;;68462:7;68470:1;68462:10;;;;;;-1:-1:-1;;;68462:10:0;;;;;;;;;;;;;;;68451:5;68457:1;68451:8;;;;;;-1:-1:-1;;;68451:8:0;;;;;;;;;;;;;;:21;;;;68485:38;68495:14;68510:1;68495:17;;;;;;-1:-1:-1;;;68495:17:0;;;;;;;;;;;;;;;68514:1;68517:5;68485:9;:38::i;:::-;-1:-1:-1;68379:3:0;;;;:::i;:::-;;;;68332:201;;66781:204;66850:41;23073:4;730:10;24283:139;:::i;66850:41::-;66842:100;;;;-1:-1:-1;;;66842:100:0;;;;;;;:::i;:::-;66953:14;:22;;;;;-1:-1:-1;;;66953:22:0;-1:-1:-1;;;;66953:22:0;;;;;;;;;66781:204::o;69455:617::-;69558:34;64903:24;730:10;24283:139;:::i;69558:34::-;69550:94;;;;-1:-1:-1;;;69550:94:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;69663:14:0;;;;;;:10;:14;;;;;;;;;:39;;-1:-1:-1;69683:19:0;;-1:-1:-1;;;69683:19:0;;;;69681:21;69663:39;69655:74;;;;-1:-1:-1;;;69655:74:0;;13731:2:1;69655:74:0;;;13713:21:1;13770:2;13750:18;;;13743:30;-1:-1:-1;;;13789:18:1;;;13782:52;13851:18;;69655:74:0;13703:172:1;69655:74:0;69750:14;;-1:-1:-1;;;69750:14:0;;;;69742:48;;;;-1:-1:-1;;;69742:48:0;;14843:2:1;69742:48:0;;;14825:21:1;14882:2;14862:18;;;14855:30;-1:-1:-1;;;14901:18:1;;;14894:51;14962:18;;69742:48:0;14815:171:1;69742:48:0;69953:32;69963:2;69967:8;69977:7;69953:9;:32::i;:::-;70021:12;;70004:13;70014:2;70004:9;:13::i;:::-;:29;;69996:68;;;;-1:-1:-1;;;69996:68:0;;12614:2:1;69996:68:0;;;12596:21:1;12653:2;12633:18;;;12626:30;12692:28;12672:18;;;12665:56;12738:18;;69996:68:0;12586:176:1;51072:170:0;51206:28;51216:4;51222:2;51226:7;51206:9;:28::i;26025:227::-;26117:6;:12;;;;;;;;;;:22;;;26109:45;;730:10;24283:139;:::i;26109:45::-;26101:105;;;;-1:-1:-1;;;26101:105:0;;11433:2:1;26101:105:0;;;11415:21:1;11472:2;11452:18;;;11445:30;11511:34;11491:18;;;11484:62;-1:-1:-1;;;11562:18:1;;;11555:45;11617:19;;26101:105:0;11405:237:1;26101:105:0;26219:25;26230:4;26236:7;26219:10;:25::i;:::-;26025:227;;:::o;27234:209::-;-1:-1:-1;;;;;27321:23:0;;730:10;27321:23;27313:83;;;;-1:-1:-1;;;27313:83:0;;16354:2:1;27313:83:0;;;16336:21:1;16393:2;16373:18;;;16366:30;16432:34;16412:18;;;16405:62;-1:-1:-1;;;16483:18:1;;;16476:45;16538:19;;27313:83:0;16326:237:1;27313:83:0;27409:26;27421:4;27427:7;27409:11;:26::i;67659:169::-;42229:7;;;;42753:41;;;;-1:-1:-1;;;42753:41:0;;11849:2:1;42753:41:0;;;11831:21:1;11888:2;11868:18;;;11861:30;-1:-1:-1;;;11907:18:1;;;11900:50;11967:18;;42753:41:0;11821:170:1;42753:41:0;67715::::1;23073:4;730:10:::0;24283:139;:::i;67715:41::-:1;67707:92;;;;-1:-1:-1::0;;;67707:92:0::1;;;;;;;:::i;:::-;67810:10;:8;:10::i;:::-;67659:169::o:0;51313:185::-;51451:39;51468:4;51474:2;51478:7;51451:39;;;;;;;;;;;;:16;:39::i;65799:274::-;65862:41;23073:4;730:10;24283:139;:::i;65862:41::-;65854:101;;;;-1:-1:-1;;;65854:101:0;;;;;;;:::i;:::-;65976:14;;;;65974:16;65966:63;;;;-1:-1:-1;;;65966:63:0;;15951:2:1;65966:63:0;;;15933:21:1;15990:2;15970:18;;;15963:30;16029:34;16009:18;;;16002:62;-1:-1:-1;;;16080:18:1;;;16073:32;16122:19;;65966:63:0;15923:224:1;65966:63:0;66042:14;:21;;-1:-1:-1;;66042:21:0;66059:4;66042:21;;;65799:274::o;66993:210::-;67069:41;23073:4;730:10;24283:139;:::i;67069:41::-;67061:92;;;;-1:-1:-1;;;67061:92:0;;;;;;;:::i;:::-;67164:19;:29;;;;;-1:-1:-1;;;67164:29:0;-1:-1:-1;;;;67164:29:0;;;;;;;;;66993:210::o;48766:125::-;48830:7;48857:21;48870:7;48857:12;:21::i;:::-;:26;;48766:125;-1:-1:-1;;48766:125:0:o;46214:206::-;46278:7;-1:-1:-1;;;;;46302:19:0;;46298:60;;46330:28;;-1:-1:-1;;;46330:28:0;;;;;;;;;;;46298:60;-1:-1:-1;;;;;;46384:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;46384:27:0;;46214:206::o;67349:169::-;42229:7;;;;42483:9;42475:38;;;;-1:-1:-1;;;42475:38:0;;13386:2:1;42475:38:0;;;13368:21:1;13425:2;13405:18;;;13398:30;-1:-1:-1;;;13444:18:1;;;13437:46;13500:18;;42475:38:0;13358:166:1;42475:38:0;67407:41:::1;23073:4;730:10:::0;24283:139;:::i;67407:41::-:1;67399:92;;;;-1:-1:-1::0;;;67399:92:0::1;;;;;;;:::i;:::-;67502:8;:6;:8::i;25322:138::-:0;25395:7;25422:12;;;;;;;;;;:30;;25446:5;25422:23;:30::i;:::-;25415:37;25322:138;-1:-1:-1;;;25322:138:0:o;24283:139::-;24352:4;24376:12;;;;;;;;;;:38;;24406:7;24376:29;:38::i;49127:104::-;49183:13;49216:7;49209:14;;;;;:::i;68548:172::-;68605:41;23073:4;730:10;24283:139;:::i;68605:41::-;68597:92;;;;-1:-1:-1;;;68597:92:0;;;;;;;:::i;:::-;68698:5;:14;68548:172::o;50483:287::-;-1:-1:-1;;;;;50582:24:0;;730:10;50582:24;50578:54;;;50615:17;;-1:-1:-1;;;50615:17:0;;;;;;;;;;;50578:54;730:10;50645:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;50645:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;50645:53:0;;;;;;;;;;50714:48;;10361:41:1;;;50645:42:0;;730:10;50714:48;;10334:18:1;50714:48:0;;;;;;;50483:287;;:::o;67840:289::-;67918:41;23073:4;730:10;24283:139;:::i;67918:41::-;67910:92;;;;-1:-1:-1;;;67910:92:0;;;;;;;:::i;:::-;68016:9;68011:111;68035:14;:21;68031:1;:25;68011:111;;;68108:4;68076:10;:29;68087:14;68102:1;68087:17;;;;;;-1:-1:-1;;;68087:17:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;68076:29:0;;;;;;;;;;;-1:-1:-1;68076:29:0;:36;;-1:-1:-1;;68076:36:0;;;;;;;;;;68058:3;;;;:::i;:::-;;;;68011:111;;51569:369;51736:28;51746:4;51752:2;51756:7;51736:9;:28::i;:::-;-1:-1:-1;;;;;51779:13:0;;14359:20;14407:8;;51779:76;;;;;51799:56;51830:4;51836:2;51840:7;51849:5;51799:30;:56::i;:::-;51798:57;51779:76;51775:156;;;51879:40;;-1:-1:-1;;;51879:40:0;;;;;;;;;;;51775:156;51569:369;;;;:::o;40351:38::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49302:404::-;49375:13;49406:16;49414:7;49406;:16::i;:::-;49401:59;;49431:29;;-1:-1:-1;;;49431:29:0;;;;;;;;;;;49401:59;49473:21;49497:13;:11;:13::i;:::-;49473:37;;49660:7;49669:18;:7;:16;:18::i;:::-;49643:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49629:69;;;49302:404;;;:::o;24596:127::-;24659:7;24686:12;;;;;;;;;;:29;;:27;:29::i;26497:230::-;26590:6;:12;;;;;;;;;;:22;;;26582:45;;730:10;24283:139;:::i;26582:45::-;26574:106;;;;-1:-1:-1;;;26574:106:0;;12969:2:1;26574:106:0;;;12951:21:1;13008:2;12988:18;;;12981:30;13047:34;13027:18;;;13020:62;-1:-1:-1;;;13098:18:1;;;13091:46;13154:19;;26574:106:0;12941:238:1;68728:173:0;68782:41;23073:4;730:10;24283:139;:::i;68782:41::-;68774:92;;;;-1:-1:-1;;;68774:92:0;;;;;;;:::i;:::-;68888:5;;68875:10;;;;:3;:10;;;;;;:18;68728:173::o;66344:224::-;66426:41;23073:4;730:10;24283:139;:::i;66426:41::-;66418:101;;;;-1:-1:-1;;;66418:101:0;;;;;;;:::i;:::-;66530:12;:28;66344:224::o;68911:150::-;68955:13;69012;:11;:13::i;:::-;68995:57;;;;;;;;:::i;:::-;;;;;;;;;;;;;68981:72;;68911:150;:::o;8602:152::-;8672:4;8696:50;8701:3;-1:-1:-1;;;;;8721:23:0;;8696:4;:50::i;43565:100::-;43638:19;;;;:8;;:19;;;;;:::i;52193:187::-;52250:4;52293:7;44951:1;52274:26;;:53;;;;;52314:13;;52304:7;:23;52274:53;:98;;;;-1:-1:-1;;52345:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;52345:27:0;;;;52344:28;;52193:187::o;60638:196::-;60753:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;60753:29:0;-1:-1:-1;;;;;60753:29:0;;;;;;;;;60798:28;;60753:24;;60798:28;;;;;;;60638:196;;;:::o;52388:138::-;52482:36;52492:2;52496:8;52482:36;;;;;;;;;;;;52510:7;52482:9;:36::i;55581:2130::-;55696:35;55734:21;55747:7;55734:12;:21::i;:::-;55696:59;;55794:4;-1:-1:-1;;;;;55772:26:0;:13;:18;;;-1:-1:-1;;;;;55772:26:0;;55768:67;;55807:28;;-1:-1:-1;;;55807:28:0;;;;;;;;;;;55768:67;55848:22;730:10;-1:-1:-1;;;;;55874:20:0;;;;:73;;-1:-1:-1;55911:36:0;55928:4;730:10;50841:164;:::i;55911:36::-;55874:126;;;-1:-1:-1;730:10:0;55964:20;55976:7;55964:11;:20::i;:::-;-1:-1:-1;;;;;55964:36:0;;55874:126;55848:153;;56019:17;56014:66;;56045:35;;-1:-1:-1;;;56045:35:0;;;;;;;;;;;56014:66;-1:-1:-1;;;;;56095:16:0;;56091:52;;56120:23;;-1:-1:-1;;;56120:23:0;;;;;;;;;;;56091:52;56156:43;56178:4;56184:2;56188:7;56197:1;56156:21;:43::i;:::-;56264:35;56281:1;56285:7;56294:4;56264:8;:35::i;:::-;-1:-1:-1;;;;;56595:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;56595:31:0;;;-1:-1:-1;;;;;56595:31:0;;;-1:-1:-1;;56595:31:0;;;;;;;56641:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;56641:29:0;;;;;;;;;;;56721:20;;;:11;:20;;;;;;56756:18;;-1:-1:-1;;;;;;56789:49:0;;;;-1:-1:-1;;;56822:15:0;56789:49;;;;;;;;;;57112:11;;57172:24;;;;;57215:13;;56721:20;;57172:24;;57215:13;57211:384;;57425:13;;57410:11;:28;57406:174;;57463:20;;57532:28;;;;-1:-1:-1;;;;;57506:54:0;-1:-1:-1;;;57506:54:0;-1:-1:-1;;;;;;57506:54:0;;;-1:-1:-1;;;;;57463:20:0;;57506:54;;;;57406:174;55581:2130;;;57642:7;57638:2;-1:-1:-1;;;;;57623:27:0;57632:4;-1:-1:-1;;;;;57623:27:0;;;;;;;;;;;55581:2130;;;;;:::o;28477:188::-;28551:6;:12;;;;;;;;;;:33;;28576:7;28551:24;:33::i;:::-;28547:111;;;28606:40;;730:10;;-1:-1:-1;;;;;28606:40:0;;;28618:4;;28606:40;;;;;28477:188;;:::o;28673:192::-;28748:6;:12;;;;;;;;;;:36;;28776:7;28748:27;:36::i;:::-;28744:114;;;28806:40;;730:10;;-1:-1:-1;;;;;28806:40:0;;;28818:4;;28806:40;;;;;28673:192;;:::o;43217:120::-;42229:7;;;;42753:41;;;;-1:-1:-1;;;42753:41:0;;11849:2:1;42753:41:0;;;11831:21:1;11888:2;11868:18;;;11861:30;-1:-1:-1;;;11907:18:1;;;11900:50;11967:18;;42753:41:0;11821:170:1;42753:41:0;43276:7:::1;:15:::0;;-1:-1:-1;;43276:15:0::1;::::0;;43307:22:::1;730:10:::0;43316:12:::1;43307:22;::::0;-1:-1:-1;;;;;9684:32:1;;;9666:51;;9654:2;9639:18;43307:22:0::1;;;;;;;43217:120::o:0;47595:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;47706:7:0;;44951:1;47755:23;;:47;;;;;47789:13;;47782:4;:20;47755:47;47751:886;;;47823:31;47857:17;;;:11;:17;;;;;;;;;47823:51;;;;;;;;;-1:-1:-1;;;;;47823:51:0;;;;-1:-1:-1;;;47823:51:0;;-1:-1:-1;;;;;47823:51:0;;;;;;;;-1:-1:-1;;;47823:51:0;;;;;;;;;;;;;;47893:729;;47943:14;;-1:-1:-1;;;;;47943:28:0;;47939:101;;48007:9;47595:1109;-1:-1:-1;;;47595:1109:0:o;47939:101::-;-1:-1:-1;;;48382:6:0;48427:17;;;;:11;:17;;;;;;;;;48415:29;;;;;;;;;-1:-1:-1;;;;;48415:29:0;;;;;-1:-1:-1;;;48415:29:0;;-1:-1:-1;;;;;48415:29:0;;;;;;;;-1:-1:-1;;;48415:29:0;;;;;;;;;;;;;48475:28;48471:109;;48543:9;47595:1109;-1:-1:-1;;;47595:1109:0:o;48471:109::-;48342:261;;;47751:886;;48665:31;;-1:-1:-1;;;48665:31:0;;;;;;;;;;;42958:118;42229:7;;;;42483:9;42475:38;;;;-1:-1:-1;;;42475:38:0;;13386:2:1;42475:38:0;;;13368:21:1;13425:2;13405:18;;;13398:30;-1:-1:-1;;;13444:18:1;;;13437:46;13500:18;;42475:38:0;13358:166:1;42475:38:0;43018:7:::1;:14:::0;;-1:-1:-1;;43018:14:0::1;43028:4;43018:14;::::0;;43048:20:::1;43055:12;730:10:::0;;650:98;9898:158;9972:7;10023:22;10027:3;10039:5;10023:3;:22::i;9174:167::-;-1:-1:-1;;;;;9308:23:0;;9254:4;4710:19;;;:12;;;:19;;;;;;:24;;9278:55;4613:129;61326:667;61510:72;;-1:-1:-1;;;61510:72:0;;61489:4;;-1:-1:-1;;;;;61510:36:0;;;;;:72;;730:10;;61561:4;;61567:7;;61576:5;;61510:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61510:72:0;;;;;;;;-1:-1:-1;;61510:72:0;;;;;;;;;;;;:::i;:::-;;;61506:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61744:13:0;;61740:235;;61790:40;;-1:-1:-1;;;61790:40:0;;;;;;;;;;;61740:235;61933:6;61927:13;61918:6;61914:2;61910:15;61903:38;61506:480;-1:-1:-1;;;;;;61629:55:0;-1:-1:-1;;;61629:55:0;;-1:-1:-1;61506:480:0;61326:667;;;;;;:::o;43902:95::-;43948:13;43981:8;43974:15;;;;;:::i;37380:723::-;37436:13;37657:10;37653:53;;-1:-1:-1;;37684:10:0;;;;;;;;;;;;-1:-1:-1;;;37684:10:0;;;;;37380:723::o;37653:53::-;37731:5;37716:12;37772:78;37779:9;;37772:78;;37805:8;;;;:::i;:::-;;-1:-1:-1;37828:10:0;;-1:-1:-1;37836:2:0;37828:10;;:::i;:::-;;;37772:78;;;37860:19;37892:6;-1:-1:-1;;;;;37882:17:0;;;;;-1:-1:-1;;;37882:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37882:17:0;;37860:39;;37910:154;37917:10;;37910:154;;37944:11;37954:1;37944:11;;:::i;:::-;;-1:-1:-1;38013:10:0;38021:2;38013:5;:10;:::i;:::-;38000:24;;:2;:24;:::i;:::-;37987:39;;37970:6;37977;37970:14;;;;;;-1:-1:-1;;;37970:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;37970:56:0;;;;;;;;-1:-1:-1;38041:11:0;38050:2;38041:11;;:::i;:::-;;;37910:154;;9427:117;9490:7;9517:19;9525:3;4911:18;;4828:109;2517:414;2580:4;4710:19;;;:12;;;:19;;;;;;2597:327;;-1:-1:-1;2640:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;2823:18;;2801:19;;;:12;;;:19;;;;;;:40;;;;2856:11;;2597:327;-1:-1:-1;2907:5:0;2900:12;;52889:206;53046:41;53052:2;53056:8;53066:5;53073:7;53082:4;53046:5;:41::i;62641:315::-;42229:7;;;;62817:9;62809:65;;;;-1:-1:-1;;;62809:65:0;;11021:2:1;62809:65:0;;;11003:21:1;11060:2;11040:18;;;11033:30;11099:34;11079:18;;;11072:62;-1:-1:-1;;;11150:18:1;;;11143:41;11201:19;;62809:65:0;10993:233:1;62809:65:0;62914:5;;62893:17;;;;:3;:17;;;;;;:26;;62885:61;;;;-1:-1:-1;;;62885:61:0;;15600:2:1;62885:61:0;;;15582:21:1;15639:2;15619:18;;;15612:30;-1:-1:-1;;;15658:18:1;;;15651:52;15720:18;;62885:61:0;15572:172:1;8930:158:0;9003:4;9027:53;9035:3;-1:-1:-1;;;;;9055:23:0;;9027:7;:53::i;5291:120::-;5358:7;5385:3;:11;;5397:5;5385:18;;;;;;-1:-1:-1;;;5385:18:0;;;;;;;;;;;;;;;;;5378:25;;5291:120;;;;:::o;53354:1973::-;53550:13;;-1:-1:-1;;;;;53578:16:0;;53574:48;;53603:19;;-1:-1:-1;;;53603:19:0;;;;;;;;;;;53574:48;53637:13;53633:44;;53659:18;;-1:-1:-1;;;53659:18:0;;;;;;;;;;;53633:44;53690:61;53720:1;53724:2;53728:12;53742:8;53690:21;:61::i;:::-;-1:-1:-1;;;;;54028:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;54087:49:0;;-1:-1:-1;;;;;54028:44:0;;;;;;;54087:49;;;;-1:-1:-1;;54028:44:0;;;;;;54087:49;;;;;;;;;;;;;;;;54153:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;54203:66:0;;;;-1:-1:-1;;;54253:15:0;54203:66;;;;;;;;;;54153:25;54350:23;;;54394:4;:23;;;;-1:-1:-1;;;;;;54402:13:0;;14359:20;14407:8;;54402:15;54390:805;;;54438:396;54469:38;;54494:12;;-1:-1:-1;;;;;54469:38:0;;;54486:1;;54469:38;;54486:1;;54469:38;54553:7;54576:12;54561;:27;54553:36;;;;;;-1:-1:-1;;;54553:36:0;;;;;;;;;;;;;;;54530:6;:20;54537:12;54530:20;;;;;;;;;;;:59;;;;;;;;;;;;:::i;:::-;;54617:69;54656:1;54660:2;54664:14;;;;;;54680:5;54617:30;:69::i;:::-;54612:174;;54722:40;;-1:-1:-1;;;54722:40:0;;;;;;;;;;;54612:174;54829:3;54813:12;:19;;54438:396;;54915:12;54898:13;;:29;54894:43;;54929:8;;;54894:43;54390:805;;;55027:7;55050:12;55035;:27;55027:36;;;;;;-1:-1:-1;;;55027:36:0;;;;;;;;;;;;;;;55004:6;:20;55011:12;55004:20;;;;;;;;;;;:59;;;;;;;;;;;;:::i;:::-;-1:-1:-1;55091:40:0;;55116:14;;;;;-1:-1:-1;;;;;55091:40:0;;;55108:1;;55091:40;;55108:1;;55091:40;55175:3;55159:12;:19;;54978:202;;54390:805;-1:-1:-1;55209:13:0;:28;53354:1973;;;;;;:::o;3107:1420::-;3173:4;3312:19;;;:12;;;:19;;;;;;3348:15;;3344:1176;;3723:21;3747:14;3760:1;3747:10;:14;:::i;:::-;3796:18;;3723:38;;-1:-1:-1;3776:17:0;;3796:22;;3817:1;;3796:22;:::i;:::-;3776:42;;3852:13;3839:9;:26;3835:405;;3886:17;3906:3;:11;;3918:9;3906:22;;;;;;-1:-1:-1;;;3906:22:0;;;;;;;;;;;;;;;;;3886:42;;4060:9;4031:3;:11;;4043:13;4031:26;;;;;;-1:-1:-1;;;4031:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;4145:23;;;:12;;;:23;;;;;:36;;;3835:405;4321:17;;:3;;:17;;;-1:-1:-1;;;4321:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;4416:3;:12;;:19;4429:5;4416:19;;;;;;;;;;;4409:26;;;4459:4;4452:11;;;;;;;3344:1176;4503:5;4496:12;;;;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:699::-;657:5;710:3;703:4;695:6;691:17;687:27;677:2;;732:5;725;718:20;677:2;772:6;759:20;798:4;822:60;838:43;878:2;838:43;:::i;:::-;822:60;:::i;:::-;904:3;928:2;923:3;916:15;956:2;951:3;947:12;940:19;;991:2;983:6;979:15;1043:3;1038:2;1032;1029:1;1025:10;1017:6;1013:23;1009:32;1006:41;1003:2;;;1064:5;1057;1050:20;1003:2;1090:5;1104:169;1118:2;1115:1;1112:9;1104:169;;;1175:23;1194:3;1175:23;:::i;:::-;1163:36;;1219:12;;;;1251;;;;1136:1;1129:9;1104:169;;;-1:-1:-1;1291:5:1;;667:635;-1:-1:-1;;;;;;;667:635:1:o;1307:857::-;1360:5;1413:3;1406:4;1398:6;1394:17;1390:27;1380:2;;1435:5;1428;1421:20;1380:2;1475:6;1462:20;1501:4;1525:60;1541:43;1581:2;1541:43;:::i;1525:60::-;1607:3;1631:2;1626:3;1619:15;1659:2;1654:3;1650:12;1643:19;;1694:2;1686:6;1682:15;1746:3;1741:2;1735;1732:1;1728:10;1720:6;1716:23;1712:32;1709:41;1706:2;;;1767:5;1760;1753:20;1706:2;1793:5;1807:328;1821:2;1818:1;1815:9;1807:328;;;1898:3;1885:17;-1:-1:-1;;;;;1921:11:1;1918:35;1915:2;;;1970:5;1963;1956:20;1915:2;2003:57;2056:3;2051:2;2037:11;2029:6;2025:24;2021:33;2003:57;:::i;:::-;1991:70;;-1:-1:-1;2081:12:1;;;;2113;;;;1839:1;1832:9;1807:328;;2169:160;2234:20;;2290:13;;2283:21;2273:32;;2263:2;;2319:1;2316;2309:12;2334:229;2377:5;2430:3;2423:4;2415:6;2411:17;2407:27;2397:2;;2452:5;2445;2438:20;2397:2;2478:79;2553:3;2544:6;2531:20;2524:4;2516:6;2512:17;2478:79;:::i;2568:196::-;2627:6;2680:2;2668:9;2659:7;2655:23;2651:32;2648:2;;;2701:6;2693;2686:22;2648:2;2729:29;2748:9;2729:29;:::i;2769:270::-;2837:6;2845;2898:2;2886:9;2877:7;2873:23;2869:32;2866:2;;;2919:6;2911;2904:22;2866:2;2947:29;2966:9;2947:29;:::i;:::-;2937:39;;2995:38;3029:2;3018:9;3014:18;2995:38;:::i;:::-;2985:48;;2856:183;;;;;:::o;3044:338::-;3121:6;3129;3137;3190:2;3178:9;3169:7;3165:23;3161:32;3158:2;;;3211:6;3203;3196:22;3158:2;3239:29;3258:9;3239:29;:::i;:::-;3229:39;;3287:38;3321:2;3310:9;3306:18;3287:38;:::i;:::-;3277:48;;3372:2;3361:9;3357:18;3344:32;3334:42;;3148:234;;;;;:::o;3387:696::-;3482:6;3490;3498;3506;3559:3;3547:9;3538:7;3534:23;3530:33;3527:2;;;3581:6;3573;3566:22;3527:2;3609:29;3628:9;3609:29;:::i;:::-;3599:39;;3657:38;3691:2;3680:9;3676:18;3657:38;:::i;:::-;3647:48;;3742:2;3731:9;3727:18;3714:32;3704:42;;3797:2;3786:9;3782:18;3769:32;-1:-1:-1;;;;;3816:6:1;3813:30;3810:2;;;3861:6;3853;3846:22;3810:2;3889:22;;3942:4;3934:13;;3930:27;-1:-1:-1;3920:2:1;;3976:6;3968;3961:22;3920:2;4004:73;4069:7;4064:2;4051:16;4046:2;4042;4038:11;4004:73;:::i;:::-;3994:83;;;3517:566;;;;;;;:::o;4088:264::-;4153:6;4161;4214:2;4202:9;4193:7;4189:23;4185:32;4182:2;;;4235:6;4227;4220:22;4182:2;4263:29;4282:9;4263:29;:::i;:::-;4253:39;;4311:35;4342:2;4331:9;4327:18;4311:35;:::i;4357:264::-;4425:6;4433;4486:2;4474:9;4465:7;4461:23;4457:32;4454:2;;;4507:6;4499;4492:22;4454:2;4535:29;4554:9;4535:29;:::i;:::-;4525:39;4611:2;4596:18;;;;4583:32;;-1:-1:-1;;;4444:177:1:o;4626:519::-;4738:6;4746;4754;4807:2;4795:9;4786:7;4782:23;4778:32;4775:2;;;4828:6;4820;4813:22;4775:2;4856:29;4875:9;4856:29;:::i;:::-;4846:39;;4932:2;4921:9;4917:18;4904:32;4894:42;;4987:2;4976:9;4972:18;4959:32;-1:-1:-1;;;;;5006:6:1;5003:30;5000:2;;;5051:6;5043;5036:22;5000:2;5079:60;5131:7;5122:6;5111:9;5107:22;5079:60;:::i;:::-;5069:70;;;4765:380;;;;;:::o;5150:368::-;5234:6;5287:2;5275:9;5266:7;5262:23;5258:32;5255:2;;;5308:6;5300;5293:22;5255:2;5353:9;5340:23;-1:-1:-1;;;;;5378:6:1;5375:30;5372:2;;;5423:6;5415;5408:22;5372:2;5451:61;5504:7;5495:6;5484:9;5480:22;5451:61;:::i;5523:634::-;5651:6;5659;5712:2;5700:9;5691:7;5687:23;5683:32;5680:2;;;5733:6;5725;5718:22;5680:2;5778:9;5765:23;-1:-1:-1;;;;;5848:2:1;5840:6;5837:14;5834:2;;;5869:6;5861;5854:22;5834:2;5897:61;5950:7;5941:6;5930:9;5926:22;5897:61;:::i;:::-;5887:71;;6011:2;6000:9;5996:18;5983:32;5967:48;;6040:2;6030:8;6027:16;6024:2;;;6061:6;6053;6046:22;6024:2;;6089:62;6143:7;6132:8;6121:9;6117:24;6089:62;:::i;:::-;6079:72;;;5670:487;;;;;:::o;6162:190::-;6218:6;6271:2;6259:9;6250:7;6246:23;6242:32;6239:2;;;6292:6;6284;6277:22;6239:2;6320:26;6336:9;6320:26;:::i;6357:190::-;6416:6;6469:2;6457:9;6448:7;6444:23;6440:32;6437:2;;;6490:6;6482;6475:22;6437:2;-1:-1:-1;6518:23:1;;6427:120;-1:-1:-1;6427:120:1:o;6552:264::-;6620:6;6628;6681:2;6669:9;6660:7;6656:23;6652:32;6649:2;;;6702:6;6694;6687:22;6649:2;6743:9;6730:23;6720:33;;6772:38;6806:2;6795:9;6791:18;6772:38;:::i;6821:258::-;6889:6;6897;6950:2;6938:9;6929:7;6925:23;6921:32;6918:2;;;6971:6;6963;6956:22;6918:2;-1:-1:-1;;6999:23:1;;;7069:2;7054:18;;;7041:32;;-1:-1:-1;6908:171:1:o;7084:255::-;7142:6;7195:2;7183:9;7174:7;7170:23;7166:32;7163:2;;;7216:6;7208;7201:22;7163:2;7260:9;7247:23;7279:30;7303:5;7279:30;:::i;7344:259::-;7413:6;7466:2;7454:9;7445:7;7441:23;7437:32;7434:2;;;7487:6;7479;7472:22;7434:2;7524:9;7518:16;7543:30;7567:5;7543:30;:::i;7608:342::-;7677:6;7730:2;7718:9;7709:7;7705:23;7701:32;7698:2;;;7751:6;7743;7736:22;7698:2;7796:9;7783:23;-1:-1:-1;;;;;7821:6:1;7818:30;7815:2;;;7866:6;7858;7851:22;7815:2;7894:50;7936:7;7927:6;7916:9;7912:22;7894:50;:::i;8150:257::-;8191:3;8229:5;8223:12;8256:6;8251:3;8244:19;8272:63;8328:6;8321:4;8316:3;8312:14;8305:4;8298:5;8294:16;8272:63;:::i;:::-;8389:2;8368:15;-1:-1:-1;;8364:29:1;8355:39;;;;8396:4;8351:50;;8199:208;-1:-1:-1;;8199:208:1:o;8412:637::-;8692:3;8730:6;8724:13;8746:53;8792:6;8787:3;8780:4;8772:6;8768:17;8746:53;:::i;:::-;8862:13;;8821:16;;;;8884:57;8862:13;8821:16;8918:4;8906:17;;8884:57;:::i;:::-;-1:-1:-1;;;8963:20:1;;8992:22;;;9041:1;9030:13;;8700:349;-1:-1:-1;;;;8700:349:1:o;9054:461::-;9286:3;9324:6;9318:13;9340:53;9386:6;9381:3;9374:4;9366:6;9362:17;9340:53;:::i;:::-;-1:-1:-1;;;9415:16:1;;9440:39;;;-1:-1:-1;9506:2:1;9495:14;;9294:221;-1:-1:-1;9294:221:1:o;9728:488::-;-1:-1:-1;;;;;9997:15:1;;;9979:34;;10049:15;;10044:2;10029:18;;10022:43;10096:2;10081:18;;10074:34;;;10144:3;10139:2;10124:18;;10117:31;;;9922:4;;10165:45;;10190:19;;10182:6;10165:45;:::i;:::-;10157:53;9931:285;-1:-1:-1;;;;;;9931:285:1:o;10595:219::-;10744:2;10733:9;10726:21;10707:4;10764:44;10804:2;10793:9;10789:18;10781:6;10764:44;:::i;11996:411::-;12198:2;12180:21;;;12237:2;12217:18;;;12210:30;12276:34;12271:2;12256:18;;12249:62;-1:-1:-1;;;12342:2:1;12327:18;;12320:45;12397:3;12382:19;;12170:237::o;13880:410::-;14082:2;14064:21;;;14121:2;14101:18;;;14094:30;14160:34;14155:2;14140:18;;14133:62;-1:-1:-1;;;14226:2:1;14211:18;;14204:44;14280:3;14265:19;;14054:236::o;14991:402::-;15193:2;15175:21;;;15232:2;15212:18;;;15205:30;15271:34;15266:2;15251:18;;15244:62;-1:-1:-1;;;15337:2:1;15322:18;;15315:36;15383:3;15368:19;;15165:228::o;16750:275::-;16821:2;16815:9;16886:2;16867:13;;-1:-1:-1;;16863:27:1;16851:40;;-1:-1:-1;;;;;16906:34:1;;16942:22;;;16903:62;16900:2;;;16968:18;;:::i;:::-;17004:2;16997:22;16795:230;;-1:-1:-1;16795:230:1:o;17030:183::-;17090:4;-1:-1:-1;;;;;17115:6:1;17112:30;17109:2;;;17145:18;;:::i;:::-;-1:-1:-1;17190:1:1;17186:14;17202:4;17182:25;;17099:114::o;17218:128::-;17258:3;17289:1;17285:6;17282:1;17279:13;17276:2;;;17295:18;;:::i;:::-;-1:-1:-1;17331:9:1;;17266:80::o;17351:120::-;17391:1;17417;17407:2;;17422:18;;:::i;:::-;-1:-1:-1;17456:9:1;;17397:74::o;17476:125::-;17516:4;17544:1;17541;17538:8;17535:2;;;17549:18;;:::i;:::-;-1:-1:-1;17586:9:1;;17525:76::o;17606:258::-;17678:1;17688:113;17702:6;17699:1;17696:13;17688:113;;;17778:11;;;17772:18;17759:11;;;17752:39;17724:2;17717:10;17688:113;;;17819:6;17816:1;17813:13;17810:2;;;-1:-1:-1;;17854:1:1;17836:16;;17829:27;17659:205::o;17869:380::-;17948:1;17944:12;;;;17991;;;18012:2;;18066:4;18058:6;18054:17;18044:27;;18012:2;18119;18111:6;18108:14;18088:18;18085:38;18082:2;;;18165:10;18160:3;18156:20;18153:1;18146:31;18200:4;18197:1;18190:15;18228:4;18225:1;18218:15;18082:2;;17924:325;;;:::o;18254:135::-;18293:3;-1:-1:-1;;18314:17:1;;18311:2;;;18334:18;;:::i;:::-;-1:-1:-1;18381:1:1;18370:13;;18301:88::o;18394:112::-;18426:1;18452;18442:2;;18457:18;;:::i;:::-;-1:-1:-1;18491:9:1;;18432:74::o;18511:127::-;18572:10;18567:3;18563:20;18560:1;18553:31;18603:4;18600:1;18593:15;18627:4;18624:1;18617:15;18643:127;18704:10;18699:3;18695:20;18692:1;18685:31;18735:4;18732:1;18725:15;18759:4;18756:1;18749:15;18775:127;18836:10;18831:3;18827:20;18824:1;18817:31;18867:4;18864:1;18857:15;18891:4;18888:1;18881:15;18907:131;-1:-1:-1;;;;;;18981:32:1;;18971:43;;18961:2;;19028:1;19025;19018:12

Swarm Source

ipfs://23378368b02ecca0e9ecf0da7b27633675d8b7c614d80508ad874b5bd785ba05
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.