ETH Price: $3,180.63 (+1.47%)
Gas: 17 Gwei

Contract

0xd91bD457dE1E328a0547A21C7b623244557BeAD8
 

Overview

ETH Balance

0.125 ETH

Eth Value

$397.58 (@ $3,180.63/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Mint186106832023-11-20 4:41:35236 days ago1700455295IN
0xd91bD457...4557BeAD8
0.05 ETH0.00976343112.79121402
Mint186106322023-11-20 4:31:11236 days ago1700454671IN
0xd91bD457...4557BeAD8
0.05 ETH0.001982922.90728319
Freelist Mint183737052023-10-18 0:35:35269 days ago1697589335IN
0xd91bD457...4557BeAD8
0 ETH0.000615985.75247893
Freelist Mint183733852023-10-17 23:31:11270 days ago1697585471IN
0xd91bD457...4557BeAD8
0 ETH0.000648746.058369
Add To Free List183732962023-10-17 23:13:23270 days ago1697584403IN
0xd91bD457...4557BeAD8
0 ETH0.00030366.43415012
Freelist Mint183729482023-10-17 22:03:23270 days ago1697580203IN
0xd91bD457...4557BeAD8
0 ETH0.00024198.38778224
Freelist Mint183729412023-10-17 22:01:59270 days ago1697580119IN
0xd91bD457...4557BeAD8
0 ETH0.000205878.95094904
Freelist Mint183717122023-10-17 17:54:35270 days ago1697565275IN
0xd91bD457...4557BeAD8
0 ETH0.000810179.00371555
Add To Free List183716952023-10-17 17:51:11270 days ago1697565071IN
0xd91bD457...4557BeAD8
0 ETH0.000501110.61982257
Add To Free List183716922023-10-17 17:50:35270 days ago1697565035IN
0xd91bD457...4557BeAD8
0 ETH0.0004916110.41864723
Mint183716052023-10-17 17:32:59270 days ago1697563979IN
0xd91bD457...4557BeAD8
0.025 ETH0.0012742815.06231751
Freelist Mint183714102023-10-17 16:53:35270 days ago1697561615IN
0xd91bD457...4557BeAD8
0 ETH0.0013578412.68046053
Add To Free List183713232023-10-17 16:36:11270 days ago1697560571IN
0xd91bD457...4557BeAD8
0 ETH0.0005801212.29447477
Add To Free List183666362023-10-17 0:51:47270 days ago1697503907IN
0xd91bD457...4557BeAD8
0 ETH0.000276725.86461528
Owner Mint183666342023-10-17 0:51:23270 days ago1697503883IN
0xd91bD457...4557BeAD8
0 ETH0.000470875.66939085
Set Base URI178930332023-08-11 17:07:23337 days ago1691773643IN
0xd91bD457...4557BeAD8
0 ETH0.0009849422.68045343
Toggle Sale Stat...178803662023-08-09 22:37:11339 days ago1691620631IN
0xd91bD457...4557BeAD8
0 ETH0.000702715.06956464
Owner Mint178803412023-08-09 22:32:11339 days ago1691620331IN
0xd91bD457...4557BeAD8
0 ETH0.0015138218.22655342
0x66470de4178803262023-08-09 22:29:11339 days ago1691620151IN
 Create: Wolven
0 ETH0.0524914215.69148625

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Wolven

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-09
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)



pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @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 {AccessControl-_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) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

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

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

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


pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @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) external view returns (address);

    /**
     * @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) external view returns (uint256);
}

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

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

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

        assembly {
            result := store
        }

        return result;
    }
}

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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





pragma solidity ^0.8.0;



/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * 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, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

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

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @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 virtual override 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 override onlyRole(getRoleAdmin(role)) {
        _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 override onlyRole(getRoleAdmin(role)) {
        _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 revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        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}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    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 {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}





pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.0;



/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @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 virtual override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @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 virtual override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}


pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}





pragma solidity ^0.8.4;


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;

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

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

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

    /**
     * @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 = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = 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) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @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
    ) internal {
        _mint(to, quantity, _data, 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,
        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);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    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 {}

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



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;



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

    uint256 private _totalShares;
    uint256 private _totalReleased;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

pragma solidity ^0.8.13;

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

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

pragma solidity ^0.8.13;

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

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}


contract Wolven is ERC721A, ReentrancyGuard, Ownable, PaymentSplitter, DefaultOperatorFilterer {


    function setApprovalForAll(address operator, bool approved) public override(ERC721A)  onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override(ERC721A) onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override(ERC721A) onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override(ERC721A) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override(ERC721A)
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }


    // Minting Variables
    uint256 public mintPrice = 0.02 ether;
    uint public maxFreePurchase = 1;
    uint256 public maxSupply = 2222;


    address[] public _payees = [
        0x4e4CC29ab82cf8aa4EcD3578A26409E57793de4b,  // 
        0x20A4fE34a1fc050c78C757c16533642f4d760Ae0  // contract wallet

    ];
    uint256[] private _shares = [5, 95];

    // Sale Status
    bool public saleIsActive = false;

    // Metadata
    string _baseTokenURI = "ipfs://bafybeig2b34i4rvmzidloajjvxzhsz5tj5eqevvfxhkgk4oncavkek26ty/";


    // Events
    event SaleActivation(bool isActive);

    constructor() ERC721A("Wolven", "WOLVEN") PaymentSplitter(_payees, _shares) {
          freelist[0x4e4CC29ab82cf8aa4EcD3578A26409E57793de4b].exists = true;

    }

    function OnWhiteList(address walletaddr)
        public
        view
        returns (bool)
        {
            if (freelist[walletaddr].exists){
                return true;
            }
            else{
                return false;
            }
        }

    struct Freelistaddr {
        uint256 presalemints;
        bool exists;
    }
    mapping(address => Freelistaddr) public freelist;

   function addToFreeList (address[] memory newWalletaddr) public onlyOwner{
        for (uint256 i = 0; i<newWalletaddr.length;i++){
            freelist[newWalletaddr[i]].exists = true;
        }        
    }

    function freelistMint(uint256 numberOfTokens) public payable nonReentrant {
        require(freelist[msg.sender].exists == true, "This Wallet is not able mint for presale"); 
        require(numberOfTokens > 0 && totalSupply() + numberOfTokens <= maxSupply, "Purchase would exceed current max supply");
        require(freelist[msg.sender].presalemints + numberOfTokens <= maxFreePurchase,"This Wallet has already minted its reserve");
        freelist[msg.sender].presalemints += numberOfTokens;

        _safeMint(msg.sender, numberOfTokens);
    }

    // Minting


    function mint(uint256 _count) external payable nonReentrant {
        require(saleIsActive, "SALE_INACTIVE");

        require(
            totalSupply() + _count <= maxSupply,
            "SOLD_OUT"
        );

        require(
            mintPrice * _count <= msg.value,
            "INCORRECT_ETHER_VALUE"
        );

            _safeMint(msg.sender, _count);
            
        }


    function toggleSaleStatus() external onlyOwner {
        saleIsActive = !saleIsActive;
        emit SaleActivation(saleIsActive);
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }


    // Payment
    function claim() external {
        release(payable(msg.sender));
    }

    function getWalletOfOwner(address owner) external view returns (uint256[] memory) {
    unchecked {
        uint256[] memory a = new uint256[](balanceOf(owner));
        uint256 end = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;
        for (uint256 i; i < end; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.burned) {
                continue;
            }
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                a[tokenIdsIdx++] = i;
            }
        }
        return a;
    }
    }

    function ownerMint(address _to, uint256 _count) external onlyOwner {

        require(
            totalSupply() + _count <= maxSupply,
            "SOLD_OUT"
        );
        _safeMint(_to, _count);
    }

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

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

   function tokenURI(uint256 tokenId) public view override returns (string memory){
        return string(abi.encodePacked(super.tokenURI(tokenId), ".json"));
        
    }

    function _startTokenId() internal view virtual override returns (uint256){
        return 1;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"SaleActivation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"walletaddr","type":"address"}],"name":"OnWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_payees","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"newWalletaddr","type":"address[]"}],"name":"addToFreeList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freelist","outputs":[{"internalType":"uint256","name":"presalemints","type":"uint256"},{"internalType":"bool","name":"exists","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getWalletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleStatus","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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

66470de4df82000060115560016012556108ae60135560c0604052734e4cc29ab82cf8aa4ecd3578a26409e57793de4b60809081527320a4fe34a1fc050c78c757c16533642f4d760ae060a0526200005c9060149060026200070b565b506040805180820190915260058152605f60208201526200008290601590600262000775565b506016805460ff1916905560408051608081019091526043808252620038d76020830139601790620000b5908262000874565b50348015620000c357600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb6600160148054806020026020016040519081016040528092919081815260200182805480156200013357602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000114575b505050505060158054806020026020016040519081016040528092919081815260200182805480156200018657602002820191906000526020600020905b81548152602001906001019080831162000171575b5050505050604051806040016040528060068152602001652bb7b63b32b760d11b815250604051806040016040528060068152602001652ba7a62b22a760d11b8152508160029081620001da919062000874565b506003620001e9828262000874565b506001600055505060016008556200020133620004cb565b8051825114620002735760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002c65760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200026a565b60005b825181101562000332576200031d838281518110620002ec57620002ec62000940565b602002602001015183838151811062000309576200030962000940565b60200260200101516200051d60201b60201c565b8062000329816200096c565b915050620002c9565b5050506daaeb6d7670e522a718067333cd4e3b156200047a578015620003c857604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620003a957600080fd5b505af1158015620003be573d6000803e3d6000fd5b505050506200047a565b6001600160a01b03821615620004195760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200038e565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200046057600080fd5b505af115801562000475573d6000803e3d6000fd5b505050505b5050734e4cc29ab82cf8aa4ecd3578a26409e57793de4b60005260186020527fa30cafc9b1fd333f37bc460b1d919cfac0b67f2c09c39c81910dc4ccd7203396805460ff19166001179055620009a4565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200058a5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200026a565b60008111620005dc5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200026a565b6001600160a01b0382166000908152600c602052604090205415620006585760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200026a565b600e8054600181019091557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0384169081179091556000908152600c60205260409020819055600a54620006c290829062000988565b600a55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b82805482825590600052602060002090810192821562000763579160200282015b828111156200076357825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200072c565b5062000771929150620007b8565b5090565b82805482825590600052602060002090810192821562000763579160200282015b8281111562000763578251829060ff1690559160200191906001019062000796565b5b80821115620007715760008155600101620007b9565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007fa57607f821691505b6020821081036200081b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200086f57600081815260208120601f850160051c810160208610156200084a5750805b601f850160051c820191505b818110156200086b5782815560010162000856565b5050505b505050565b81516001600160401b03811115620008905762000890620007cf565b620008a881620008a18454620007e5565b8462000821565b602080601f831160018114620008e05760008415620008c75750858301515b600019600386901b1c1916600185901b1785556200086b565b600085815260208120601f198616915b828110156200091157888601518255948401946001909101908401620008f0565b5085821015620009305787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820162000981576200098162000956565b5060010190565b808201808211156200099e576200099e62000956565b92915050565b612f2380620009b46000396000f3fe6080604052600436106102605760003560e01c80636f07a8b511610144578063b88d4fde116100b6578063d79779b21161007a578063d79779b2146107a7578063e33b7de3146107dd578063e985e9c5146107f2578063eb8d24441461083b578063f2fde38b14610855578063f4a0a5281461087557600080fd5b8063b88d4fde14610708578063c7d4815e14610728578063c87b56dd1461073b578063ce7c2ac21461075b578063d5abeb011461079157600080fd5b80638b83209b116101085780638b83209b1461064c5780638da5cb5b1461066c57806395d89b411461068a5780639852595c1461069f578063a0712d68146106d5578063a22cb465146106e857600080fd5b80636f07a8b51461059557806370a08231146105ab578063715018a6146105cb5780637227548b146105e057806377bf14111461062c57600080fd5b8063406072a9116101dd57806348b75044116101a157806348b75044146104dd5780634e71d92d146104fd57806355f804b314610512578063627fdeab146105325780636352211e1461055f5780636817c76c1461057f57600080fd5b8063406072a91461041557806341f434341461045b57806342842e0e1461047d57806344f5b5cb1461049d578063484b973c146104bd57600080fd5b806318160ddd1161022457806318160ddd1461037457806319165587146103a057806323b872dd146103c0578063283248be146103e05780633a98ef391461040057600080fd5b806301ffc9a7146102ae578063049c5c49146102e357806306fdde03146102fa578063081812fc1461031c578063095ea7b31461035457600080fd5b366102a9577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102ba57600080fd5b506102ce6102c9366004612716565b610895565b60405190151581526020015b60405180910390f35b3480156102ef57600080fd5b506102f86108e7565b005b34801561030657600080fd5b5061030f610967565b6040516102da9190612783565b34801561032857600080fd5b5061033c610337366004612796565b6109f9565b6040516001600160a01b0390911681526020016102da565b34801561036057600080fd5b506102f861036f3660046127c4565b610a3d565b34801561038057600080fd5b50610392600154600054036000190190565b6040519081526020016102da565b3480156103ac57600080fd5b506102f86103bb3660046127f0565b610b06565b3480156103cc57600080fd5b506102f86103db36600461280d565b610c37565b3480156103ec57600080fd5b5061033c6103fb366004612796565b610d10565b34801561040c57600080fd5b50600a54610392565b34801561042157600080fd5b5061039261043036600461284e565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b34801561046757600080fd5b5061033c6daaeb6d7670e522a718067333cd4e81565b34801561048957600080fd5b506102f861049836600461280d565b610d3a565b3480156104a957600080fd5b506102f86104b83660046128cd565b610e08565b3480156104c957600080fd5b506102f86104d83660046127c4565b610ea1565b3480156104e957600080fd5b506102f86104f836600461284e565b610f2d565b34801561050957600080fd5b506102f8611109565b34801561051e57600080fd5b506102f861052d3660046129d5565b611114565b34801561053e57600080fd5b5061055261054d3660046127f0565b61114a565b6040516102da9190612a1d565b34801561056b57600080fd5b5061033c61057a366004612796565b611272565b34801561058b57600080fd5b5061039260115481565b3480156105a157600080fd5b5061039260125481565b3480156105b757600080fd5b506103926105c63660046127f0565b611284565b3480156105d757600080fd5b506102f86112d2565b3480156105ec57600080fd5b506106176105fb3660046127f0565b6018602052600090815260409020805460019091015460ff1682565b604080519283529015156020830152016102da565b34801561063857600080fd5b506102ce6106473660046127f0565b611306565b34801561065857600080fd5b5061033c610667366004612796565b61133a565b34801561067857600080fd5b506009546001600160a01b031661033c565b34801561069657600080fd5b5061030f61136a565b3480156106ab57600080fd5b506103926106ba3660046127f0565b6001600160a01b03166000908152600d602052604090205490565b6102f86106e3366004612796565b611379565b3480156106f457600080fd5b506102f8610703366004612a6f565b6114d1565b34801561071457600080fd5b506102f8610723366004612a9d565b611595565b6102f8610736366004612796565b611671565b34801561074757600080fd5b5061030f610756366004612796565b611878565b34801561076757600080fd5b506103926107763660046127f0565b6001600160a01b03166000908152600c602052604090205490565b34801561079d57600080fd5b5061039260135481565b3480156107b357600080fd5b506103926107c23660046127f0565b6001600160a01b03166000908152600f602052604090205490565b3480156107e957600080fd5b50600b54610392565b3480156107fe57600080fd5b506102ce61080d36600461284e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561084757600080fd5b506016546102ce9060ff1681565b34801561086157600080fd5b506102f86108703660046127f0565b6118a9565b34801561088157600080fd5b506102f8610890366004612796565b611944565b60006001600160e01b031982166380ac58cd60e01b14806108c657506001600160e01b03198216635b5e139f60e01b145b806108e157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6009546001600160a01b0316331461091a5760405162461bcd60e51b815260040161091190612b1c565b60405180910390fd5b6016805460ff8082161560ff1990921682179092556040519116151581527f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f9060200160405180910390a1565b60606002805461097690612b51565b80601f01602080910402602001604051908101604052809291908181526020018280546109a290612b51565b80156109ef5780601f106109c4576101008083540402835291602001916109ef565b820191906000526020600020905b8154815290600101906020018083116109d257829003601f168201915b5050505050905090565b6000610a0482611973565b610a21576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15610af757604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acf9190612b8b565b610af757604051633b79c77360e21b81526001600160a01b0382166004820152602401610911565b610b0183836119ac565b505050565b6001600160a01b0381166000908152600c6020526040902054610b3b5760405162461bcd60e51b815260040161091190612ba8565b6000610b46600b5490565b610b509047612c04565b90506000610b7d8383610b78866001600160a01b03166000908152600d602052604090205490565b611a34565b905080600003610b9f5760405162461bcd60e51b815260040161091190612c17565b6001600160a01b0383166000908152600d602052604081208054839290610bc7908490612c04565b9250508190555080600b6000828254610be09190612c04565b90915550610bf090508382611a7c565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b826daaeb6d7670e522a718067333cd4e3b15610cff57336001600160a01b03821603610c6d57610c68848484611b95565b610d0a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce09190612b8b565b610cff57604051633b79c77360e21b8152336004820152602401610911565b610d0a848484611b95565b50505050565b60148181548110610d2057600080fd5b6000918252602090912001546001600160a01b0316905081565b826daaeb6d7670e522a718067333cd4e3b15610dfd57336001600160a01b03821603610d6b57610c68848484611ba0565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610dba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dde9190612b8b565b610dfd57604051633b79c77360e21b8152336004820152602401610911565b610d0a848484611ba0565b6009546001600160a01b03163314610e325760405162461bcd60e51b815260040161091190612b1c565b60005b8151811015610e9d57600160186000848481518110610e5657610e56612c62565b6020908102919091018101516001600160a01b03168252810191909152604001600020600101805460ff191691151591909117905580610e9581612c78565b915050610e35565b5050565b6009546001600160a01b03163314610ecb5760405162461bcd60e51b815260040161091190612b1c565b60135481610ee0600154600054036000190190565b610eea9190612c04565b1115610f235760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b6044820152606401610911565b610e9d8282611bbb565b6001600160a01b0381166000908152600c6020526040902054610f625760405162461bcd60e51b815260040161091190612ba8565b6001600160a01b0382166000908152600f60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610fbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe39190612c91565b610fed9190612c04565b905060006110268383610b7887876001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b9050806000036110485760405162461bcd60e51b815260040161091190612c17565b6001600160a01b0380851660009081526010602090815260408083209387168352929052908120805483929061107f908490612c04565b90915550506001600160a01b0384166000908152600f6020526040812080548392906110ac908490612c04565b909155506110bd9050848483611bd5565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b61111233610b06565b565b6009546001600160a01b0316331461113e5760405162461bcd60e51b815260040161091190612b1c565b6017610e9d8282612cf8565b6060600061115783611284565b6001600160401b0381111561116e5761116e612887565b604051908082528060200260200182016040528015611197578160200160208202803683370190505b506000805491925080805b8381101561126757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290611209575061125f565b80516001600160a01b03161561121e57805192505b876001600160a01b0316836001600160a01b03160361125d578186858060010196508151811061125057611250612c62565b6020026020010181815250505b505b6001016111a2565b509295945050505050565b600061127d82611c27565b5192915050565b60006001600160a01b0382166112ad576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b031633146112fc5760405162461bcd60e51b815260040161091190612b1c565b6111126000611d4e565b6001600160a01b03811660009081526018602052604081206001015460ff161561133257506001919050565b506000919050565b6000600e828154811061134f5761134f612c62565b6000918252602090912001546001600160a01b031692915050565b60606003805461097690612b51565b6002600854036113cb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610911565b600260085560165460ff166114125760405162461bcd60e51b815260206004820152600d60248201526c53414c455f494e41435449564560981b6044820152606401610911565b60135481611427600154600054036000190190565b6114319190612c04565b111561146a5760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b6044820152606401610911565b34816011546114799190612db7565b11156114bf5760405162461bcd60e51b8152602060048201526015602482015274494e434f52524543545f45544845525f56414c554560581b6044820152606401610911565b6114c93382611bbb565b506001600855565b816daaeb6d7670e522a718067333cd4e3b1561158b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561153f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115639190612b8b565b61158b57604051633b79c77360e21b81526001600160a01b0382166004820152602401610911565b610b018383611da0565b836daaeb6d7670e522a718067333cd4e3b1561165e57336001600160a01b038216036115cc576115c785858585611e35565b61166a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561161b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163f9190612b8b565b61165e57604051633b79c77360e21b8152336004820152602401610911565b61166a85858585611e35565b5050505050565b6002600854036116c35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610911565b600260085533600090815260186020526040902060019081015460ff161515146117405760405162461bcd60e51b815260206004820152602860248201527f546869732057616c6c6574206973206e6f742061626c65206d696e7420666f726044820152672070726573616c6560c01b6064820152608401610911565b60008111801561176d575060135481611760600154600054036000190190565b61176a9190612c04565b11155b6117ca5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c64206578636565642063757272656e74206d616044820152677820737570706c7960c01b6064820152608401610911565b601254336000908152601860205260409020546117e8908390612c04565b11156118495760405162461bcd60e51b815260206004820152602a60248201527f546869732057616c6c65742068617320616c7265616479206d696e74656420696044820152697473207265736572766560b01b6064820152608401610911565b3360009081526018602052604081208054839290611868908490612c04565b909155506114c990503382611bbb565b606061188382611e80565b6040516020016118939190612dce565b6040516020818303038152906040529050919050565b6009546001600160a01b031633146118d35760405162461bcd60e51b815260040161091190612b1c565b6001600160a01b0381166119385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610911565b61194181611d4e565b50565b6009546001600160a01b0316331461196e5760405162461bcd60e51b815260040161091190612b1c565b601155565b600081600111158015611987575060005482105b80156108e1575050600090815260046020526040902054600160e01b900460ff161590565b60006119b782611272565b9050806001600160a01b0316836001600160a01b0316036119eb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590611a0b5750611a09813361080d565b155b15611a29576040516367d9dca160e11b815260040160405180910390fd5b610b01838383611f03565b600a546001600160a01b0384166000908152600c602052604081205490918391611a5e9086612db7565b611a689190612e0d565b611a729190612e21565b90505b9392505050565b80471015611acc5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610911565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b19576040519150601f19603f3d011682016040523d82523d6000602084013e611b1e565b606091505b5050905080610b015760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610911565b610b01838383611f5f565b610b0183838360405180602001604052806000815250611595565b610e9d82826040518060200160405280600081525061214a565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b01908490612157565b60408051606081018252600080825260208201819052918101919091528180600111158015611c57575060005481105b15611d3557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d335780516001600160a01b031615611cca579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d2e579392505050565b611cca565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611dc95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611e40848484611f5f565b6001600160a01b0383163b15158015611e625750611e6084848484612229565b155b15610d0a576040516368d2bf6b60e11b815260040160405180910390fd5b6060611e8b82611973565b611ea857604051630a14c4b560e41b815260040160405180910390fd5b6000611eb2612315565b90508051600003611ed25760405180602001604052806000815250611a75565b80611edc84612324565b604051602001611eed929190612e34565b6040516020818303038152906040529392505050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f6a82611c27565b9050836001600160a01b031681600001516001600160a01b031614611fa15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611fbf5750611fbf853361080d565b80611fda575033611fcf846109f9565b6001600160a01b0316145b905080611ffa57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661202157604051633a954ecd60e21b815260040160405180910390fd5b61202d60008487611f03565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661210157600054821461210157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461166a565b610b018383836001612424565b60006121ac826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125f59092919063ffffffff16565b805190915015610b0157808060200190518101906121ca9190612b8b565b610b015760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610911565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061225e903390899088908890600401612e63565b6020604051808303816000875af1925050508015612299575060408051601f3d908101601f1916820190925261229691810190612ea0565b60015b6122f7573d8080156122c7576040519150601f19603f3d011682016040523d82523d6000602084013e6122cc565b606091505b5080516000036122ef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606017805461097690612b51565b60608160000361234b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612375578061235f81612c78565b915061236e9050600a83612e0d565b915061234f565b6000816001600160401b0381111561238f5761238f612887565b6040519080825280601f01601f1916602001820160405280156123b9576020820181803683370190505b5090505b841561230d576123ce600183612e21565b91506123db600a86612ebd565b6123e6906030612c04565b60f81b8183815181106123fb576123fb612c62565b60200101906001600160f81b031916908160001a90535061241d600a86612e0d565b94506123bd565b6000546001600160a01b03851661244d57604051622e076360e81b815260040160405180910390fd5b8360000361246e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561251f57506001600160a01b0387163b15155b156125a7575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125706000888480600101955088612229565b61258d576040516368d2bf6b60e11b815260040160405180910390fd5b8082036125255782600054146125a257600080fd5b6125ec565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036125a8575b5060005561166a565b6060611a72848460008585843b61264e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610911565b600080866001600160a01b0316858760405161266a9190612ed1565b60006040518083038185875af1925050503d80600081146126a7576040519150601f19603f3d011682016040523d82523d6000602084013e6126ac565b606091505b50915091506126bc8282866126c7565b979650505050505050565b606083156126d6575081611a75565b8251156126e65782518084602001fd5b8160405162461bcd60e51b81526004016109119190612783565b6001600160e01b03198116811461194157600080fd5b60006020828403121561272857600080fd5b8135611a7581612700565b60005b8381101561274e578181015183820152602001612736565b50506000910152565b6000815180845261276f816020860160208601612733565b601f01601f19169290920160200192915050565b602081526000611a756020830184612757565b6000602082840312156127a857600080fd5b5035919050565b6001600160a01b038116811461194157600080fd5b600080604083850312156127d757600080fd5b82356127e2816127af565b946020939093013593505050565b60006020828403121561280257600080fd5b8135611a75816127af565b60008060006060848603121561282257600080fd5b833561282d816127af565b9250602084013561283d816127af565b929592945050506040919091013590565b6000806040838503121561286157600080fd5b823561286c816127af565b9150602083013561287c816127af565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156128c5576128c5612887565b604052919050565b600060208083850312156128e057600080fd5b82356001600160401b03808211156128f757600080fd5b818501915085601f83011261290b57600080fd5b81358181111561291d5761291d612887565b8060051b915061292e84830161289d565b818152918301840191848101908884111561294857600080fd5b938501935b838510156129725784359250612962836127af565b828252938501939085019061294d565b98975050505050505050565b60006001600160401b0383111561299757612997612887565b6129aa601f8401601f191660200161289d565b90508281528383830111156129be57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156129e757600080fd5b81356001600160401b038111156129fd57600080fd5b8201601f81018413612a0e57600080fd5b61230d8482356020840161297e565b6020808252825182820181905260009190848201906040850190845b81811015612a5557835183529284019291840191600101612a39565b50909695505050505050565b801515811461194157600080fd5b60008060408385031215612a8257600080fd5b8235612a8d816127af565b9150602083013561287c81612a61565b60008060008060808587031215612ab357600080fd5b8435612abe816127af565b93506020850135612ace816127af565b92506040850135915060608501356001600160401b03811115612af057600080fd5b8501601f81018713612b0157600080fd5b612b108782356020840161297e565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612b6557607f821691505b602082108103612b8557634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612b9d57600080fd5b8151611a7581612a61565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108e1576108e1612bee565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060018201612c8a57612c8a612bee565b5060010190565b600060208284031215612ca357600080fd5b5051919050565b601f821115610b0157600081815260208120601f850160051c81016020861015612cd15750805b601f850160051c820191505b81811015612cf057828155600101612cdd565b505050505050565b81516001600160401b03811115612d1157612d11612887565b612d2581612d1f8454612b51565b84612caa565b602080601f831160018114612d5a5760008415612d425750858301515b600019600386901b1c1916600185901b178555612cf0565b600085815260208120601f198616915b82811015612d8957888601518255948401946001909101908401612d6a565b5085821015612da75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176108e1576108e1612bee565b60008251612de0818460208701612733565b64173539b7b760d91b920191825250600501919050565b634e487b7160e01b600052601260045260246000fd5b600082612e1c57612e1c612df7565b500490565b818103818111156108e1576108e1612bee565b60008351612e46818460208801612733565b835190830190612e5a818360208801612733565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e9690830184612757565b9695505050505050565b600060208284031215612eb257600080fd5b8151611a7581612700565b600082612ecc57612ecc612df7565b500690565b60008251612ee3818460208701612733565b919091019291505056fea2646970667358221220b8923d72491957122c3aa9f5e942c4f9a0fdfbd277dfa5306f6c21f40f2862df64736f6c63430008110033697066733a2f2f626166796265696732623334693472766d7a69646c6f616a6a76787a68737a35746a3565716576766678686b676b346f6e6361766b656b323674792f

Deployed Bytecode

0x6080604052600436106102605760003560e01c80636f07a8b511610144578063b88d4fde116100b6578063d79779b21161007a578063d79779b2146107a7578063e33b7de3146107dd578063e985e9c5146107f2578063eb8d24441461083b578063f2fde38b14610855578063f4a0a5281461087557600080fd5b8063b88d4fde14610708578063c7d4815e14610728578063c87b56dd1461073b578063ce7c2ac21461075b578063d5abeb011461079157600080fd5b80638b83209b116101085780638b83209b1461064c5780638da5cb5b1461066c57806395d89b411461068a5780639852595c1461069f578063a0712d68146106d5578063a22cb465146106e857600080fd5b80636f07a8b51461059557806370a08231146105ab578063715018a6146105cb5780637227548b146105e057806377bf14111461062c57600080fd5b8063406072a9116101dd57806348b75044116101a157806348b75044146104dd5780634e71d92d146104fd57806355f804b314610512578063627fdeab146105325780636352211e1461055f5780636817c76c1461057f57600080fd5b8063406072a91461041557806341f434341461045b57806342842e0e1461047d57806344f5b5cb1461049d578063484b973c146104bd57600080fd5b806318160ddd1161022457806318160ddd1461037457806319165587146103a057806323b872dd146103c0578063283248be146103e05780633a98ef391461040057600080fd5b806301ffc9a7146102ae578063049c5c49146102e357806306fdde03146102fa578063081812fc1461031c578063095ea7b31461035457600080fd5b366102a9577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102ba57600080fd5b506102ce6102c9366004612716565b610895565b60405190151581526020015b60405180910390f35b3480156102ef57600080fd5b506102f86108e7565b005b34801561030657600080fd5b5061030f610967565b6040516102da9190612783565b34801561032857600080fd5b5061033c610337366004612796565b6109f9565b6040516001600160a01b0390911681526020016102da565b34801561036057600080fd5b506102f861036f3660046127c4565b610a3d565b34801561038057600080fd5b50610392600154600054036000190190565b6040519081526020016102da565b3480156103ac57600080fd5b506102f86103bb3660046127f0565b610b06565b3480156103cc57600080fd5b506102f86103db36600461280d565b610c37565b3480156103ec57600080fd5b5061033c6103fb366004612796565b610d10565b34801561040c57600080fd5b50600a54610392565b34801561042157600080fd5b5061039261043036600461284e565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b34801561046757600080fd5b5061033c6daaeb6d7670e522a718067333cd4e81565b34801561048957600080fd5b506102f861049836600461280d565b610d3a565b3480156104a957600080fd5b506102f86104b83660046128cd565b610e08565b3480156104c957600080fd5b506102f86104d83660046127c4565b610ea1565b3480156104e957600080fd5b506102f86104f836600461284e565b610f2d565b34801561050957600080fd5b506102f8611109565b34801561051e57600080fd5b506102f861052d3660046129d5565b611114565b34801561053e57600080fd5b5061055261054d3660046127f0565b61114a565b6040516102da9190612a1d565b34801561056b57600080fd5b5061033c61057a366004612796565b611272565b34801561058b57600080fd5b5061039260115481565b3480156105a157600080fd5b5061039260125481565b3480156105b757600080fd5b506103926105c63660046127f0565b611284565b3480156105d757600080fd5b506102f86112d2565b3480156105ec57600080fd5b506106176105fb3660046127f0565b6018602052600090815260409020805460019091015460ff1682565b604080519283529015156020830152016102da565b34801561063857600080fd5b506102ce6106473660046127f0565b611306565b34801561065857600080fd5b5061033c610667366004612796565b61133a565b34801561067857600080fd5b506009546001600160a01b031661033c565b34801561069657600080fd5b5061030f61136a565b3480156106ab57600080fd5b506103926106ba3660046127f0565b6001600160a01b03166000908152600d602052604090205490565b6102f86106e3366004612796565b611379565b3480156106f457600080fd5b506102f8610703366004612a6f565b6114d1565b34801561071457600080fd5b506102f8610723366004612a9d565b611595565b6102f8610736366004612796565b611671565b34801561074757600080fd5b5061030f610756366004612796565b611878565b34801561076757600080fd5b506103926107763660046127f0565b6001600160a01b03166000908152600c602052604090205490565b34801561079d57600080fd5b5061039260135481565b3480156107b357600080fd5b506103926107c23660046127f0565b6001600160a01b03166000908152600f602052604090205490565b3480156107e957600080fd5b50600b54610392565b3480156107fe57600080fd5b506102ce61080d36600461284e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561084757600080fd5b506016546102ce9060ff1681565b34801561086157600080fd5b506102f86108703660046127f0565b6118a9565b34801561088157600080fd5b506102f8610890366004612796565b611944565b60006001600160e01b031982166380ac58cd60e01b14806108c657506001600160e01b03198216635b5e139f60e01b145b806108e157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6009546001600160a01b0316331461091a5760405162461bcd60e51b815260040161091190612b1c565b60405180910390fd5b6016805460ff8082161560ff1990921682179092556040519116151581527f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f9060200160405180910390a1565b60606002805461097690612b51565b80601f01602080910402602001604051908101604052809291908181526020018280546109a290612b51565b80156109ef5780601f106109c4576101008083540402835291602001916109ef565b820191906000526020600020905b8154815290600101906020018083116109d257829003601f168201915b5050505050905090565b6000610a0482611973565b610a21576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15610af757604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acf9190612b8b565b610af757604051633b79c77360e21b81526001600160a01b0382166004820152602401610911565b610b0183836119ac565b505050565b6001600160a01b0381166000908152600c6020526040902054610b3b5760405162461bcd60e51b815260040161091190612ba8565b6000610b46600b5490565b610b509047612c04565b90506000610b7d8383610b78866001600160a01b03166000908152600d602052604090205490565b611a34565b905080600003610b9f5760405162461bcd60e51b815260040161091190612c17565b6001600160a01b0383166000908152600d602052604081208054839290610bc7908490612c04565b9250508190555080600b6000828254610be09190612c04565b90915550610bf090508382611a7c565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b826daaeb6d7670e522a718067333cd4e3b15610cff57336001600160a01b03821603610c6d57610c68848484611b95565b610d0a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce09190612b8b565b610cff57604051633b79c77360e21b8152336004820152602401610911565b610d0a848484611b95565b50505050565b60148181548110610d2057600080fd5b6000918252602090912001546001600160a01b0316905081565b826daaeb6d7670e522a718067333cd4e3b15610dfd57336001600160a01b03821603610d6b57610c68848484611ba0565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610dba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dde9190612b8b565b610dfd57604051633b79c77360e21b8152336004820152602401610911565b610d0a848484611ba0565b6009546001600160a01b03163314610e325760405162461bcd60e51b815260040161091190612b1c565b60005b8151811015610e9d57600160186000848481518110610e5657610e56612c62565b6020908102919091018101516001600160a01b03168252810191909152604001600020600101805460ff191691151591909117905580610e9581612c78565b915050610e35565b5050565b6009546001600160a01b03163314610ecb5760405162461bcd60e51b815260040161091190612b1c565b60135481610ee0600154600054036000190190565b610eea9190612c04565b1115610f235760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b6044820152606401610911565b610e9d8282611bbb565b6001600160a01b0381166000908152600c6020526040902054610f625760405162461bcd60e51b815260040161091190612ba8565b6001600160a01b0382166000908152600f60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610fbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe39190612c91565b610fed9190612c04565b905060006110268383610b7887876001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b9050806000036110485760405162461bcd60e51b815260040161091190612c17565b6001600160a01b0380851660009081526010602090815260408083209387168352929052908120805483929061107f908490612c04565b90915550506001600160a01b0384166000908152600f6020526040812080548392906110ac908490612c04565b909155506110bd9050848483611bd5565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b61111233610b06565b565b6009546001600160a01b0316331461113e5760405162461bcd60e51b815260040161091190612b1c565b6017610e9d8282612cf8565b6060600061115783611284565b6001600160401b0381111561116e5761116e612887565b604051908082528060200260200182016040528015611197578160200160208202803683370190505b506000805491925080805b8381101561126757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290611209575061125f565b80516001600160a01b03161561121e57805192505b876001600160a01b0316836001600160a01b03160361125d578186858060010196508151811061125057611250612c62565b6020026020010181815250505b505b6001016111a2565b509295945050505050565b600061127d82611c27565b5192915050565b60006001600160a01b0382166112ad576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b031633146112fc5760405162461bcd60e51b815260040161091190612b1c565b6111126000611d4e565b6001600160a01b03811660009081526018602052604081206001015460ff161561133257506001919050565b506000919050565b6000600e828154811061134f5761134f612c62565b6000918252602090912001546001600160a01b031692915050565b60606003805461097690612b51565b6002600854036113cb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610911565b600260085560165460ff166114125760405162461bcd60e51b815260206004820152600d60248201526c53414c455f494e41435449564560981b6044820152606401610911565b60135481611427600154600054036000190190565b6114319190612c04565b111561146a5760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b6044820152606401610911565b34816011546114799190612db7565b11156114bf5760405162461bcd60e51b8152602060048201526015602482015274494e434f52524543545f45544845525f56414c554560581b6044820152606401610911565b6114c93382611bbb565b506001600855565b816daaeb6d7670e522a718067333cd4e3b1561158b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561153f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115639190612b8b565b61158b57604051633b79c77360e21b81526001600160a01b0382166004820152602401610911565b610b018383611da0565b836daaeb6d7670e522a718067333cd4e3b1561165e57336001600160a01b038216036115cc576115c785858585611e35565b61166a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561161b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163f9190612b8b565b61165e57604051633b79c77360e21b8152336004820152602401610911565b61166a85858585611e35565b5050505050565b6002600854036116c35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610911565b600260085533600090815260186020526040902060019081015460ff161515146117405760405162461bcd60e51b815260206004820152602860248201527f546869732057616c6c6574206973206e6f742061626c65206d696e7420666f726044820152672070726573616c6560c01b6064820152608401610911565b60008111801561176d575060135481611760600154600054036000190190565b61176a9190612c04565b11155b6117ca5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c64206578636565642063757272656e74206d616044820152677820737570706c7960c01b6064820152608401610911565b601254336000908152601860205260409020546117e8908390612c04565b11156118495760405162461bcd60e51b815260206004820152602a60248201527f546869732057616c6c65742068617320616c7265616479206d696e74656420696044820152697473207265736572766560b01b6064820152608401610911565b3360009081526018602052604081208054839290611868908490612c04565b909155506114c990503382611bbb565b606061188382611e80565b6040516020016118939190612dce565b6040516020818303038152906040529050919050565b6009546001600160a01b031633146118d35760405162461bcd60e51b815260040161091190612b1c565b6001600160a01b0381166119385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610911565b61194181611d4e565b50565b6009546001600160a01b0316331461196e5760405162461bcd60e51b815260040161091190612b1c565b601155565b600081600111158015611987575060005482105b80156108e1575050600090815260046020526040902054600160e01b900460ff161590565b60006119b782611272565b9050806001600160a01b0316836001600160a01b0316036119eb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590611a0b5750611a09813361080d565b155b15611a29576040516367d9dca160e11b815260040160405180910390fd5b610b01838383611f03565b600a546001600160a01b0384166000908152600c602052604081205490918391611a5e9086612db7565b611a689190612e0d565b611a729190612e21565b90505b9392505050565b80471015611acc5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610911565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b19576040519150601f19603f3d011682016040523d82523d6000602084013e611b1e565b606091505b5050905080610b015760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610911565b610b01838383611f5f565b610b0183838360405180602001604052806000815250611595565b610e9d82826040518060200160405280600081525061214a565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610b01908490612157565b60408051606081018252600080825260208201819052918101919091528180600111158015611c57575060005481105b15611d3557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d335780516001600160a01b031615611cca579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d2e579392505050565b611cca565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611dc95760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611e40848484611f5f565b6001600160a01b0383163b15158015611e625750611e6084848484612229565b155b15610d0a576040516368d2bf6b60e11b815260040160405180910390fd5b6060611e8b82611973565b611ea857604051630a14c4b560e41b815260040160405180910390fd5b6000611eb2612315565b90508051600003611ed25760405180602001604052806000815250611a75565b80611edc84612324565b604051602001611eed929190612e34565b6040516020818303038152906040529392505050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f6a82611c27565b9050836001600160a01b031681600001516001600160a01b031614611fa15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611fbf5750611fbf853361080d565b80611fda575033611fcf846109f9565b6001600160a01b0316145b905080611ffa57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661202157604051633a954ecd60e21b815260040160405180910390fd5b61202d60008487611f03565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661210157600054821461210157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461166a565b610b018383836001612424565b60006121ac826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125f59092919063ffffffff16565b805190915015610b0157808060200190518101906121ca9190612b8b565b610b015760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610911565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061225e903390899088908890600401612e63565b6020604051808303816000875af1925050508015612299575060408051601f3d908101601f1916820190925261229691810190612ea0565b60015b6122f7573d8080156122c7576040519150601f19603f3d011682016040523d82523d6000602084013e6122cc565b606091505b5080516000036122ef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606017805461097690612b51565b60608160000361234b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612375578061235f81612c78565b915061236e9050600a83612e0d565b915061234f565b6000816001600160401b0381111561238f5761238f612887565b6040519080825280601f01601f1916602001820160405280156123b9576020820181803683370190505b5090505b841561230d576123ce600183612e21565b91506123db600a86612ebd565b6123e6906030612c04565b60f81b8183815181106123fb576123fb612c62565b60200101906001600160f81b031916908160001a90535061241d600a86612e0d565b94506123bd565b6000546001600160a01b03851661244d57604051622e076360e81b815260040160405180910390fd5b8360000361246e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561251f57506001600160a01b0387163b15155b156125a7575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125706000888480600101955088612229565b61258d576040516368d2bf6b60e11b815260040160405180910390fd5b8082036125255782600054146125a257600080fd5b6125ec565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036125a8575b5060005561166a565b6060611a72848460008585843b61264e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610911565b600080866001600160a01b0316858760405161266a9190612ed1565b60006040518083038185875af1925050503d80600081146126a7576040519150601f19603f3d011682016040523d82523d6000602084013e6126ac565b606091505b50915091506126bc8282866126c7565b979650505050505050565b606083156126d6575081611a75565b8251156126e65782518084602001fd5b8160405162461bcd60e51b81526004016109119190612783565b6001600160e01b03198116811461194157600080fd5b60006020828403121561272857600080fd5b8135611a7581612700565b60005b8381101561274e578181015183820152602001612736565b50506000910152565b6000815180845261276f816020860160208601612733565b601f01601f19169290920160200192915050565b602081526000611a756020830184612757565b6000602082840312156127a857600080fd5b5035919050565b6001600160a01b038116811461194157600080fd5b600080604083850312156127d757600080fd5b82356127e2816127af565b946020939093013593505050565b60006020828403121561280257600080fd5b8135611a75816127af565b60008060006060848603121561282257600080fd5b833561282d816127af565b9250602084013561283d816127af565b929592945050506040919091013590565b6000806040838503121561286157600080fd5b823561286c816127af565b9150602083013561287c816127af565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156128c5576128c5612887565b604052919050565b600060208083850312156128e057600080fd5b82356001600160401b03808211156128f757600080fd5b818501915085601f83011261290b57600080fd5b81358181111561291d5761291d612887565b8060051b915061292e84830161289d565b818152918301840191848101908884111561294857600080fd5b938501935b838510156129725784359250612962836127af565b828252938501939085019061294d565b98975050505050505050565b60006001600160401b0383111561299757612997612887565b6129aa601f8401601f191660200161289d565b90508281528383830111156129be57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156129e757600080fd5b81356001600160401b038111156129fd57600080fd5b8201601f81018413612a0e57600080fd5b61230d8482356020840161297e565b6020808252825182820181905260009190848201906040850190845b81811015612a5557835183529284019291840191600101612a39565b50909695505050505050565b801515811461194157600080fd5b60008060408385031215612a8257600080fd5b8235612a8d816127af565b9150602083013561287c81612a61565b60008060008060808587031215612ab357600080fd5b8435612abe816127af565b93506020850135612ace816127af565b92506040850135915060608501356001600160401b03811115612af057600080fd5b8501601f81018713612b0157600080fd5b612b108782356020840161297e565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612b6557607f821691505b602082108103612b8557634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612b9d57600080fd5b8151611a7581612a61565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108e1576108e1612bee565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060018201612c8a57612c8a612bee565b5060010190565b600060208284031215612ca357600080fd5b5051919050565b601f821115610b0157600081815260208120601f850160051c81016020861015612cd15750805b601f850160051c820191505b81811015612cf057828155600101612cdd565b505050505050565b81516001600160401b03811115612d1157612d11612887565b612d2581612d1f8454612b51565b84612caa565b602080601f831160018114612d5a5760008415612d425750858301515b600019600386901b1c1916600185901b178555612cf0565b600085815260208120601f198616915b82811015612d8957888601518255948401946001909101908401612d6a565b5085821015612da75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176108e1576108e1612bee565b60008251612de0818460208701612733565b64173539b7b760d91b920191825250600501919050565b634e487b7160e01b600052601260045260246000fd5b600082612e1c57612e1c612df7565b500490565b818103818111156108e1576108e1612bee565b60008351612e46818460208801612733565b835190830190612e5a818360208801612733565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e9690830184612757565b9695505050505050565b600060208284031215612eb257600080fd5b8151611a7581612700565b600082612ecc57612ecc612df7565b500690565b60008251612ee3818460208701612733565b919091019291505056fea2646970667358221220b8923d72491957122c3aa9f5e942c4f9a0fdfbd277dfa5306f6c21f40f2862df64736f6c63430008110033

Deployed Bytecode Sourcemap

92592:5329:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82640:40;33209:10;82640:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;82670:9:0;270:2:1;255:18;;248:34;161:18;82640:40:0;;;;;;;92592:5329;;;;;55167:305;;;;;;;;;;-1:-1:-1;55167:305:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;55167:305:0;;;;;;;;96103:138;;;;;;;;;;;;;:::i;:::-;;58280:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;59791:204::-;;;;;;;;;;-1:-1:-1;59791:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1976:32:1;;;1958:51;;1946:2;1931:18;59791:204:0;1812:203:1;92892:166:0;;;;;;;;;;-1:-1:-1;92892:166:0;;;;;:::i;:::-;;:::i;54416:303::-;;;;;;;;;;;;97905:1;54670:12;54460:7;54654:13;:28;-1:-1:-1;;54654:46:0;;54416:303;;;;2622:25:1;;;2610:2;2595:18;54416:303:0;2476:177:1;84426:566:0;;;;;;;;;;-1:-1:-1;84426:566:0;;;;;:::i;:::-;;:::i;93066:172::-;;;;;;;;;;-1:-1:-1;93066:172:0;;;;;:::i;:::-;;:::i;93831:167::-;;;;;;;;;;-1:-1:-1;93831:167:0;;;;;:::i;:::-;;:::i;82771:91::-;;;;;;;;;;-1:-1:-1;82842:12:0;;82771:91;;83900:135;;;;;;;;;;-1:-1:-1;83900:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;83997:21:0;;;83970:7;83997:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;83900:135;89867:143;;;;;;;;;;;;89967:42;89867:143;;93246:180;;;;;;;;;;-1:-1:-1;93246:180:0;;;;;:::i;:::-;;:::i;94886:212::-;;;;;;;;;;-1:-1:-1;94886:212:0;;;;;:::i;:::-;;:::i;97178:214::-;;;;;;;;;;-1:-1:-1;97178:214:0;;;;;:::i;:::-;;:::i;85260:641::-;;;;;;;;;;-1:-1:-1;85260:641:0;;;;;:::i;:::-;;:::i;96377:73::-;;;;;;;;;;;;;:::i;97400:104::-;;;;;;;;;;-1:-1:-1;97400:104:0;;;;;:::i;:::-;;:::i;96458:712::-;;;;;;;;;;-1:-1:-1;96458:712:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58088:125::-;;;;;;;;;;-1:-1:-1;58088:125:0;;;;;:::i;:::-;;:::i;93707:37::-;;;;;;;;;;;;;;;;93751:31;;;;;;;;;;;;;;;;55536:206;;;;;;;;;;-1:-1:-1;55536:206:0;;;;;:::i;:::-;;:::i;45290:103::-;;;;;;;;;;;;;:::i;94830:48::-;;;;;;;;;;-1:-1:-1;94830:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;7390:25:1;;;7458:14;;7451:22;7446:2;7431:18;;7424:50;7363:18;94830:48:0;7222:258:1;94462:273:0;;;;;;;;;;-1:-1:-1;94462:273:0;;;;;:::i;:::-;;:::i;84126:100::-;;;;;;;;;;-1:-1:-1;84126:100:0;;;;;:::i;:::-;;:::i;44639:87::-;;;;;;;;;;-1:-1:-1;44712:6:0;;-1:-1:-1;;;;;44712:6:0;44639:87;;58449:104;;;;;;;;;;;;;:::i;83622:109::-;;;;;;;;;;-1:-1:-1;83622:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;83705:18:0;83678:7;83705:18;;;:9;:18;;;;;;;83622:109;95691:402;;;;;;:::i;:::-;;:::i;92698:186::-;;;;;;;;;;-1:-1:-1;92698:186:0;;;;;:::i;:::-;;:::i;93434:237::-;;;;;;;;;;-1:-1:-1;93434:237:0;;;;;:::i;:::-;;:::i;95106:557::-;;;;;;:::i;:::-;;:::i;97633:173::-;;;;;;;;;;-1:-1:-1;97633:173:0;;;;;:::i;:::-;;:::i;83418:105::-;;;;;;;;;;-1:-1:-1;83418:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;83499:16:0;83472:7;83499:16;;;:7;:16;;;;;;;83418:105;93789:31;;;;;;;;;;;;;;;;83208:119;;;;;;;;;;-1:-1:-1;83208:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;83293:26:0;83266:7;83293:26;;;:19;:26;;;;;;;83208:119;82956:95;;;;;;;;;;-1:-1:-1;83029:14:0;;82956:95;;60425:164;;;;;;;;;;-1:-1:-1;60425:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;60546:25:0;;;60522:4;60546:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;60425:164;94069:32;;;;;;;;;;-1:-1:-1;94069:32:0;;;;;;;;45548:201;;;;;;;;;;-1:-1:-1;45548:201:0;;;;;:::i;:::-;;:::i;96249:102::-;;;;;;;;;;-1:-1:-1;96249:102:0;;;;;:::i;:::-;;:::i;55167:305::-;55269:4;-1:-1:-1;;;;;;55306:40:0;;-1:-1:-1;;;55306:40:0;;:105;;-1:-1:-1;;;;;;;55363:48:0;;-1:-1:-1;;;55363:48:0;55306:105;:158;;;-1:-1:-1;;;;;;;;;;36189:40:0;;;55428:36;55286:178;55167:305;-1:-1:-1;;55167:305:0:o;96103:138::-;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;;;;;;;;;96177:12:::1;::::0;;::::1;::::0;;::::1;96176:13;-1:-1:-1::0;;96161:28:0;;::::1;::::0;::::1;::::0;;;96205::::1;::::0;96220:12;;844:14:1;837:22;819:41;;96205:28:0::1;::::0;807:2:1;792:18;96205:28:0::1;;;;;;;96103:138::o:0;58280:100::-;58334:13;58367:5;58360:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58280:100;:::o;59791:204::-;59859:7;59884:16;59892:7;59884;:16::i;:::-;59879:64;;59909:34;;-1:-1:-1;;;59909:34:0;;;;;;;;;;;59879:64;-1:-1:-1;59963:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;59963:24:0;;59791:204::o;92892:166::-;92997:8;89967:42;91861:45;:49;91857:225;;91932:67;;-1:-1:-1;;;91932:67:0;;91983:4;91932:67;;;10413:34:1;-1:-1:-1;;;;;10483:15:1;;10463:18;;;10456:43;89967:42:0;;91932;;10348:18:1;;91932:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;91927:144;;92027:28;;-1:-1:-1;;;92027:28:0;;-1:-1:-1;;;;;1976:32:1;;92027:28:0;;;1958:51:1;1931:18;;92027:28:0;1812:203:1;91927:144:0;93018:32:::1;93032:8;93042:7;93018:13;:32::i;:::-;92892:166:::0;;;:::o;84426:566::-;-1:-1:-1;;;;;84502:16:0;;84521:1;84502:16;;;:7;:16;;;;;;84494:71;;;;-1:-1:-1;;;84494:71:0;;;;;;;:::i;:::-;84578:21;84626:15;83029:14;;;82956:95;84626:15;84602:39;;:21;:39;:::i;:::-;84578:63;;84652:15;84670:58;84686:7;84695:13;84710:17;84719:7;-1:-1:-1;;;;;83705:18:0;83678:7;83705:18;;;:9;:18;;;;;;;83622:109;84710:17;84670:15;:58::i;:::-;84652:76;;84749:7;84760:1;84749:12;84741:68;;;;-1:-1:-1;;;84741:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;84822:18:0;;;;;;:9;:18;;;;;:29;;84844:7;;84822:18;:29;;84844:7;;84822:29;:::i;:::-;;;;;;;;84880:7;84862:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;84900:35:0;;-1:-1:-1;84918:7:0;84927;84900:17;:35::i;:::-;84951:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;84951:33:0;;161:18:1;84951:33:0;;;;;;;84483:509;;84426:566;:::o;93066:172::-;93176:4;89967:42;91115:45;:49;91111:539;;91404:10;-1:-1:-1;;;;;91396:18:0;;;91392:85;;93193:37:::1;93212:4;93218:2;93222:7;93193:18;:37::i;:::-;91455:7:::0;;91392:85;91496:69;;-1:-1:-1;;;91496:69:0;;91547:4;91496:69;;;10413:34:1;91554:10:0;10463:18:1;;;10456:43;89967:42:0;;91496;;10348:18:1;;91496:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;91491:148;;91593:30;;-1:-1:-1;;;91593:30:0;;91612:10;91593:30;;;1958:51:1;1931:18;;91593:30:0;1812:203:1;91491:148:0;93193:37:::1;93212:4;93218:2;93222:7;93193:18;:37::i;:::-;93066:172:::0;;;;:::o;93831:167::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;93831:167:0;;-1:-1:-1;93831:167:0;:::o;93246:180::-;93360:4;89967:42;91115:45;:49;91111:539;;91404:10;-1:-1:-1;;;;;91396:18:0;;;91392:85;;93377:41:::1;93400:4;93406:2;93410:7;93377:22;:41::i;91392:85::-:0;91496:69;;-1:-1:-1;;;91496:69:0;;91547:4;91496:69;;;10413:34:1;91554:10:0;10463:18:1;;;10456:43;89967:42:0;;91496;;10348:18:1;;91496:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;91491:148;;91593:30;;-1:-1:-1;;;91593:30:0;;91612:10;91593:30;;;1958:51:1;1931:18;;91593:30:0;1812:203:1;91491:148:0;93377:41:::1;93400:4;93406:2;93410:7;93377:22;:41::i;94886:212::-:0;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;94974:9:::1;94969:114;94991:13;:20;94989:1;:22;94969:114;;;95067:4;95031:8;:26;95040:13;95054:1;95040:16;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;95031:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;95031:26:0;:33:::1;;:40:::0;;-1:-1:-1;;95031:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;95012:3;::::1;::::0;::::1;:::i;:::-;;;;94969:114;;;;94886:212:::0;:::o;97178:214::-;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;97306:9:::1;;97296:6;97280:13;97905:1:::0;54670:12;54460:7;54654:13;:28;-1:-1:-1;;54654:46:0;;54416:303;97280:13:::1;:22;;;;:::i;:::-;:35;;97258:93;;;::::0;-1:-1:-1;;;97258:93:0;;12602:2:1;97258:93:0::1;::::0;::::1;12584:21:1::0;12641:1;12621:18;;;12614:29;-1:-1:-1;;;12659:18:1;;;12652:38;12707:18;;97258:93:0::1;12400:331:1::0;97258:93:0::1;97362:22;97372:3;97377:6;97362:9;:22::i;85260:641::-:0;-1:-1:-1;;;;;85342:16:0;;85361:1;85342:16;;;:7;:16;;;;;;85334:71;;;;-1:-1:-1;;;85334:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;83293:26:0;;85418:21;83293:26;;;:19;:26;;;;;;85442:30;;-1:-1:-1;;;85442:30:0;;85466:4;85442:30;;;1958:51:1;-1:-1:-1;;;;;85442:15:0;;;;;1931:18:1;;85442:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;85418:77;;85506:15;85524:65;85540:7;85549:13;85564:24;85573:5;85580:7;-1:-1:-1;;;;;83997:21:0;;;83970:7;83997:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;83900:135;85524:65;85506:83;;85610:7;85621:1;85610:12;85602:68;;;;-1:-1:-1;;;85602:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;85683:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;85717:7;;85683:21;:41;;85717:7;;85683:41;:::i;:::-;;;;-1:-1:-1;;;;;;;85735:26:0;;;;;;:19;:26;;;;;:37;;85765:7;;85735:26;:37;;85765:7;;85735:37;:::i;:::-;;;;-1:-1:-1;85785:47:0;;-1:-1:-1;85808:5:0;85815:7;85824;85785:22;:47::i;:::-;85848:45;;;-1:-1:-1;;;;;206:32:1;;;188:51;;270:2;255:18;;248:34;;;85848:45:0;;;;;161:18:1;85848:45:0;;;;;;;85323:578;;85260:641;;:::o;96377:73::-;96414:28;96430:10;96414:7;:28::i;:::-;96377:73::o;97400:104::-;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;97473:13:::1;:23;97489:7:::0;97473:13;:23:::1;:::i;96458:712::-:0;96522:16;96568:18;96603:16;96613:5;96603:9;:16::i;:::-;-1:-1:-1;;;;;96589:31:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;96589:31:0;-1:-1:-1;96631:11:0;96645:13;;96568:52;;-1:-1:-1;96631:11:0;;96735:402;96755:3;96751:1;:7;96735:402;;;96780:31;96814:14;;;:11;:14;;;;;;;;;96780:48;;;;;;;;;-1:-1:-1;;;;;96780:48:0;;;;-1:-1:-1;;;96780:48:0;;-1:-1:-1;;;;;96780:48:0;;;;;;;;-1:-1:-1;;;96780:48:0;;;;;;;;;;;;;;;;96843:65;;96884:8;;;96843:65;96926:14;;-1:-1:-1;;;;;96926:28:0;;96922:103;;96995:14;;;-1:-1:-1;96922:103:0;97064:5;-1:-1:-1;;;;;97043:26:0;:17;-1:-1:-1;;;;;97043:26:0;;97039:87;;97109:1;97090;97092:13;;;;;;97090:16;;;;;;;;:::i;:::-;;;;;;:20;;;;;97039:87;96765:372;96735:402;96760:3;;96735:402;;;-1:-1:-1;97154:1:0;;96458:712;-1:-1:-1;;;;;96458:712:0:o;58088:125::-;58152:7;58179:21;58192:7;58179:12;:21::i;:::-;:26;;58088:125;-1:-1:-1;;58088:125:0:o;55536:206::-;55600:7;-1:-1:-1;;;;;55624:19:0;;55620:60;;55652:28;;-1:-1:-1;;;55652:28:0;;;;;;;;;;;55620:60;-1:-1:-1;;;;;;55706:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;55706:27:0;;55536:206::o;45290:103::-;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;45355:30:::1;45382:1;45355:18;:30::i;94462:273::-:0;-1:-1:-1;;;;;94585:20:0;;94551:4;94585:20;;;:8;:20;;;;;:27;;;;;94581:143;;;-1:-1:-1;94639:4:0;;94462:273;-1:-1:-1;94462:273:0:o;94581:143::-;-1:-1:-1;94703:5:0;;94462:273;-1:-1:-1;94462:273:0:o;84126:100::-;84177:7;84204;84212:5;84204:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;84204:14:0;;84126:100;-1:-1:-1;;84126:100:0:o;58449:104::-;58505:13;58538:7;58531:14;;;;;:::i;95691:402::-;50024:1;50622:7;;:19;50614:63;;;;-1:-1:-1;;;50614:63:0;;15331:2:1;50614:63:0;;;15313:21:1;15370:2;15350:18;;;15343:30;15409:33;15389:18;;;15382:61;15460:18;;50614:63:0;15129:355:1;50614:63:0;50024:1;50755:7;:18;95770:12:::1;::::0;::::1;;95762:38;;;::::0;-1:-1:-1;;;95762:38:0;;15691:2:1;95762:38:0::1;::::0;::::1;15673:21:1::0;15730:2;15710:18;;;15703:30;-1:-1:-1;;;15749:18:1;;;15742:43;15802:18;;95762:38:0::1;15489:337:1::0;95762:38:0::1;95861:9;;95851:6;95835:13;97905:1:::0;54670:12;54460:7;54654:13;:28;-1:-1:-1;;54654:46:0;;54416:303;95835:13:::1;:22;;;;:::i;:::-;:35;;95813:93;;;::::0;-1:-1:-1;;;95813:93:0;;12602:2:1;95813:93:0::1;::::0;::::1;12584:21:1::0;12641:1;12621:18;;;12614:29;-1:-1:-1;;;12659:18:1;;;12652:38;12707:18;;95813:93:0::1;12400:331:1::0;95813:93:0::1;95963:9;95953:6;95941:9;;:18;;;;:::i;:::-;:31;;95919:102;;;::::0;-1:-1:-1;;;95919:102:0;;16206:2:1;95919:102:0::1;::::0;::::1;16188:21:1::0;16245:2;16225:18;;;16218:30;-1:-1:-1;;;16264:18:1;;;16257:51;16325:18;;95919:102:0::1;16004:345:1::0;95919:102:0::1;96038:29;96048:10;96060:6;96038:9;:29::i;:::-;-1:-1:-1::0;49980:1:0;50934:7;:22;95691:402::o;92698:186::-;92812:8;89967:42;91861:45;:49;91857:225;;91932:67;;-1:-1:-1;;;91932:67:0;;91983:4;91932:67;;;10413:34:1;-1:-1:-1;;;;;10483:15:1;;10463:18;;;10456:43;89967:42:0;;91932;;10348:18:1;;91932:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;91927:144;;92027:28;;-1:-1:-1;;;92027:28:0;;-1:-1:-1;;;;;1976:32:1;;92027:28:0;;;1958:51:1;1931:18;;92027:28:0;1812:203:1;91927:144:0;92833:43:::1;92857:8;92867;92833:23;:43::i;93434:237::-:0;93594:4;89967:42;91115:45;:49;91111:539;;91404:10;-1:-1:-1;;;;;91396:18:0;;;91392:85;;93616:47:::1;93639:4;93645:2;93649:7;93658:4;93616:22;:47::i;:::-;91455:7:::0;;91392:85;91496:69;;-1:-1:-1;;;91496:69:0;;91547:4;91496:69;;;10413:34:1;91554:10:0;10463:18:1;;;10456:43;89967:42:0;;91496;;10348:18:1;;91496:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;91491:148;;91593:30;;-1:-1:-1;;;91593:30:0;;91612:10;91593:30;;;1958:51:1;1931:18;;91593:30:0;1812:203:1;91491:148:0;93616:47:::1;93639:4;93645:2;93649:7;93658:4;93616:22;:47::i;:::-;93434:237:::0;;;;;:::o;95106:557::-;50024:1;50622:7;;:19;50614:63;;;;-1:-1:-1;;;50614:63:0;;15331:2:1;50614:63:0;;;15313:21:1;15370:2;15350:18;;;15343:30;15409:33;15389:18;;;15382:61;15460:18;;50614:63:0;15129:355:1;50614:63:0;50024:1;50755:7;:18;95208:10:::1;95199:20;::::0;;;:8:::1;:20;::::0;;;;:27:::1;::::0;;::::1;::::0;::::1;;:35;;;95191:88;;;::::0;-1:-1:-1;;;95191:88:0;;16556:2:1;95191:88:0::1;::::0;::::1;16538:21:1::0;16595:2;16575:18;;;16568:30;16634:34;16614:18;;;16607:62;-1:-1:-1;;;16685:18:1;;;16678:38;16733:19;;95191:88:0::1;16354:404:1::0;95191:88:0::1;95316:1;95299:14;:18;:65;;;;;95355:9;;95337:14;95321:13;97905:1:::0;54670:12;54460:7;54654:13;:28;-1:-1:-1;;54654:46:0;;54416:303;95321:13:::1;:30;;;;:::i;:::-;:43;;95299:65;95291:118;;;::::0;-1:-1:-1;;;95291:118:0;;16965:2:1;95291:118:0::1;::::0;::::1;16947:21:1::0;17004:2;16984:18;;;16977:30;17043:34;17023:18;;;17016:62;-1:-1:-1;;;17094:18:1;;;17087:38;17142:19;;95291:118:0::1;16763:404:1::0;95291:118:0::1;95482:15;::::0;95437:10:::1;95428:20;::::0;;;:8:::1;:20;::::0;;;;:33;:50:::1;::::0;95464:14;;95428:50:::1;:::i;:::-;:69;;95420:123;;;::::0;-1:-1:-1;;;95420:123:0;;17374:2:1;95420:123:0::1;::::0;::::1;17356:21:1::0;17413:2;17393:18;;;17386:30;17452:34;17432:18;;;17425:62;-1:-1:-1;;;17503:18:1;;;17496:40;17553:19;;95420:123:0::1;17172:406:1::0;95420:123:0::1;95563:10;95554:20;::::0;;;:8:::1;:20;::::0;;;;:51;;95591:14;;95554:20;:51:::1;::::0;95591:14;;95554:51:::1;:::i;:::-;::::0;;;-1:-1:-1;95618:37:0::1;::::0;-1:-1:-1;95628:10:0::1;95640:14:::0;95618:9:::1;:37::i;97633:173::-:0;97698:13;97754:23;97769:7;97754:14;:23::i;:::-;97737:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;97723:65;;97633:173;;;:::o;45548:201::-;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45637:22:0;::::1;45629:73;;;::::0;-1:-1:-1;;;45629:73:0;;18246:2:1;45629:73:0::1;::::0;::::1;18228:21:1::0;18285:2;18265:18;;;18258:30;18324:34;18304:18;;;18297:62;-1:-1:-1;;;18375:18:1;;;18368:36;18421:19;;45629:73:0::1;18044:402:1::0;45629:73:0::1;45713:28;45732:8;45713:18;:28::i;:::-;45548:201:::0;:::o;96249:102::-;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;96321:9:::1;:22:::0;96249:102::o;61777:187::-;61834:4;61877:7;97905:1;61858:26;;:53;;;;;61898:13;;61888:7;:23;61858:53;:98;;;;-1:-1:-1;;61929:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;61929:27:0;;;;61928:28;;61777:187::o;59346:379::-;59427:13;59443:24;59459:7;59443:15;:24::i;:::-;59427:40;;59488:5;-1:-1:-1;;;;;59482:11:0;:2;-1:-1:-1;;;;;59482:11:0;;59478:48;;59502:24;;-1:-1:-1;;;59502:24:0;;;;;;;;;;;59478:48;33209:10;-1:-1:-1;;;;;59543:21:0;;;;;;:63;;-1:-1:-1;59569:37:0;59586:5;33209:10;60425:164;:::i;59569:37::-;59568:38;59543:63;59539:138;;;59630:35;;-1:-1:-1;;;59630:35:0;;;;;;;;;;;59539:138;59689:28;59698:2;59702:7;59711:5;59689:8;:28::i;86079:248::-;86289:12;;-1:-1:-1;;;;;86269:16:0;;86225:7;86269:16;;;:7;:16;;;;;;86225:7;;86304:15;;86253:32;;:13;:32;:::i;:::-;86252:49;;;;:::i;:::-;:67;;;;:::i;:::-;86245:74;;86079:248;;;;;;:::o;26553:317::-;26668:6;26643:21;:31;;26635:73;;;;-1:-1:-1;;;26635:73:0;;19043:2:1;26635:73:0;;;19025:21:1;19082:2;19062:18;;;19055:30;19121:31;19101:18;;;19094:59;19170:18;;26635:73:0;18841:353:1;26635:73:0;26722:12;26740:9;-1:-1:-1;;;;;26740:14:0;26762:6;26740:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26721:52;;;26792:7;26784:78;;;;-1:-1:-1;;;26784:78:0;;19611:2:1;26784:78:0;;;19593:21:1;19650:2;19630:18;;;19623:30;19689:34;19669:18;;;19662:62;19760:28;19740:18;;;19733:56;19806:19;;26784:78:0;19409:422:1;60656:170:0;60790:28;60800:4;60806:2;60810:7;60790:9;:28::i;60897:185::-;61035:39;61052:4;61058:2;61062:7;61035:39;;;;;;;;;;;;:16;:39::i;61972:104::-;62041:27;62051:2;62055:8;62041:27;;;;;;;;;;;;:9;:27::i;76232:211::-;76376:58;;;-1:-1:-1;;;;;206:32:1;;76376:58:0;;;188:51:1;255:18;;;;248:34;;;76376:58:0;;;;;;;;;;161:18:1;;;;76376:58:0;;;;;;;;-1:-1:-1;;;;;76376:58:0;-1:-1:-1;;;76376:58:0;;;76349:86;;76369:5;;76349:19;:86::i;56917:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;57028:7:0;;97905:1;57077:23;;:47;;;;;57111:13;;57104:4;:20;57077:47;57073:886;;;57145:31;57179:17;;;:11;:17;;;;;;;;;57145:51;;;;;;;;;-1:-1:-1;;;;;57145:51:0;;;;-1:-1:-1;;;57145:51:0;;-1:-1:-1;;;;;57145:51:0;;;;;;;;-1:-1:-1;;;57145:51:0;;;;;;;;;;;;;;57215:729;;57265:14;;-1:-1:-1;;;;;57265:28:0;;57261:101;;57329:9;56917:1109;-1:-1:-1;;;56917:1109:0:o;57261:101::-;-1:-1:-1;;;57704:6:0;57749:17;;;;:11;:17;;;;;;;;;57737:29;;;;;;;;;-1:-1:-1;;;;;57737:29:0;;;;;-1:-1:-1;;;57737:29:0;;-1:-1:-1;;;;;57737:29:0;;;;;;;;-1:-1:-1;;;57737:29:0;;;;;;;;;;;;;57797:28;57793:109;;57865:9;56917:1109;-1:-1:-1;;;56917:1109:0:o;57793:109::-;57664:261;;;57126:833;57073:886;57987:31;;-1:-1:-1;;;57987:31:0;;;;;;;;;;;45909:191;46002:6;;;-1:-1:-1;;;;;46019:17:0;;;-1:-1:-1;;;;;;46019:17:0;;;;;;;46052:40;;46002:6;;;46019:17;46002:6;;46052:40;;45983:16;;46052:40;45972:128;45909:191;:::o;60067:287::-;33209:10;-1:-1:-1;;;;;60166:24:0;;;60162:54;;60199:17;;-1:-1:-1;;;60199:17:0;;;;;;;;;;;60162:54;33209:10;60229:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;60229:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;60229:53:0;;;;;;;;;;60298:48;;819:41:1;;;60229:42:0;;33209:10;60298:48;;792:18:1;60298:48:0;;;;;;;60067:287;;:::o;61153:369::-;61320:28;61330:4;61336:2;61340:7;61320:9;:28::i;:::-;-1:-1:-1;;;;;61363:13:0;;25554:20;25602:8;;61363:76;;;;;61383:56;61414:4;61420:2;61424:7;61433:5;61383:30;:56::i;:::-;61382:57;61363:76;61359:156;;;61463:40;;-1:-1:-1;;;61463:40:0;;;;;;;;;;;58624:318;58697:13;58728:16;58736:7;58728;:16::i;:::-;58723:59;;58753:29;;-1:-1:-1;;;58753:29:0;;;;;;;;;;;58723:59;58795:21;58819:10;:8;:10::i;:::-;58795:34;;58853:7;58847:21;58872:1;58847:26;:87;;;;;;;;;;;;;;;;;58900:7;58909:18;:7;:16;:18::i;:::-;58883:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58840:94;58624:318;-1:-1:-1;;;58624:318:0:o;69947:196::-;70062:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;70062:29:0;-1:-1:-1;;;;;70062:29:0;;;;;;;;;70107:28;;70062:24;;70107:28;;;;;;;69947:196;;;:::o;64890:2130::-;65005:35;65043:21;65056:7;65043:12;:21::i;:::-;65005:59;;65103:4;-1:-1:-1;;;;;65081:26:0;:13;:18;;;-1:-1:-1;;;;;65081:26:0;;65077:67;;65116:28;;-1:-1:-1;;;65116:28:0;;;;;;;;;;;65077:67;65157:22;33209:10;-1:-1:-1;;;;;65183:20:0;;;;:73;;-1:-1:-1;65220:36:0;65237:4;33209:10;60425:164;:::i;65220:36::-;65183:126;;;-1:-1:-1;33209:10:0;65273:20;65285:7;65273:11;:20::i;:::-;-1:-1:-1;;;;;65273:36:0;;65183:126;65157:153;;65328:17;65323:66;;65354:35;;-1:-1:-1;;;65354:35:0;;;;;;;;;;;65323:66;-1:-1:-1;;;;;65404:16:0;;65400:52;;65429:23;;-1:-1:-1;;;65429:23:0;;;;;;;;;;;65400:52;65573:35;65590:1;65594:7;65603:4;65573:8;:35::i;:::-;-1:-1:-1;;;;;65904:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;65904:31:0;;;-1:-1:-1;;;;;65904:31:0;;;-1:-1:-1;;65904:31:0;;;;;;;65950:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;65950:29:0;;;;;;;;;;;66030:20;;;:11;:20;;;;;;66065:18;;-1:-1:-1;;;;;;66098:49:0;;;;-1:-1:-1;;;66131:15:0;66098:49;;;;;;;;;;66421:11;;66481:24;;;;;66524:13;;66030:20;;66481:24;;66524:13;66520:384;;66734:13;;66719:11;:28;66715:174;;66772:20;;66841:28;;;;-1:-1:-1;;;;;66815:54:0;-1:-1:-1;;;66815:54:0;-1:-1:-1;;;;;;66815:54:0;;;-1:-1:-1;;;;;66772:20:0;;66815:54;;;;66715:174;65879:1036;;;66951:7;66947:2;-1:-1:-1;;;;;66932:27:0;66941:4;-1:-1:-1;;;;;66932:27:0;;;;;;;;;;;66970:42;93066:172;62439:163;62562:32;62568:2;62572:8;62582:5;62589:4;62562:5;:32::i;78805:716::-;79229:23;79255:69;79283:4;79255:69;;;;;;;;;;;;;;;;;79263:5;-1:-1:-1;;;;;79255:27:0;;;:69;;;;;:::i;:::-;79339:17;;79229:95;;-1:-1:-1;79339:21:0;79335:179;;79436:10;79425:30;;;;;;;;;;;;:::i;:::-;79417:85;;;;-1:-1:-1;;;79417:85:0;;20539:2:1;79417:85:0;;;20521:21:1;20578:2;20558:18;;;20551:30;20617:34;20597:18;;;20590:62;-1:-1:-1;;;20668:18:1;;;20661:40;20718:19;;79417:85:0;20337:406:1;70635:667:0;70819:72;;-1:-1:-1;;;70819:72:0;;70798:4;;-1:-1:-1;;;;;70819:36:0;;;;;:72;;33209:10;;70870:4;;70876:7;;70885:5;;70819:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70819:72:0;;;;;;;;-1:-1:-1;;70819:72:0;;;;;;;;;;;;:::i;:::-;;;70815:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71053:6;:13;71070:1;71053:18;71049:235;;71099:40;;-1:-1:-1;;;71099:40:0;;;;;;;;;;;71049:235;71242:6;71236:13;71227:6;71223:2;71219:15;71212:38;70815:480;-1:-1:-1;;;;;;70938:55:0;-1:-1:-1;;;70938:55:0;;-1:-1:-1;70815:480:0;70635:667;;;;;;:::o;97512:114::-;97572:13;97605;97598:20;;;;;:::i;33596:723::-;33652:13;33873:5;33882:1;33873:10;33869:53;;-1:-1:-1;;33900:10:0;;;;;;;;;;;;-1:-1:-1;;;33900:10:0;;;;;33596:723::o;33869:53::-;33947:5;33932:12;33988:78;33995:9;;33988:78;;34021:8;;;;:::i;:::-;;-1:-1:-1;34044:10:0;;-1:-1:-1;34052:2:0;34044:10;;:::i;:::-;;;33988:78;;;34076:19;34108:6;-1:-1:-1;;;;;34098:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34098:17:0;;34076:39;;34126:154;34133:10;;34126:154;;34160:11;34170:1;34160:11;;:::i;:::-;;-1:-1:-1;34229:10:0;34237:2;34229:5;:10;:::i;:::-;34216:24;;:2;:24;:::i;:::-;34203:39;;34186:6;34193;34186:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;34186:56:0;;;;;;;;-1:-1:-1;34257:11:0;34266:2;34257:11;;:::i;:::-;;;34126:154;;62861:1775;63000:20;63023:13;-1:-1:-1;;;;;63051:16:0;;63047:48;;63076:19;;-1:-1:-1;;;63076:19:0;;;;;;;;;;;63047:48;63110:8;63122:1;63110:13;63106:44;;63132:18;;-1:-1:-1;;;63132:18:0;;;;;;;;;;;63106:44;-1:-1:-1;;;;;63501:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;63560:49:0;;-1:-1:-1;;;;;63501:44:0;;;;;;;63560:49;;;;-1:-1:-1;;63501:44:0;;;;;;63560:49;;;;;;;;;;;;;;;;63626:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;63676:66:0;;;;-1:-1:-1;;;63726:15:0;63676:66;;;;;;;;;;63626:25;63823:23;;;63867:4;:23;;;;-1:-1:-1;;;;;;63875:13:0;;25554:20;25602:8;;63875:15;63863:641;;;63911:314;63942:38;;63967:12;;-1:-1:-1;;;;;63942:38:0;;;63959:1;;63942:38;;63959:1;;63942:38;64008:69;64047:1;64051:2;64055:14;;;;;;64071:5;64008:30;:69::i;:::-;64003:174;;64113:40;;-1:-1:-1;;;64113:40:0;;;;;;;;;;;64003:174;64220:3;64204:12;:19;63911:314;;64306:12;64289:13;;:29;64285:43;;64320:8;;;64285:43;63863:641;;;64369:120;64400:40;;64425:14;;;;;-1:-1:-1;;;;;64400:40:0;;;64417:1;;64400:40;;64417:1;;64400:40;64484:3;64468:12;:19;64369:120;;63863:641;-1:-1:-1;64518:13:0;:28;64568:60;93066:172;28037:229;28174:12;28206:52;28228:6;28236:4;28242:1;28245:12;28174;25554:20;;29444:60;;;;-1:-1:-1;;;29444:60:0;;22222:2:1;29444:60:0;;;22204:21:1;22261:2;22241:18;;;22234:30;22300:31;22280:18;;;22273:59;22349:18;;29444:60:0;22020:353:1;29444:60:0;29518:12;29532:23;29559:6;-1:-1:-1;;;;;29559:11:0;29578:5;29585:4;29559:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29517:73;;;;29608:51;29625:7;29634:10;29646:12;29608:16;:51::i;:::-;29601:58;29157:510;-1:-1:-1;;;;;;;29157:510:0:o;31843:712::-;31993:12;32022:7;32018:530;;;-1:-1:-1;32053:10:0;32046:17;;32018:530;32167:17;;:21;32163:374;;32365:10;32359:17;32426:15;32413:10;32409:2;32405:19;32398:44;32163:374;32508:12;32501:20;;-1:-1:-1;;;32501:20:0;;;;;;;;:::i;293:131:1:-;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:250::-;956:1;966:113;980:6;977:1;974:13;966:113;;;1056:11;;;1050:18;1037:11;;;1030:39;1002:2;995:10;966:113;;;-1:-1:-1;;1113:1:1;1095:16;;1088:27;871:250::o;1126:271::-;1168:3;1206:5;1200:12;1233:6;1228:3;1221:19;1249:76;1318:6;1311:4;1306:3;1302:14;1295:4;1288:5;1284:16;1249:76;:::i;:::-;1379:2;1358:15;-1:-1:-1;;1354:29:1;1345:39;;;;1386:4;1341:50;;1126:271;-1:-1:-1;;1126:271:1:o;1402:220::-;1551:2;1540:9;1533:21;1514:4;1571:45;1612:2;1601:9;1597:18;1589:6;1571:45;:::i;1627:180::-;1686:6;1739:2;1727:9;1718:7;1714:23;1710:32;1707:52;;;1755:1;1752;1745:12;1707:52;-1:-1:-1;1778:23:1;;1627:180;-1:-1:-1;1627:180:1:o;2020:131::-;-1:-1:-1;;;;;2095:31:1;;2085:42;;2075:70;;2141:1;2138;2131:12;2156:315;2224:6;2232;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2340:9;2327:23;2359:31;2384:5;2359:31;:::i;:::-;2409:5;2461:2;2446:18;;;;2433:32;;-1:-1:-1;;;2156:315:1:o;2658:255::-;2725:6;2778:2;2766:9;2757:7;2753:23;2749:32;2746:52;;;2794:1;2791;2784:12;2746:52;2833:9;2820:23;2852:31;2877:5;2852:31;:::i;2918:456::-;2995:6;3003;3011;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3119:9;3106:23;3138:31;3163:5;3138:31;:::i;:::-;3188:5;-1:-1:-1;3245:2:1;3230:18;;3217:32;3258:33;3217:32;3258:33;:::i;:::-;2918:456;;3310:7;;-1:-1:-1;;;3364:2:1;3349:18;;;;3336:32;;2918:456::o;3379:403::-;3462:6;3470;3523:2;3511:9;3502:7;3498:23;3494:32;3491:52;;;3539:1;3536;3529:12;3491:52;3578:9;3565:23;3597:31;3622:5;3597:31;:::i;:::-;3647:5;-1:-1:-1;3704:2:1;3689:18;;3676:32;3717:33;3676:32;3717:33;:::i;:::-;3769:7;3759:17;;;3379:403;;;;;:::o;4027:127::-;4088:10;4083:3;4079:20;4076:1;4069:31;4119:4;4116:1;4109:15;4143:4;4140:1;4133:15;4159:275;4230:2;4224:9;4295:2;4276:13;;-1:-1:-1;;4272:27:1;4260:40;;-1:-1:-1;;;;;4315:34:1;;4351:22;;;4312:62;4309:88;;;4377:18;;:::i;:::-;4413:2;4406:22;4159:275;;-1:-1:-1;4159:275:1:o;4439:1021::-;4523:6;4554:2;4597;4585:9;4576:7;4572:23;4568:32;4565:52;;;4613:1;4610;4603:12;4565:52;4653:9;4640:23;-1:-1:-1;;;;;4723:2:1;4715:6;4712:14;4709:34;;;4739:1;4736;4729:12;4709:34;4777:6;4766:9;4762:22;4752:32;;4822:7;4815:4;4811:2;4807:13;4803:27;4793:55;;4844:1;4841;4834:12;4793:55;4880:2;4867:16;4902:2;4898;4895:10;4892:36;;;4908:18;;:::i;:::-;4954:2;4951:1;4947:10;4937:20;;4977:28;5001:2;4997;4993:11;4977:28;:::i;:::-;5039:15;;;5109:11;;;5105:20;;;5070:12;;;;5137:19;;;5134:39;;;5169:1;5166;5159:12;5134:39;5193:11;;;;5213:217;5229:6;5224:3;5221:15;5213:217;;;5309:3;5296:17;5283:30;;5326:31;5351:5;5326:31;:::i;:::-;5370:18;;;5246:12;;;;5408;;;;5213:217;;;5449:5;4439:1021;-1:-1:-1;;;;;;;;4439:1021:1:o;5465:407::-;5530:5;-1:-1:-1;;;;;5556:6:1;5553:30;5550:56;;;5586:18;;:::i;:::-;5624:57;5669:2;5648:15;;-1:-1:-1;;5644:29:1;5675:4;5640:40;5624:57;:::i;:::-;5615:66;;5704:6;5697:5;5690:21;5744:3;5735:6;5730:3;5726:16;5723:25;5720:45;;;5761:1;5758;5751:12;5720:45;5810:6;5805:3;5798:4;5791:5;5787:16;5774:43;5864:1;5857:4;5848:6;5841:5;5837:18;5833:29;5826:40;5465:407;;;;;:::o;5877:451::-;5946:6;5999:2;5987:9;5978:7;5974:23;5970:32;5967:52;;;6015:1;6012;6005:12;5967:52;6055:9;6042:23;-1:-1:-1;;;;;6080:6:1;6077:30;6074:50;;;6120:1;6117;6110:12;6074:50;6143:22;;6196:4;6188:13;;6184:27;-1:-1:-1;6174:55:1;;6225:1;6222;6215:12;6174:55;6248:74;6314:7;6309:2;6296:16;6291:2;6287;6283:11;6248:74;:::i;6585:632::-;6756:2;6808:21;;;6878:13;;6781:18;;;6900:22;;;6727:4;;6756:2;6979:15;;;;6953:2;6938:18;;;6727:4;7022:169;7036:6;7033:1;7030:13;7022:169;;;7097:13;;7085:26;;7166:15;;;;7131:12;;;;7058:1;7051:9;7022:169;;;-1:-1:-1;7208:3:1;;6585:632;-1:-1:-1;;;;;;6585:632:1:o;7485:118::-;7571:5;7564:13;7557:21;7550:5;7547:32;7537:60;;7593:1;7590;7583:12;7608:382;7673:6;7681;7734:2;7722:9;7713:7;7709:23;7705:32;7702:52;;;7750:1;7747;7740:12;7702:52;7789:9;7776:23;7808:31;7833:5;7808:31;:::i;:::-;7858:5;-1:-1:-1;7915:2:1;7900:18;;7887:32;7928:30;7887:32;7928:30;:::i;7995:795::-;8090:6;8098;8106;8114;8167:3;8155:9;8146:7;8142:23;8138:33;8135:53;;;8184:1;8181;8174:12;8135:53;8223:9;8210:23;8242:31;8267:5;8242:31;:::i;:::-;8292:5;-1:-1:-1;8349:2:1;8334:18;;8321:32;8362:33;8321:32;8362:33;:::i;:::-;8414:7;-1:-1:-1;8468:2:1;8453:18;;8440:32;;-1:-1:-1;8523:2:1;8508:18;;8495:32;-1:-1:-1;;;;;8539:30:1;;8536:50;;;8582:1;8579;8572:12;8536:50;8605:22;;8658:4;8650:13;;8646:27;-1:-1:-1;8636:55:1;;8687:1;8684;8677:12;8636:55;8710:74;8776:7;8771:2;8758:16;8753:2;8749;8745:11;8710:74;:::i;:::-;8700:84;;;7995:795;;;;;;;:::o;9455:356::-;9657:2;9639:21;;;9676:18;;;9669:30;9735:34;9730:2;9715:18;;9708:62;9802:2;9787:18;;9455:356::o;9816:380::-;9895:1;9891:12;;;;9938;;;9959:61;;10013:4;10005:6;10001:17;9991:27;;9959:61;10066:2;10058:6;10055:14;10035:18;10032:38;10029:161;;10112:10;10107:3;10103:20;10100:1;10093:31;10147:4;10144:1;10137:15;10175:4;10172:1;10165:15;10029:161;;9816:380;;;:::o;10510:245::-;10577:6;10630:2;10618:9;10609:7;10605:23;10601:32;10598:52;;;10646:1;10643;10636:12;10598:52;10678:9;10672:16;10697:28;10719:5;10697:28;:::i;10760:402::-;10962:2;10944:21;;;11001:2;10981:18;;;10974:30;11040:34;11035:2;11020:18;;11013:62;-1:-1:-1;;;11106:2:1;11091:18;;11084:36;11152:3;11137:19;;10760:402::o;11167:127::-;11228:10;11223:3;11219:20;11216:1;11209:31;11259:4;11256:1;11249:15;11283:4;11280:1;11273:15;11299:125;11364:9;;;11385:10;;;11382:36;;;11398:18;;:::i;11429:407::-;11631:2;11613:21;;;11670:2;11650:18;;;11643:30;11709:34;11704:2;11689:18;;11682:62;-1:-1:-1;;;11775:2:1;11760:18;;11753:41;11826:3;11811:19;;11429:407::o;12128:127::-;12189:10;12184:3;12180:20;12177:1;12170:31;12220:4;12217:1;12210:15;12244:4;12241:1;12234:15;12260:135;12299:3;12320:17;;;12317:43;;12340:18;;:::i;:::-;-1:-1:-1;12387:1:1;12376:13;;12260:135::o;12736:184::-;12806:6;12859:2;12847:9;12838:7;12834:23;12830:32;12827:52;;;12875:1;12872;12865:12;12827:52;-1:-1:-1;12898:16:1;;12736:184;-1:-1:-1;12736:184:1:o;13051:545::-;13153:2;13148:3;13145:11;13142:448;;;13189:1;13214:5;13210:2;13203:17;13259:4;13255:2;13245:19;13329:2;13317:10;13313:19;13310:1;13306:27;13300:4;13296:38;13365:4;13353:10;13350:20;13347:47;;;-1:-1:-1;13388:4:1;13347:47;13443:2;13438:3;13434:12;13431:1;13427:20;13421:4;13417:31;13407:41;;13498:82;13516:2;13509:5;13506:13;13498:82;;;13561:17;;;13542:1;13531:13;13498:82;;;13502:3;;;13051:545;;;:::o;13772:1352::-;13898:3;13892:10;-1:-1:-1;;;;;13917:6:1;13914:30;13911:56;;;13947:18;;:::i;:::-;13976:97;14066:6;14026:38;14058:4;14052:11;14026:38;:::i;:::-;14020:4;13976:97;:::i;:::-;14128:4;;14192:2;14181:14;;14209:1;14204:663;;;;14911:1;14928:6;14925:89;;;-1:-1:-1;14980:19:1;;;14974:26;14925:89;-1:-1:-1;;13729:1:1;13725:11;;;13721:24;13717:29;13707:40;13753:1;13749:11;;;13704:57;15027:81;;14174:944;;14204:663;12998:1;12991:14;;;13035:4;13022:18;;-1:-1:-1;;14240:20:1;;;14358:236;14372:7;14369:1;14366:14;14358:236;;;14461:19;;;14455:26;14440:42;;14553:27;;;;14521:1;14509:14;;;;14388:19;;14358:236;;;14362:3;14622:6;14613:7;14610:19;14607:201;;;14683:19;;;14677:26;-1:-1:-1;;14766:1:1;14762:14;;;14778:3;14758:24;14754:37;14750:42;14735:58;14720:74;;14607:201;-1:-1:-1;;;;;14854:1:1;14838:14;;;14834:22;14821:36;;-1:-1:-1;13772:1352:1:o;15831:168::-;15904:9;;;15935;;15952:15;;;15946:22;;15932:37;15922:71;;15973:18;;:::i;17583:456::-;17815:3;17853:6;17847:13;17869:66;17928:6;17923:3;17916:4;17908:6;17904:17;17869:66;:::i;:::-;-1:-1:-1;;;17957:16:1;;17982:22;;;-1:-1:-1;18031:1:1;18020:13;;17583:456;-1:-1:-1;17583:456:1:o;18451:127::-;18512:10;18507:3;18503:20;18500:1;18493:31;18543:4;18540:1;18533:15;18567:4;18564:1;18557:15;18583:120;18623:1;18649;18639:35;;18654:18;;:::i;:::-;-1:-1:-1;18688:9:1;;18583:120::o;18708:128::-;18775:9;;;18796:11;;;18793:37;;;18810:18;;:::i;19836:496::-;20015:3;20053:6;20047:13;20069:66;20128:6;20123:3;20116:4;20108:6;20104:17;20069:66;:::i;:::-;20198:13;;20157:16;;;;20220:70;20198:13;20157:16;20267:4;20255:17;;20220:70;:::i;:::-;20306:20;;19836:496;-1:-1:-1;;;;19836:496:1:o;20748:489::-;-1:-1:-1;;;;;21017:15:1;;;20999:34;;21069:15;;21064:2;21049:18;;21042:43;21116:2;21101:18;;21094:34;;;21164:3;21159:2;21144:18;;21137:31;;;20942:4;;21185:46;;21211:19;;21203:6;21185:46;:::i;:::-;21177:54;20748:489;-1:-1:-1;;;;;;20748:489:1:o;21242:249::-;21311:6;21364:2;21352:9;21343:7;21339:23;21335:32;21332:52;;;21380:1;21377;21370:12;21332:52;21412:9;21406:16;21431:30;21455:5;21431:30;:::i;21496:112::-;21528:1;21554;21544:35;;21559:18;;:::i;:::-;-1:-1:-1;21593:9:1;;21496:112::o;22378:287::-;22507:3;22545:6;22539:13;22561:66;22620:6;22615:3;22608:4;22600:6;22596:17;22561:66;:::i;:::-;22643:16;;;;;22378:287;-1:-1:-1;;22378:287:1:o

Swarm Source

ipfs://b8923d72491957122c3aa9f5e942c4f9a0fdfbd277dfa5306f6c21f40f2862df

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.