ETH Price: $3,128.44 (-5.15%)
Gas: 4 Gwei

Token

Boring Apes v2 (BORINGv2)
 

Overview

Max Total Supply

8,000 BORINGv2

Holders

982

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BORINGv2
0x22faf1f5b1a8a118c0dbb08ac6cf5e562190ab1c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BoringApesv2

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/* NOT AFFILIATED WITH YUGA LABS. */


// SPDX-License-Identifier: MIT

// File: IOperatorFilterRegistry.sol

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

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @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 {
        // 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) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view 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);
            }
        }
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


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

// File: MerkleProof.sol

// contracts/MerkleProofVerify.sol

// based upon https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.1/contracts/mocks/MerkleProofWrapper.sol

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle trees (hash trees),
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] calldata proof, bytes32 leaf, bytes32 root) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}


/*

pragma solidity ^0.8.0;



contract MerkleProofVerify {
    function verify(bytes32[] calldata proof, bytes32 root)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        return MerkleProof.verify(proof, root, leaf);
    }
}
*/
// File: Strings.sol



pragma solidity ^0.8.0;

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

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

// File: Context.sol



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}
// File: Address.sol



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;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}
// File: ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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;
    }
}
// File: ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}
// File: IERC721.sol



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

// File: IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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

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



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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    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;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 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 = 1; 
        _burnCounter = 1;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 (!_checkOnERC721Received(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 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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

contract BoringApesv2 is ERC721A, Ownable, ERC2981, DefaultOperatorFilterer {
    using Strings for uint256;

    string private baseURI;
    string public notRevealedUri;
    string public contractURI;

    bool public public_mint_status = true;
    bool public whitelist_mint_status = true;
    bool public revealed = true;

    uint256 public MAX_SUPPLY = 8000;  
    uint256 public publicSaleCost = 0.0069 ether;
    uint256 public wlCost = 0 ether;
    uint256 public max_per_wallet = 20;  
    uint256 public whitelistCount;
    uint256 public whitelistLimit = 4000;
    uint256 public whitelistLimitPerWallet = 10;

    mapping(address => uint256) public publicMinted;
    mapping(address => uint256) public whitelistMinted;
    address[] public whitelistedAddresses;    

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri, string memory _contractURI) ERC721A("Boring Apes v2", "BORINGv2") {
     
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);   
    setRoyaltyInfo(owner(),500);
    contractURI = _contractURI;   
    mint(1);
    }

    function airdrop(address[] calldata receiver, uint256[] calldata quantity) public payable onlyOwner {
  
        require(receiver.length == quantity.length, "Airdrop data does not match");

        for(uint256 x = 0; x < receiver.length; x++){
        _safeMint(receiver[x], quantity[x]);
        }
    }

    function whitelistUsers(address[] calldata _users) public onlyOwner {
        delete whitelistedAddresses;
        whitelistedAddresses = _users;
    }

    function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

    function mint(uint256 quantity) public payable  {
        require(totalSupply() + quantity <= MAX_SUPPLY,"No More NFTs to Mint");
        require(publicMinted[msg.sender] + whitelistMinted[msg.sender] + quantity <= max_per_wallet, "Per Wallet Limit Reached");

        if (msg.sender != owner()) {

            if(whitelist_mint_status){

            require(isWhitelisted(msg.sender), "Not Whitelisted");
            require(whitelistMinted[msg.sender] + quantity <= whitelistLimitPerWallet, "Whitelist Limit Per Wallet Reached");
            require(whitelistCount + quantity <= whitelistLimit, "Overall Whitelist Limit Reached");
            require(msg.value >= (wlCost * quantity), "Not Enough ETH Sent");
            whitelistMinted[msg.sender] = whitelistMinted[msg.sender] + quantity;
            whitelistCount = whitelistCount + quantity;

            } else {

            require(public_mint_status, "Public mint status is off");           
            require(msg.value >= (publicSaleCost * quantity), "Not Enough ETH Sent");
            publicMinted[msg.sender] = publicMinted[msg.sender] + quantity;

            }          
              
                       
        }

        _safeMint(msg.sender, quantity);
        
    }
    

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        if(revealed == false) {
        return notRevealedUri;
        }
      
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : '';
    }

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

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

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

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

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

     function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, ERC2981)
        returns (bool)
    {
        // Supports the following `interfaceId`s:
        // - IERC165: 0x01ffc9a7
        // - IERC721: 0x80ac58cd
        // - IERC721Metadata: 0x5b5e139f
        // - IERC2981: 0x2a55205a
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId);
    }

      function setRoyaltyInfo(address _receiver, uint96 _royaltyFeesInBips) public onlyOwner {
        _setDefaultRoyalty(_receiver, _royaltyFeesInBips);
    }
   

    //only owner      
    
    function toggleReveal() external onlyOwner {
        
        if(revealed==false){
            revealed = true;
        }else{
            revealed = false;
        }
    }   
        
    function toggle_public_mint_status() external onlyOwner {
        
        if(public_mint_status==false){
            public_mint_status = true;
        }else{
            public_mint_status = false;
        }
    }  

    function toggle_whitelist_mint_status() external onlyOwner {
        
        if(whitelist_mint_status==false){
            whitelist_mint_status = true;
        }else{
            whitelist_mint_status = false;
        }
    }  

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }    

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }
   
    function withdraw() external payable onlyOwner {
  
    (bool main, ) = payable(owner()).call{value: address(this).balance}("");
    require(main);
    }

    function setPublicSaleCost(uint256 _publicSaleCost) external onlyOwner {
        publicSaleCost = _publicSaleCost;
    }

    function setWlCost(uint256 _wlCost) external onlyOwner {
        wlCost = _wlCost;
    }

    function setWhitelistLimit(uint256 _whitelistLimit) external onlyOwner {
        whitelistLimit = _whitelistLimit;
    }

    function setwhitelistLimitPerWallet(uint256 _whitelistLimitPerWallet) external onlyOwner {
        whitelistLimitPerWallet = _whitelistLimitPerWallet;
    }

    function setMax_per_wallet(uint256 _max_per_wallet) external onlyOwner {
        max_per_wallet = _max_per_wallet;
    }

    function setMAX_SUPPLY(uint256 _MAX_SUPPLY) external onlyOwner {
        MAX_SUPPLY = _MAX_SUPPLY;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
   }

    function getBaseURI() external view onlyOwner returns (string memory) {
        return baseURI;
    }
       
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receiver","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"payable","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_wallet","type":"uint256"}],"name":"setMax_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistLimit","type":"uint256"}],"name":"setWhitelistLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistLimitPerWallet","type":"uint256"}],"name":"setwhitelistLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_public_mint_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_whitelist_mint_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelist_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600d805462ffffff191662010101179055611f40600e556618838370f34000600f55600060105560146011819055610fa0601355600a90553480156200004957600080fd5b5060405162003bb638038062003bb68339810160408190526200006c9162000cc4565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600e81526020016d2137b934b7339020b832b9903b1960911b815250604051806040016040528060088152602001672127a924a723bb1960c11b8152508160019081620000dc919062000de3565b506002620000eb828262000de3565b5050700100000000000000000000000000000001600055506200010e33620002b0565b6daaeb6d7670e522a718067333cd4e3b1562000253578015620001a157604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200018257600080fd5b505af115801562000197573d6000803e3d6000fd5b5050505062000253565b6001600160a01b03821615620001f25760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000167565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200023957600080fd5b505af11580156200024e573d6000803e3d6000fd5b505050505b506200026190508362000302565b6200026c826200031e565b6200028c620002836007546001600160a01b031690565b6101f462000336565b600c6200029a828262000de3565b50620002a760016200034c565b50505062000fb6565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200030c6200072d565b600a6200031a828262000de3565b5050565b620003286200072d565b600b6200031a828262000de3565b620003406200072d565b6200031a82826200078b565b600e5481620003736000546001600160801b03600160801b82048116918116919091031690565b6200037f919062000ec5565b1115620003d35760405162461bcd60e51b815260206004820152601460248201527f4e6f204d6f7265204e46547320746f204d696e7400000000000000000000000060448201526064015b60405180910390fd5b601154336000908152601660209081526040808320546015909252909120548391620003ff9162000ec5565b6200040b919062000ec5565b11156200045b5760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401620003ca565b6007546001600160a01b031633146200071e57600d54610100900460ff161562000645576200048a336200088c565b620004ca5760405162461bcd60e51b815260206004820152600f60248201526e139bdd0815da1a5d195b1a5cdd1959608a1b6044820152606401620003ca565b60145433600090815260166020526040902054620004ea90839062000ec5565b1115620005455760405162461bcd60e51b815260206004820152602260248201527f57686974656c697374204c696d6974205065722057616c6c6574205265616368604482015261195960f21b6064820152608401620003ca565b6013548160125462000558919062000ec5565b1115620005a85760405162461bcd60e51b815260206004820152601f60248201527f4f766572616c6c2057686974656c697374204c696d69742052656163686564006044820152606401620003ca565b80601054620005b8919062000ee1565b341015620005ff5760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401620003ca565b336000908152601660205260409020546200061c90829062000ec5565b336000908152601660205260409020556012546200063c90829062000ec5565b6012556200071e565b600d5460ff16620006995760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401620003ca565b80600f54620006a9919062000ee1565b341015620006f05760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401620003ca565b336000908152601560205260409020546200070d90829062000ec5565b336000908152601560205260409020555b6200072a3382620008fd565b50565b6007546001600160a01b03163314620007895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003ca565b565b6127106001600160601b0382161115620007fb5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620003ca565b6001600160a01b038216620008535760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620003ca565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6000805b601754811015620008f457826001600160a01b031660178281548110620008bb57620008bb62000efb565b6000918252602090912001546001600160a01b031603620008df5750600192915050565b80620008eb8162000f11565b91505062000890565b50600092915050565b6200031a8282604051806020016040528060008152506200091f60201b60201c565b6200092e838383600162000933565b505050565b6000546001600160801b03166001600160a01b0385166200096657604051622e076360e81b815260040160405180910390fd5b83600003620009885760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101562000a9f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801562000a73575062000a71600088848862000acf565b155b1562000a92576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910162000a18565b50600080546001600160801b0319166001600160801b039290921691909117815562000ac89050565b5050505050565b600062000af0846001600160a01b031662000bf160201b620017ad1760201c565b1562000be557604051630a85bd0160e11b81526001600160a01b0385169063150b7a029062000b2a90339089908890889060040162000f2d565b6020604051808303816000875af192505050801562000b68575060408051601f3d908101601f1916820190925262000b659181019062000f83565b60015b62000bca573d80801562000b99576040519150601f19603f3d011682016040523d82523d6000602084013e62000b9e565b606091505b50805160000362000bc2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000be9565b5060015b949350505050565b3b151590565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000c2a57818101518382015260200162000c10565b50506000910152565b600082601f83011262000c4557600080fd5b81516001600160401b038082111562000c625762000c6262000bf7565b604051601f8301601f19908116603f0116810190828211818310171562000c8d5762000c8d62000bf7565b8160405283815286602085880101111562000ca757600080fd5b62000cba84602083016020890162000c0d565b9695505050505050565b60008060006060848603121562000cda57600080fd5b83516001600160401b038082111562000cf257600080fd5b62000d008783880162000c33565b9450602086015191508082111562000d1757600080fd5b62000d258783880162000c33565b9350604086015191508082111562000d3c57600080fd5b5062000d4b8682870162000c33565b9150509250925092565b600181811c9082168062000d6a57607f821691505b60208210810362000d8b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200092e57600081815260208120601f850160051c8101602086101562000dba5750805b601f850160051c820191505b8181101562000ddb5782815560010162000dc6565b505050505050565b81516001600160401b0381111562000dff5762000dff62000bf7565b62000e178162000e10845462000d55565b8462000d91565b602080601f83116001811462000e4f576000841562000e365750858301515b600019600386901b1c1916600185901b17855562000ddb565b600085815260208120601f198616915b8281101562000e805788860151825594840194600190910190840162000e5f565b508582101562000e9f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111562000edb5762000edb62000eaf565b92915050565b808202811582820484141762000edb5762000edb62000eaf565b634e487b7160e01b600052603260045260246000fd5b60006001820162000f265762000f2662000eaf565b5060010190565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000f6c8160a085016020870162000c0d565b601f01601f19169190910160a00195945050505050565b60006020828403121562000f9657600080fd5b81516001600160e01b03198116811462000faf57600080fd5b9392505050565b612bf08062000fc66000396000f3fe6080604052600436106103505760003560e01c806370a08231116101c6578063b88d4fde116100f7578063e985e9c511610095578063f12f6d5d1161006f578063f12f6d5d14610998578063f2624b5d146109b8578063f2c4ce1e146109ce578063f2fde38b146109ee57600080fd5b8063e985e9c51461090f578063ec9496ba14610958578063edec5f271461097857600080fd5b8063d2521ae8116100d1578063d2521ae8146108af578063d70a28d1146108cf578063dcc7eb35146108e5578063e8a3d485146108fa57600080fd5b8063b88d4fde1461084f578063ba4e5c491461086f578063c87b56dd1461088f57600080fd5b8063938e3d7b11610164578063a0712d681161013e578063a0712d68146107f0578063a22cb46514610803578063a405ea2514610823578063ab53fcaa1461083957600080fd5b8063938e3d7b1461078e57806395d89b41146107ae57806398a8cffe146107c357600080fd5b806381c4cede116101a057806381c4cede14610716578063835d997e146107305780638da5cb5b146107505780638dbb7c061461076e57600080fd5b806370a08231146106cc578063714c5398146106ec578063715018a61461070157600080fd5b8063312cabc9116102a05780634f6ccce71161023e5780635b8ad429116102185780635b8ad429146106655780635d12e13f1461067a5780636352211e1461069957806367243482146106b957600080fd5b80634f6ccce714610605578063518302271461062557806355f804b31461064557600080fd5b80633ccfd60b1161027a5780633ccfd60b146105a557806341f43434146105ad57806342842e0e146105cf578063453afb0f146105ef57600080fd5b8063312cabc91461055a57806332cb6b0c1461056f5780633af32abf1461058557600080fd5b80631015805b1161030d57806323b872dd116102e757806323b872dd146104c55780632a55205a146104e55780632f745c5914610524578063302150e51461054457600080fd5b80631015805b1461043b57806318160ddd146104765780631f8e8dc8146104a557600080fd5b806301ffc9a71461035557806302fa7c471461038a57806306fdde03146103ac578063081812fc146103ce578063081c8c4414610406578063095ea7b31461041b575b600080fd5b34801561036157600080fd5b50610375610370366004612454565b610a0e565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103aa6103a5366004612494565b610a2e565b005b3480156103b857600080fd5b506103c1610a44565b6040516103819190612527565b3480156103da57600080fd5b506103ee6103e936600461253a565b610ad6565b6040516001600160a01b039091168152602001610381565b34801561041257600080fd5b506103c1610b1a565b34801561042757600080fd5b506103aa610436366004612553565b610ba8565b34801561044757600080fd5b5061046861045636600461257d565b60156020526000908152604090205481565b604051908152602001610381565b34801561048257600080fd5b506104686000546001600160801b03600160801b82048116918116919091031690565b3480156104b157600080fd5b506103aa6104c036600461253a565b610bc1565b3480156104d157600080fd5b506103aa6104e0366004612598565b610bce565b3480156104f157600080fd5b506105056105003660046125d4565b610bf9565b604080516001600160a01b039093168352602083019190915201610381565b34801561053057600080fd5b5061046861053f366004612553565b610ca7565b34801561055057600080fd5b5061046860135481565b34801561056657600080fd5b506103aa610d9b565b34801561057b57600080fd5b50610468600e5481565b34801561059157600080fd5b506103756105a036600461257d565b610dd6565b6103aa610e3f565b3480156105b957600080fd5b506103ee6daaeb6d7670e522a718067333cd4e81565b3480156105db57600080fd5b506103aa6105ea366004612598565b610ebb565b3480156105fb57600080fd5b50610468600f5481565b34801561061157600080fd5b5061046861062036600461253a565b610ee0565b34801561063157600080fd5b50600d546103759062010000900460ff1681565b34801561065157600080fd5b506103aa610660366004612681565b610f89565b34801561067157600080fd5b506103aa610f9d565b34801561068657600080fd5b50600d5461037590610100900460ff1681565b3480156106a557600080fd5b506103ee6106b436600461253a565b610fdb565b6103aa6106c736600461270d565b610fed565b3480156106d857600080fd5b506104686106e736600461257d565b6110b5565b3480156106f857600080fd5b506103c1611103565b34801561070d57600080fd5b506103aa61111a565b34801561072257600080fd5b50600d546103759060ff1681565b34801561073c57600080fd5b506103aa61074b36600461253a565b61112c565b34801561075c57600080fd5b506007546001600160a01b03166103ee565b34801561077a57600080fd5b506103aa61078936600461253a565b611139565b34801561079a57600080fd5b506103aa6107a9366004612681565b611146565b3480156107ba57600080fd5b506103c161115a565b3480156107cf57600080fd5b506104686107de36600461257d565b60166020526000908152604090205481565b6103aa6107fe36600461253a565b611169565b34801561080f57600080fd5b506103aa61081e366004612786565b61150e565b34801561082f57600080fd5b5061046860145481565b34801561084557600080fd5b5061046860115481565b34801561085b57600080fd5b506103aa61086a3660046127b2565b611522565b34801561087b57600080fd5b506103ee61088a36600461253a565b611548565b34801561089b57600080fd5b506103c16108aa36600461253a565b611572565b3480156108bb57600080fd5b506103aa6108ca36600461253a565b61169d565b3480156108db57600080fd5b5061046860105481565b3480156108f157600080fd5b506103aa6116aa565b34801561090657600080fd5b506103c16116dc565b34801561091b57600080fd5b5061037561092a36600461282d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561096457600080fd5b506103aa61097336600461253a565b6116e9565b34801561098457600080fd5b506103aa610993366004612860565b6116f6565b3480156109a457600080fd5b506103aa6109b336600461253a565b611716565b3480156109c457600080fd5b5061046860125481565b3480156109da57600080fd5b506103aa6109e9366004612681565b611723565b3480156109fa57600080fd5b506103aa610a0936600461257d565b611737565b6000610a19826117b3565b80610a285750610a288261181e565b92915050565b610a36611843565b610a40828261189d565b5050565b606060018054610a53906128a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7f906128a1565b8015610acc5780601f10610aa157610100808354040283529160200191610acc565b820191906000526020600020905b815481529060010190602001808311610aaf57829003601f168201915b5050505050905090565b6000610ae18261199a565b610afe576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b8054610b27906128a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b53906128a1565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b505050505081565b81610bb2816119ce565b610bbc8383611a87565b505050565b610bc9611843565b601455565b826001600160a01b0381163314610be857610be8336119ce565b610bf3848484611b0f565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c6e5750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c8d906001600160601b0316876128f1565b610c97919061291e565b91519350909150505b9250929050565b6000610cb2836110b5565b8210610cd1576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561035057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610d495750610d93565b80516001600160a01b031615610d5e57805192505b876001600160a01b0316836001600160a01b031603610d9157868403610d8a57509350610a2892505050565b6001909301925b505b600101610ce2565b610da3611843565b600d54610100900460ff161515600003610dc857600d805461ff001916610100179055565b600d805461ff00191690555b565b6000805b601754811015610e3657826001600160a01b031660178281548110610e0157610e01612932565b6000918252602090912001546001600160a01b031603610e245750600192915050565b80610e2e81612948565b915050610dda565b50600092915050565b610e47611843565b6000610e5b6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ea5576040519150601f19603f3d011682016040523d82523d6000602084013e610eaa565b606091505b5050905080610eb857600080fd5b50565b826001600160a01b0381163314610ed557610ed5336119ce565b610bf3848484611b1a565b600080546001600160801b031681805b82811015610f6f57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610f6657858303610f5f5750949350505050565b6001909201915b50600101610ef0565b506040516329c8c00760e21b815260040160405180910390fd5b610f91611843565b600a610a4082826129af565b610fa5611843565b600d5462010000900460ff161515600003610fcd57600d805462ff0000191662010000179055565b600d805462ff000019169055565b6000610fe682611b35565b5192915050565b610ff5611843565b8281146110495760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d61746368000000000060448201526064015b60405180910390fd5b60005b838110156110ae5761109c85858381811061106957611069612932565b905060200201602081019061107e919061257d565b84848481811061109057611090612932565b90506020020135611c57565b806110a681612948565b91505061104c565b5050505050565b60006001600160a01b0382166110de576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b606061110d611843565b600a8054610a53906128a1565b611122611843565b610dd46000611c71565b611134611843565b601155565b611141611843565b600f55565b61114e611843565b600c610a4082826129af565b606060028054610a53906128a1565b600e548161118f6000546001600160801b03600160801b82048116918116919091031690565b6111999190612a6e565b11156111de5760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401611040565b60115433600090815260166020908152604080832054601590925290912054839161120891612a6e565b6112129190612a6e565b11156112605760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401611040565b6007546001600160a01b0316331461150457600d54610100900460ff16156114335761128b33610dd6565b6112c95760405162461bcd60e51b815260206004820152600f60248201526e139bdd0815da1a5d195b1a5cdd1959608a1b6044820152606401611040565b601454336000908152601660205260409020546112e7908390612a6e565b11156113405760405162461bcd60e51b815260206004820152602260248201527f57686974656c697374204c696d6974205065722057616c6c6574205265616368604482015261195960f21b6064820152608401611040565b601354816012546113519190612a6e565b111561139f5760405162461bcd60e51b815260206004820152601f60248201527f4f766572616c6c2057686974656c697374204c696d69742052656163686564006044820152606401611040565b806010546113ad91906128f1565b3410156113f25760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401611040565b3360009081526016602052604090205461140d908290612a6e565b3360009081526016602052604090205560125461142b908290612a6e565b601255611504565b600d5460ff166114855760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401611040565b80600f5461149391906128f1565b3410156114d85760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401611040565b336000908152601560205260409020546114f3908290612a6e565b336000908152601560205260409020555b610eb83382611c57565b81611518816119ce565b610bbc8383611cc3565b836001600160a01b038116331461153c5761153c336119ce565b6110ae85858585611d58565b6017818154811061155857600080fd5b6000918252602090912001546001600160a01b0316905081565b606061157d8261199a565b61159a57604051630a14c4b560e41b815260040160405180910390fd5b600d5462010000900460ff16151560000361164157600b80546115bc906128a1565b80601f01602080910402602001604051908101604052809291908181526020018280546115e8906128a1565b80156116355780601f1061160a57610100808354040283529160200191611635565b820191906000526020600020905b81548152906001019060200180831161161857829003601f168201915b50505050509050919050565b600a805461164e906128a1565b905060000361166c5760405180602001604052806000815250610a28565b600a61167783611d8c565b604051602001611688929190612a81565b60405160208183030381529060405292915050565b6116a5611843565b601355565b6116b2611843565b600d5460ff1615156000036116d057600d805460ff19166001179055565b600d805460ff19169055565b600c8054610b27906128a1565b6116f1611843565b600e55565b6116fe611843565b61170a601760006123a8565b610bbc601783836123c6565b61171e611843565b601055565b61172b611843565b600b610a4082826129af565b61173f611843565b6001600160a01b0381166117a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611040565b610eb881611c71565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806117e457506001600160e01b03198216635b5e139f60e01b145b806117ff57506001600160e01b0319821663780e9d6360e01b145b80610a2857506301ffc9a760e01b6001600160e01b0319831614610a28565b60006001600160e01b0319821663152a902d60e11b1480610a285750610a28826117b3565b6007546001600160a01b03163314610dd45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611040565b6127106001600160601b038216111561190b5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611040565b6001600160a01b0382166119615760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401611040565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b600080546001600160801b031682108015610a28575050600090815260036020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610eb857604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5f9190612b18565b610eb857604051633b79c77360e21b81526001600160a01b0382166004820152602401611040565b6000611a9282610fdb565b9050806001600160a01b0316836001600160a01b031603611ac65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590611ae65750611ae4813361092a565b155b15611b04576040516367d9dca160e11b815260040160405180910390fd5b610bbc838383611e97565b610bbc838383611ef3565b610bbc83838360405180602001604052806000815250611522565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611c3e57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c3c5780516001600160a01b031615611bd3579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c37579392505050565b611bd3565b505b604051636f96cda160e11b815260040160405180910390fd5b610a4082826040518060200160405280600081525061210d565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611cec5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611d63848484611ef3565b611d6f8484848461211a565b610bf3576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611db35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ddd5780611dc781612948565b9150611dd69050600a8361291e565b9150611db7565b6000816001600160401b03811115611df757611df76125f6565b6040519080825280601f01601f191660200182016040528015611e21576020820181803683370190505b508593509050815b8315611e8e57611e3a600a85612b35565b611e45906030612a6e565b60f81b82611e5283612b49565b92508281518110611e6557611e65612932565b60200101906001600160f81b031916908160001a905350611e87600a8561291e565b9350611e29565b50949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611efe82611b35565b80519091506000906001600160a01b0316336001600160a01b03161480611f2c57508151611f2c903361092a565b80611f47575033611f3c84610ad6565b6001600160a01b0316145b905080611f6757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611f9c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611fc357604051633a954ecd60e21b815260040160405180910390fd5b611fd36000848460000151611e97565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166120c6576000546001600160801b03168110156120c657825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110ae565b610bbc838383600161221d565b60006001600160a01b0384163b1561221157604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061215e903390899088908890600401612b60565b6020604051808303816000875af1925050508015612199575060408051601f3d908101601f1916820190925261219691810190612b9d565b60015b6121f7573d8080156121c7576040519150601f19603f3d011682016040523d82523d6000602084013e6121cc565b606091505b5080516000036121ef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612215565b5060015b949350505050565b6000546001600160801b03166001600160a01b03851661224f57604051622e076360e81b815260040160405180910390fd5b836000036122705760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156123825760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156123585750612356600088848861211a565b155b15612376576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612301565b50600080546001600160801b0319166001600160801b03929092169190911790556110ae565b5080546000825590600052602060002090810190610eb89190612429565b828054828255906000526020600020908101928215612419579160200282015b828111156124195781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906123e6565b50612425929150612429565b5090565b5b80821115612425576000815560010161242a565b6001600160e01b031981168114610eb857600080fd5b60006020828403121561246657600080fd5b81356124718161243e565b9392505050565b80356001600160a01b038116811461248f57600080fd5b919050565b600080604083850312156124a757600080fd5b6124b083612478565b915060208301356001600160601b03811681146124cc57600080fd5b809150509250929050565b60005b838110156124f25781810151838201526020016124da565b50506000910152565b600081518084526125138160208601602086016124d7565b601f01601f19169290920160200192915050565b60208152600061247160208301846124fb565b60006020828403121561254c57600080fd5b5035919050565b6000806040838503121561256657600080fd5b61256f83612478565b946020939093013593505050565b60006020828403121561258f57600080fd5b61247182612478565b6000806000606084860312156125ad57600080fd5b6125b684612478565b92506125c460208501612478565b9150604084013590509250925092565b600080604083850312156125e757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612626576126266125f6565b604051601f8501601f19908116603f0116810190828211818310171561264e5761264e6125f6565b8160405280935085815286868601111561266757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561269357600080fd5b81356001600160401b038111156126a957600080fd5b8201601f810184136126ba57600080fd5b6122158482356020840161260c565b60008083601f8401126126db57600080fd5b5081356001600160401b038111156126f257600080fd5b6020830191508360208260051b8501011115610ca057600080fd5b6000806000806040858703121561272357600080fd5b84356001600160401b038082111561273a57600080fd5b612746888389016126c9565b9096509450602087013591508082111561275f57600080fd5b5061276c878288016126c9565b95989497509550505050565b8015158114610eb857600080fd5b6000806040838503121561279957600080fd5b6127a283612478565b915060208301356124cc81612778565b600080600080608085870312156127c857600080fd5b6127d185612478565b93506127df60208601612478565b92506040850135915060608501356001600160401b0381111561280157600080fd5b8501601f8101871361281257600080fd5b6128218782356020840161260c565b91505092959194509250565b6000806040838503121561284057600080fd5b61284983612478565b915061285760208401612478565b90509250929050565b6000806020838503121561287357600080fd5b82356001600160401b0381111561288957600080fd5b612895858286016126c9565b90969095509350505050565b600181811c908216806128b557607f821691505b6020821081036128d557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a2857610a286128db565b634e487b7160e01b600052601260045260246000fd5b60008261292d5761292d612908565b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161295a5761295a6128db565b5060010190565b601f821115610bbc57600081815260208120601f850160051c810160208610156129885750805b601f850160051c820191505b818110156129a757828155600101612994565b505050505050565b81516001600160401b038111156129c8576129c86125f6565b6129dc816129d684546128a1565b84612961565b602080601f831160018114612a1157600084156129f95750858301515b600019600386901b1c1916600185901b1785556129a7565b600085815260208120601f198616915b82811015612a4057888601518255948401946001909101908401612a21565b5085821015612a5e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610a2857610a286128db565b6000808454612a8f816128a1565b60018281168015612aa75760018114612abc57612aeb565b60ff1984168752821515830287019450612aeb565b8860005260208060002060005b85811015612ae25781548a820152908401908201612ac9565b50505082870194505b505050508351612aff8183602088016124d7565b64173539b7b760d91b9101908152600501949350505050565b600060208284031215612b2a57600080fd5b815161247181612778565b600082612b4457612b44612908565b500690565b600081612b5857612b586128db565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b93908301846124fb565b9695505050505050565b600060208284031215612baf57600080fd5b81516124718161243e56fea264697066735822122087147794df0d281c078a498e8a66b5116f4f3bc1b641f54a6bfa13b55c7de20764736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569656d716a6b6f7133706761333536646f777a6a74797561777935336d34696a7462347834616f6f6e3476326b32706275766e34342f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103505760003560e01c806370a08231116101c6578063b88d4fde116100f7578063e985e9c511610095578063f12f6d5d1161006f578063f12f6d5d14610998578063f2624b5d146109b8578063f2c4ce1e146109ce578063f2fde38b146109ee57600080fd5b8063e985e9c51461090f578063ec9496ba14610958578063edec5f271461097857600080fd5b8063d2521ae8116100d1578063d2521ae8146108af578063d70a28d1146108cf578063dcc7eb35146108e5578063e8a3d485146108fa57600080fd5b8063b88d4fde1461084f578063ba4e5c491461086f578063c87b56dd1461088f57600080fd5b8063938e3d7b11610164578063a0712d681161013e578063a0712d68146107f0578063a22cb46514610803578063a405ea2514610823578063ab53fcaa1461083957600080fd5b8063938e3d7b1461078e57806395d89b41146107ae57806398a8cffe146107c357600080fd5b806381c4cede116101a057806381c4cede14610716578063835d997e146107305780638da5cb5b146107505780638dbb7c061461076e57600080fd5b806370a08231146106cc578063714c5398146106ec578063715018a61461070157600080fd5b8063312cabc9116102a05780634f6ccce71161023e5780635b8ad429116102185780635b8ad429146106655780635d12e13f1461067a5780636352211e1461069957806367243482146106b957600080fd5b80634f6ccce714610605578063518302271461062557806355f804b31461064557600080fd5b80633ccfd60b1161027a5780633ccfd60b146105a557806341f43434146105ad57806342842e0e146105cf578063453afb0f146105ef57600080fd5b8063312cabc91461055a57806332cb6b0c1461056f5780633af32abf1461058557600080fd5b80631015805b1161030d57806323b872dd116102e757806323b872dd146104c55780632a55205a146104e55780632f745c5914610524578063302150e51461054457600080fd5b80631015805b1461043b57806318160ddd146104765780631f8e8dc8146104a557600080fd5b806301ffc9a71461035557806302fa7c471461038a57806306fdde03146103ac578063081812fc146103ce578063081c8c4414610406578063095ea7b31461041b575b600080fd5b34801561036157600080fd5b50610375610370366004612454565b610a0e565b60405190151581526020015b60405180910390f35b34801561039657600080fd5b506103aa6103a5366004612494565b610a2e565b005b3480156103b857600080fd5b506103c1610a44565b6040516103819190612527565b3480156103da57600080fd5b506103ee6103e936600461253a565b610ad6565b6040516001600160a01b039091168152602001610381565b34801561041257600080fd5b506103c1610b1a565b34801561042757600080fd5b506103aa610436366004612553565b610ba8565b34801561044757600080fd5b5061046861045636600461257d565b60156020526000908152604090205481565b604051908152602001610381565b34801561048257600080fd5b506104686000546001600160801b03600160801b82048116918116919091031690565b3480156104b157600080fd5b506103aa6104c036600461253a565b610bc1565b3480156104d157600080fd5b506103aa6104e0366004612598565b610bce565b3480156104f157600080fd5b506105056105003660046125d4565b610bf9565b604080516001600160a01b039093168352602083019190915201610381565b34801561053057600080fd5b5061046861053f366004612553565b610ca7565b34801561055057600080fd5b5061046860135481565b34801561056657600080fd5b506103aa610d9b565b34801561057b57600080fd5b50610468600e5481565b34801561059157600080fd5b506103756105a036600461257d565b610dd6565b6103aa610e3f565b3480156105b957600080fd5b506103ee6daaeb6d7670e522a718067333cd4e81565b3480156105db57600080fd5b506103aa6105ea366004612598565b610ebb565b3480156105fb57600080fd5b50610468600f5481565b34801561061157600080fd5b5061046861062036600461253a565b610ee0565b34801561063157600080fd5b50600d546103759062010000900460ff1681565b34801561065157600080fd5b506103aa610660366004612681565b610f89565b34801561067157600080fd5b506103aa610f9d565b34801561068657600080fd5b50600d5461037590610100900460ff1681565b3480156106a557600080fd5b506103ee6106b436600461253a565b610fdb565b6103aa6106c736600461270d565b610fed565b3480156106d857600080fd5b506104686106e736600461257d565b6110b5565b3480156106f857600080fd5b506103c1611103565b34801561070d57600080fd5b506103aa61111a565b34801561072257600080fd5b50600d546103759060ff1681565b34801561073c57600080fd5b506103aa61074b36600461253a565b61112c565b34801561075c57600080fd5b506007546001600160a01b03166103ee565b34801561077a57600080fd5b506103aa61078936600461253a565b611139565b34801561079a57600080fd5b506103aa6107a9366004612681565b611146565b3480156107ba57600080fd5b506103c161115a565b3480156107cf57600080fd5b506104686107de36600461257d565b60166020526000908152604090205481565b6103aa6107fe36600461253a565b611169565b34801561080f57600080fd5b506103aa61081e366004612786565b61150e565b34801561082f57600080fd5b5061046860145481565b34801561084557600080fd5b5061046860115481565b34801561085b57600080fd5b506103aa61086a3660046127b2565b611522565b34801561087b57600080fd5b506103ee61088a36600461253a565b611548565b34801561089b57600080fd5b506103c16108aa36600461253a565b611572565b3480156108bb57600080fd5b506103aa6108ca36600461253a565b61169d565b3480156108db57600080fd5b5061046860105481565b3480156108f157600080fd5b506103aa6116aa565b34801561090657600080fd5b506103c16116dc565b34801561091b57600080fd5b5061037561092a36600461282d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561096457600080fd5b506103aa61097336600461253a565b6116e9565b34801561098457600080fd5b506103aa610993366004612860565b6116f6565b3480156109a457600080fd5b506103aa6109b336600461253a565b611716565b3480156109c457600080fd5b5061046860125481565b3480156109da57600080fd5b506103aa6109e9366004612681565b611723565b3480156109fa57600080fd5b506103aa610a0936600461257d565b611737565b6000610a19826117b3565b80610a285750610a288261181e565b92915050565b610a36611843565b610a40828261189d565b5050565b606060018054610a53906128a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7f906128a1565b8015610acc5780601f10610aa157610100808354040283529160200191610acc565b820191906000526020600020905b815481529060010190602001808311610aaf57829003601f168201915b5050505050905090565b6000610ae18261199a565b610afe576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b8054610b27906128a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b53906128a1565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b505050505081565b81610bb2816119ce565b610bbc8383611a87565b505050565b610bc9611843565b601455565b826001600160a01b0381163314610be857610be8336119ce565b610bf3848484611b0f565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c6e5750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c8d906001600160601b0316876128f1565b610c97919061291e565b91519350909150505b9250929050565b6000610cb2836110b5565b8210610cd1576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561035057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610d495750610d93565b80516001600160a01b031615610d5e57805192505b876001600160a01b0316836001600160a01b031603610d9157868403610d8a57509350610a2892505050565b6001909301925b505b600101610ce2565b610da3611843565b600d54610100900460ff161515600003610dc857600d805461ff001916610100179055565b600d805461ff00191690555b565b6000805b601754811015610e3657826001600160a01b031660178281548110610e0157610e01612932565b6000918252602090912001546001600160a01b031603610e245750600192915050565b80610e2e81612948565b915050610dda565b50600092915050565b610e47611843565b6000610e5b6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ea5576040519150601f19603f3d011682016040523d82523d6000602084013e610eaa565b606091505b5050905080610eb857600080fd5b50565b826001600160a01b0381163314610ed557610ed5336119ce565b610bf3848484611b1a565b600080546001600160801b031681805b82811015610f6f57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610f6657858303610f5f5750949350505050565b6001909201915b50600101610ef0565b506040516329c8c00760e21b815260040160405180910390fd5b610f91611843565b600a610a4082826129af565b610fa5611843565b600d5462010000900460ff161515600003610fcd57600d805462ff0000191662010000179055565b600d805462ff000019169055565b6000610fe682611b35565b5192915050565b610ff5611843565b8281146110495760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d61746368000000000060448201526064015b60405180910390fd5b60005b838110156110ae5761109c85858381811061106957611069612932565b905060200201602081019061107e919061257d565b84848481811061109057611090612932565b90506020020135611c57565b806110a681612948565b91505061104c565b5050505050565b60006001600160a01b0382166110de576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b606061110d611843565b600a8054610a53906128a1565b611122611843565b610dd46000611c71565b611134611843565b601155565b611141611843565b600f55565b61114e611843565b600c610a4082826129af565b606060028054610a53906128a1565b600e548161118f6000546001600160801b03600160801b82048116918116919091031690565b6111999190612a6e565b11156111de5760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401611040565b60115433600090815260166020908152604080832054601590925290912054839161120891612a6e565b6112129190612a6e565b11156112605760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401611040565b6007546001600160a01b0316331461150457600d54610100900460ff16156114335761128b33610dd6565b6112c95760405162461bcd60e51b815260206004820152600f60248201526e139bdd0815da1a5d195b1a5cdd1959608a1b6044820152606401611040565b601454336000908152601660205260409020546112e7908390612a6e565b11156113405760405162461bcd60e51b815260206004820152602260248201527f57686974656c697374204c696d6974205065722057616c6c6574205265616368604482015261195960f21b6064820152608401611040565b601354816012546113519190612a6e565b111561139f5760405162461bcd60e51b815260206004820152601f60248201527f4f766572616c6c2057686974656c697374204c696d69742052656163686564006044820152606401611040565b806010546113ad91906128f1565b3410156113f25760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401611040565b3360009081526016602052604090205461140d908290612a6e565b3360009081526016602052604090205560125461142b908290612a6e565b601255611504565b600d5460ff166114855760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401611040565b80600f5461149391906128f1565b3410156114d85760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401611040565b336000908152601560205260409020546114f3908290612a6e565b336000908152601560205260409020555b610eb83382611c57565b81611518816119ce565b610bbc8383611cc3565b836001600160a01b038116331461153c5761153c336119ce565b6110ae85858585611d58565b6017818154811061155857600080fd5b6000918252602090912001546001600160a01b0316905081565b606061157d8261199a565b61159a57604051630a14c4b560e41b815260040160405180910390fd5b600d5462010000900460ff16151560000361164157600b80546115bc906128a1565b80601f01602080910402602001604051908101604052809291908181526020018280546115e8906128a1565b80156116355780601f1061160a57610100808354040283529160200191611635565b820191906000526020600020905b81548152906001019060200180831161161857829003601f168201915b50505050509050919050565b600a805461164e906128a1565b905060000361166c5760405180602001604052806000815250610a28565b600a61167783611d8c565b604051602001611688929190612a81565b60405160208183030381529060405292915050565b6116a5611843565b601355565b6116b2611843565b600d5460ff1615156000036116d057600d805460ff19166001179055565b600d805460ff19169055565b600c8054610b27906128a1565b6116f1611843565b600e55565b6116fe611843565b61170a601760006123a8565b610bbc601783836123c6565b61171e611843565b601055565b61172b611843565b600b610a4082826129af565b61173f611843565b6001600160a01b0381166117a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611040565b610eb881611c71565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806117e457506001600160e01b03198216635b5e139f60e01b145b806117ff57506001600160e01b0319821663780e9d6360e01b145b80610a2857506301ffc9a760e01b6001600160e01b0319831614610a28565b60006001600160e01b0319821663152a902d60e11b1480610a285750610a28826117b3565b6007546001600160a01b03163314610dd45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611040565b6127106001600160601b038216111561190b5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611040565b6001600160a01b0382166119615760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401611040565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b600080546001600160801b031682108015610a28575050600090815260036020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610eb857604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5f9190612b18565b610eb857604051633b79c77360e21b81526001600160a01b0382166004820152602401611040565b6000611a9282610fdb565b9050806001600160a01b0316836001600160a01b031603611ac65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590611ae65750611ae4813361092a565b155b15611b04576040516367d9dca160e11b815260040160405180910390fd5b610bbc838383611e97565b610bbc838383611ef3565b610bbc83838360405180602001604052806000815250611522565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611c3e57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c3c5780516001600160a01b031615611bd3579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c37579392505050565b611bd3565b505b604051636f96cda160e11b815260040160405180910390fd5b610a4082826040518060200160405280600081525061210d565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611cec5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611d63848484611ef3565b611d6f8484848461211a565b610bf3576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611db35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ddd5780611dc781612948565b9150611dd69050600a8361291e565b9150611db7565b6000816001600160401b03811115611df757611df76125f6565b6040519080825280601f01601f191660200182016040528015611e21576020820181803683370190505b508593509050815b8315611e8e57611e3a600a85612b35565b611e45906030612a6e565b60f81b82611e5283612b49565b92508281518110611e6557611e65612932565b60200101906001600160f81b031916908160001a905350611e87600a8561291e565b9350611e29565b50949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611efe82611b35565b80519091506000906001600160a01b0316336001600160a01b03161480611f2c57508151611f2c903361092a565b80611f47575033611f3c84610ad6565b6001600160a01b0316145b905080611f6757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611f9c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611fc357604051633a954ecd60e21b815260040160405180910390fd5b611fd36000848460000151611e97565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166120c6576000546001600160801b03168110156120c657825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110ae565b610bbc838383600161221d565b60006001600160a01b0384163b1561221157604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061215e903390899088908890600401612b60565b6020604051808303816000875af1925050508015612199575060408051601f3d908101601f1916820190925261219691810190612b9d565b60015b6121f7573d8080156121c7576040519150601f19603f3d011682016040523d82523d6000602084013e6121cc565b606091505b5080516000036121ef576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612215565b5060015b949350505050565b6000546001600160801b03166001600160a01b03851661224f57604051622e076360e81b815260040160405180910390fd5b836000036122705760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156123825760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156123585750612356600088848861211a565b155b15612376576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101612301565b50600080546001600160801b0319166001600160801b03929092169190911790556110ae565b5080546000825590600052602060002090810190610eb89190612429565b828054828255906000526020600020908101928215612419579160200282015b828111156124195781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906123e6565b50612425929150612429565b5090565b5b80821115612425576000815560010161242a565b6001600160e01b031981168114610eb857600080fd5b60006020828403121561246657600080fd5b81356124718161243e565b9392505050565b80356001600160a01b038116811461248f57600080fd5b919050565b600080604083850312156124a757600080fd5b6124b083612478565b915060208301356001600160601b03811681146124cc57600080fd5b809150509250929050565b60005b838110156124f25781810151838201526020016124da565b50506000910152565b600081518084526125138160208601602086016124d7565b601f01601f19169290920160200192915050565b60208152600061247160208301846124fb565b60006020828403121561254c57600080fd5b5035919050565b6000806040838503121561256657600080fd5b61256f83612478565b946020939093013593505050565b60006020828403121561258f57600080fd5b61247182612478565b6000806000606084860312156125ad57600080fd5b6125b684612478565b92506125c460208501612478565b9150604084013590509250925092565b600080604083850312156125e757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612626576126266125f6565b604051601f8501601f19908116603f0116810190828211818310171561264e5761264e6125f6565b8160405280935085815286868601111561266757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561269357600080fd5b81356001600160401b038111156126a957600080fd5b8201601f810184136126ba57600080fd5b6122158482356020840161260c565b60008083601f8401126126db57600080fd5b5081356001600160401b038111156126f257600080fd5b6020830191508360208260051b8501011115610ca057600080fd5b6000806000806040858703121561272357600080fd5b84356001600160401b038082111561273a57600080fd5b612746888389016126c9565b9096509450602087013591508082111561275f57600080fd5b5061276c878288016126c9565b95989497509550505050565b8015158114610eb857600080fd5b6000806040838503121561279957600080fd5b6127a283612478565b915060208301356124cc81612778565b600080600080608085870312156127c857600080fd5b6127d185612478565b93506127df60208601612478565b92506040850135915060608501356001600160401b0381111561280157600080fd5b8501601f8101871361281257600080fd5b6128218782356020840161260c565b91505092959194509250565b6000806040838503121561284057600080fd5b61284983612478565b915061285760208401612478565b90509250929050565b6000806020838503121561287357600080fd5b82356001600160401b0381111561288957600080fd5b612895858286016126c9565b90969095509350505050565b600181811c908216806128b557607f821691505b6020821081036128d557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a2857610a286128db565b634e487b7160e01b600052601260045260246000fd5b60008261292d5761292d612908565b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161295a5761295a6128db565b5060010190565b601f821115610bbc57600081815260208120601f850160051c810160208610156129885750805b601f850160051c820191505b818110156129a757828155600101612994565b505050505050565b81516001600160401b038111156129c8576129c86125f6565b6129dc816129d684546128a1565b84612961565b602080601f831160018114612a1157600084156129f95750858301515b600019600386901b1c1916600185901b1785556129a7565b600085815260208120601f198616915b82811015612a4057888601518255948401946001909101908401612a21565b5085821015612a5e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610a2857610a286128db565b6000808454612a8f816128a1565b60018281168015612aa75760018114612abc57612aeb565b60ff1984168752821515830287019450612aeb565b8860005260208060002060005b85811015612ae25781548a820152908401908201612ac9565b50505082870194505b505050508351612aff8183602088016124d7565b64173539b7b760d91b9101908152600501949350505050565b600060208284031215612b2a57600080fd5b815161247181612778565b600082612b4457612b44612908565b500690565b600081612b5857612b586128db565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b93908301846124fb565b9695505050505050565b600060208284031215612baf57600080fd5b81516124718161243e56fea264697066735822122087147794df0d281c078a498e8a66b5116f4f3bc1b641f54a6bfa13b55c7de20764736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569656d716a6b6f7133706761333536646f777a6a74797561777935336d34696a7462347834616f6f6e3476326b32706275766e34342f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://bafybeiemqjkoq3pga356dowzjtyuawy53m4ijtb4x4aoon4v2k2pbuvn44/
Arg [1] : _initNotRevealedUri (string): ,
Arg [2] : _contractURI (string):

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [4] : 697066733a2f2f62616679626569656d716a6b6f7133706761333536646f777a
Arg [5] : 6a74797561777935336d34696a7462347834616f6f6e3476326b32706275766e
Arg [6] : 34342f0000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 2c00000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56441:7251:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60899:487;;;;;;;;;;-1:-1:-1;60899:487:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;60899:487:0;;;;;;;;61396:155;;;;;;;;;;-1:-1:-1;61396:155:0;;;;;:::i;:::-;;:::i;:::-;;42546:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44057:204::-;;;;;;;;;;-1:-1:-1;44057:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2246:32:1;;;2228:51;;2216:2;2201:18;44057:204:0;2082:203:1;56587:28:0;;;;;;;;;;;;;:::i;60147:157::-;;;;;;;;;;-1:-1:-1;60147:157:0;;;;;:::i;:::-;;:::i;57087:47::-;;;;;;;;;;-1:-1:-1;57087:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2886:25:1;;;2874:2;2859:18;57087:47:0;2740:177:1;37173:280:0;;;;;;;;;;;;37226:7;37418:12;-1:-1:-1;;;;;;;;37418:12:0;;;;37402:13;;;:28;;;;37395:35;;37173:280;63056:158;;;;;;;;;;-1:-1:-1;63056:158:0;;;;;:::i;:::-;;:::i;60312:163::-;;;;;;;;;;-1:-1:-1;60312:163:0;;;;;:::i;:::-;;:::i;24996:442::-;;;;;;;;;;-1:-1:-1;24996:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3700:32:1;;;3682:51;;3764:2;3749:18;;3742:34;;;;3655:18;24996:442:0;3508:274:1;38759:1105:0;;;;;;;;;;-1:-1:-1;38759:1105:0;;;;;:::i;:::-;;:::i;56992:36::-;;;;;;;;;;;;;;;;62024:234;;;;;;;;;;;;;:::i;56783:32::-;;;;;;;;;;;;;;;;58056:239;;;;;;;;;;-1:-1:-1;58056:239:0;;;;;:::i;:::-;;:::i;62533:157::-;;;:::i;2944:143::-;;;;;;;;;;;;3044:42;2944:143;;60483:171;;;;;;;;;;-1:-1:-1;60483:171:0;;;;;:::i;:::-;;:::i;56824:44::-;;;;;;;;;;;;;;;;37746:713;;;;;;;;;;-1:-1:-1;37746:713:0;;;;;:::i;:::-;;:::i;56747:27::-;;;;;;;;;;-1:-1:-1;56747:27:0;;;;;;;;;;;63466:103;;;;;;;;;;-1:-1:-1;63466:103:0;;;;;:::i;:::-;;:::i;61594:179::-;;;;;;;;;;;;;:::i;56700:40::-;;;;;;;;;;-1:-1:-1;56700:40:0;;;;;;;;;;;42355:124;;;;;;;;;;-1:-1:-1;42355:124:0;;;;;:::i;:::-;;:::i;57575:311::-;;;;;;:::i;:::-;;:::i;40372:206::-;;;;;;;;;;-1:-1:-1;40372:206:0;;;;;:::i;:::-;;:::i;63577:103::-;;;;;;;;;;;;;:::i;10970:::-;;;;;;;;;;;;;:::i;56656:37::-;;;;;;;;;;-1:-1:-1;56656:37:0;;;;;;;;63222:122;;;;;;;;;;-1:-1:-1;63222:122:0;;;;;:::i;:::-;;:::i;10322:87::-;;;;;;;;;;-1:-1:-1;10395:6:0;;-1:-1:-1;;;;;10395:6:0;10322:87;;62698:122;;;;;;;;;;-1:-1:-1;62698:122:0;;;;;:::i;:::-;;:::i;62406:116::-;;;;;;;;;;-1:-1:-1;62406:116:0;;;;;:::i;:::-;;:::i;42715:104::-;;;;;;;;;;;;;:::i;57141:50::-;;;;;;;;;;-1:-1:-1;57141:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;58303:1273;;;;;;:::i;:::-;;:::i;59963:176::-;;;;;;;;;;-1:-1:-1;59963:176:0;;;;;:::i;:::-;;:::i;57035:43::-;;;;;;;;;;;;;;;;56913:34;;;;;;;;;;;;;;;;60662:228;;;;;;;;;;-1:-1:-1;60662:228:0;;;;;:::i;:::-;;:::i;57198:37::-;;;;;;;;;;-1:-1:-1;57198:37:0;;;;;:::i;:::-;;:::i;59590:365::-;;;;;;;;;;-1:-1:-1;59590:365:0;;;;;:::i;:::-;;:::i;62926:122::-;;;;;;;;;;-1:-1:-1;62926:122:0;;;;;:::i;:::-;;:::i;56875:31::-;;;;;;;;;;;;;;;;61792:222;;;;;;;;;;;;;:::i;56622:25::-;;;;;;;;;;;;;:::i;44691:164::-;;;;;;;;;;-1:-1:-1;44691:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;44812:25:0;;;44788:4;44812:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44691:164;63352:106;;;;;;;;;;-1:-1:-1;63352:106:0;;;;;:::i;:::-;;:::i;57894:154::-;;;;;;;;;;-1:-1:-1;57894:154:0;;;;;:::i;:::-;;:::i;62828:90::-;;;;;;;;;;-1:-1:-1;62828:90:0;;;;;:::i;:::-;;:::i;56956:29::-;;;;;;;;;;;;;;;;62268:126;;;;;;;;;;-1:-1:-1;62268:126:0;;;;;:::i;:::-;;:::i;11228:201::-;;;;;;;;;;-1:-1:-1;11228:201:0;;;;;:::i;:::-;;:::i;60899:487::-;61047:4;61285:38;61311:11;61285:25;:38::i;:::-;:93;;;;61340:38;61366:11;61340:25;:38::i;:::-;61265:113;60899:487;-1:-1:-1;;60899:487:0:o;61396:155::-;10208:13;:11;:13::i;:::-;61494:49:::1;61513:9;61524:18;61494;:49::i;:::-;61396:155:::0;;:::o;42546:100::-;42600:13;42633:5;42626:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42546:100;:::o;44057:204::-;44125:7;44150:16;44158:7;44150;:16::i;:::-;44145:64;;44175:34;;-1:-1:-1;;;44175:34:0;;;;;;;;;;;44145:64;-1:-1:-1;44229:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44229:24:0;;44057:204::o;56587:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60147:157::-;60243:8;4465:30;4486:8;4465:20;:30::i;:::-;60264:32:::1;60278:8;60288:7;60264:13;:32::i;:::-;60147:157:::0;;;:::o;63056:158::-;10208:13;:11;:13::i;:::-;63156:23:::1;:50:::0;63056:158::o;60312:163::-;60413:4;-1:-1:-1;;;;;4285:18:0;;4293:10;4285:18;4281:83;;4320:32;4341:10;4320:20;:32::i;:::-;60430:37:::1;60449:4;60455:2;60459:7;60430:18;:37::i;:::-;60312:163:::0;;;;:::o;24996:442::-;25093:7;25151:27;;;:17;:27;;;;;;;;25122:56;;;;;;;;;-1:-1:-1;;;;;25122:56:0;;;;;-1:-1:-1;;;25122:56:0;;;-1:-1:-1;;;;;25122:56:0;;;;;;;;25093:7;;25191:92;;-1:-1:-1;25242:29:0;;;;;;;;;25252:19;25242:29;-1:-1:-1;;;;;25242:29:0;;;;-1:-1:-1;;;25242:29:0;;-1:-1:-1;;;;;25242:29:0;;;;;25191:92;25333:23;;;;25295:21;;25804:5;;25320:36;;-1:-1:-1;;;;;25320:36:0;:10;:36;:::i;:::-;25319:58;;;;:::i;:::-;25398:16;;;-1:-1:-1;25295:82:0;;-1:-1:-1;;24996:442:0;;;;;;:::o;38759:1105::-;38848:7;38881:16;38891:5;38881:9;:16::i;:::-;38872:5;:25;38868:61;;38906:23;;-1:-1:-1;;;38906:23:0;;;;;;;;;;;38868:61;38940:22;38965:13;;-1:-1:-1;;;;;38965:13:0;;38940:22;;39215:557;39235:14;39231:1;:18;39215:557;;;39275:31;39309:14;;;:11;:14;;;;;;;;;39275:48;;;;;;;;;-1:-1:-1;;;;;39275:48:0;;;;-1:-1:-1;;;39275:48:0;;-1:-1:-1;;;;;39275:48:0;;;;;;;;-1:-1:-1;;;39275:48:0;;;;;;;;;;;;;;;;39342:73;;39387:8;;;39342:73;39437:14;;-1:-1:-1;;;;;39437:28:0;;39433:111;;39510:14;;;-1:-1:-1;39433:111:0;39587:5;-1:-1:-1;;;;;39566:26:0;:17;-1:-1:-1;;;;;39566:26:0;;39562:195;;39636:5;39621:11;:20;39617:85;;-1:-1:-1;39677:1:0;-1:-1:-1;39670:8:0;;-1:-1:-1;;;39670:8:0;39617:85;39724:13;;;;;39562:195;39256:516;39215:557;39251:3;;39215:557;;62024:234;10208:13;:11;:13::i;:::-;62107:21:::1;::::0;::::1;::::0;::::1;;;:28;;62130:5;62107:28:::0;62104:147:::1;;62151:21;:28:::0;;-1:-1:-1;;62151:28:0::1;;;::::0;;62024:234::o;62104:147::-:1;62210:21;:29:::0;;-1:-1:-1;;62210:29:0::1;::::0;;62104:147:::1;62024:234::o:0;58056:239::-;58115:4;;58128:143;58149:20;:27;58145:31;;58128:143;;;58223:5;-1:-1:-1;;;;;58196:32:0;:20;58217:1;58196:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;58196:23:0;:32;58192:72;;-1:-1:-1;58250:4:0;;58056:239;-1:-1:-1;;58056:239:0:o;58192:72::-;58178:3;;;;:::i;:::-;;;;58128:143;;;-1:-1:-1;58284:5:0;;58056:239;-1:-1:-1;;58056:239:0:o;62533:157::-;10208:13;:11;:13::i;:::-;62592:9:::1;62615:7;10395:6:::0;;-1:-1:-1;;;;;10395:6:0;;10322:87;62615:7:::1;-1:-1:-1::0;;;;;62607:21:0::1;62636;62607:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62591:71;;;62677:4;62669:13;;;::::0;::::1;;62580:110;62533:157::o:0;60483:171::-;60588:4;-1:-1:-1;;;;;4285:18:0;;4293:10;4285:18;4281:83;;4320:32;4341:10;4320:20;:32::i;:::-;60605:41:::1;60628:4;60634:2;60638:7;60605:22;:41::i;37746:713::-:0;37813:7;37858:13;;-1:-1:-1;;;;;37858:13:0;37813:7;;38072:328;38092:14;38088:1;:18;38072:328;;;38132:31;38166:14;;;:11;:14;;;;;;;;;38132:48;;;;;;;;;-1:-1:-1;;;;;38132:48:0;;;;-1:-1:-1;;;38132:48:0;;-1:-1:-1;;;;;38132:48:0;;;;;;;;-1:-1:-1;;;38132:48:0;;;;;;;;;;;;;;38199:186;;38264:5;38249:11;:20;38245:85;;-1:-1:-1;38305:1:0;37746:713;-1:-1:-1;;;;37746:713:0:o;38245:85::-;38352:13;;;;;38199:186;-1:-1:-1;38108:3:0;;38072:328;;;;38428:23;;-1:-1:-1;;;38428:23:0;;;;;;;;;;;63466:103;10208:13;:11;:13::i;:::-;63541:7:::1;:21;63551:11:::0;63541:7;:21:::1;:::i;61594:179::-:0;10208:13;:11;:13::i;:::-;61661:8:::1;::::0;;;::::1;;;:15;;61671:5;61661:15:::0;61658:108:::1;;61692:8;:15:::0;;-1:-1:-1;;61692:15:0::1;::::0;::::1;::::0;;62024:234::o;61658:108::-:1;61738:8;:16:::0;;-1:-1:-1;;61738:16:0::1;::::0;;61594:179::o;42355:124::-;42419:7;42446:20;42458:7;42446:11;:20::i;:::-;:25;;42355:124;-1:-1:-1;;42355:124:0:o;57575:311::-;10208:13;:11;:13::i;:::-;57698:34;;::::1;57690:74;;;::::0;-1:-1:-1;;;57690:74:0;;12058:2:1;57690:74:0::1;::::0;::::1;12040:21:1::0;12097:2;12077:18;;;12070:30;12136:29;12116:18;;;12109:57;12183:18;;57690:74:0::1;;;;;;;;;57781:9;57777:102;57796:19:::0;;::::1;57777:102;;;57832:35;57842:8;;57851:1;57842:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;57855:8;;57864:1;57855:11;;;;;;;:::i;:::-;;;;;;;57832:9;:35::i;:::-;57817:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57777:102;;;;57575:311:::0;;;;:::o;40372:206::-;40436:7;-1:-1:-1;;;;;40460:19:0;;40456:60;;40488:28;;-1:-1:-1;;;40488:28:0;;;;;;;;;;;40456:60;-1:-1:-1;;;;;;40542:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40542:27:0;;40372:206::o;63577:103::-;63632:13;10208;:11;:13::i;:::-;63665:7:::1;63658:14;;;;;:::i;10970:103::-:0;10208:13;:11;:13::i;:::-;11035:30:::1;11062:1;11035:18;:30::i;63222:122::-:0;10208:13;:11;:13::i;:::-;63304:14:::1;:32:::0;63222:122::o;62698:::-;10208:13;:11;:13::i;:::-;62780:14:::1;:32:::0;62698:122::o;62406:116::-;10208:13;:11;:13::i;:::-;62488:11:::1;:26;62502:12:::0;62488:11;:26:::1;:::i;42715:104::-:0;42771:13;42804:7;42797:14;;;;;:::i;58303:1273::-;58398:10;;58386:8;58370:13;37226:7;37418:12;-1:-1:-1;;;;;;;;37418:12:0;;;;37402:13;;;:28;;;;37395:35;;37173:280;58370:13;:24;;;;:::i;:::-;:38;;58362:70;;;;-1:-1:-1;;;58362:70:0;;12544:2:1;58362:70:0;;;12526:21:1;12583:2;12563:18;;;12556:30;-1:-1:-1;;;12602:18:1;;;12595:50;12662:18;;58362:70:0;12342:344:1;58362:70:0;58520:14;;58494:10;58478:27;;;;:15;:27;;;;;;;;;58451:12;:24;;;;;;;58508:8;;58451:54;;;:::i;:::-;:65;;;;:::i;:::-;:83;;58443:120;;;;-1:-1:-1;;;58443:120:0;;12893:2:1;58443:120:0;;;12875:21:1;12932:2;12912:18;;;12905:30;12971:26;12951:18;;;12944:54;13015:18;;58443:120:0;12691:348:1;58443:120:0;10395:6;;-1:-1:-1;;;;;10395:6:0;58580:10;:21;58576:939;;58623:21;;;;;;;58620:833;;;58670:25;58684:10;58670:13;:25::i;:::-;58662:53;;;;-1:-1:-1;;;58662:53:0;;13246:2:1;58662:53:0;;;13228:21:1;13285:2;13265:18;;;13258:30;-1:-1:-1;;;13304:18:1;;;13297:45;13359:18;;58662:53:0;13044:339:1;58662:53:0;58780:23;;58754:10;58738:27;;;;:15;:27;;;;;;:38;;58768:8;;58738:38;:::i;:::-;:65;;58730:112;;;;-1:-1:-1;;;58730:112:0;;13590:2:1;58730:112:0;;;13572:21:1;13629:2;13609:18;;;13602:30;13668:34;13648:18;;;13641:62;-1:-1:-1;;;13719:18:1;;;13712:32;13761:19;;58730:112:0;13388:398:1;58730:112:0;58894:14;;58882:8;58865:14;;:25;;;;:::i;:::-;:43;;58857:87;;;;-1:-1:-1;;;58857:87:0;;13993:2:1;58857:87:0;;;13975:21:1;14032:2;14012:18;;;14005:30;14071:33;14051:18;;;14044:61;14122:18;;58857:87:0;13791:355:1;58857:87:0;58990:8;58981:6;;:17;;;;:::i;:::-;58967:9;:32;;58959:64;;;;-1:-1:-1;;;58959:64:0;;14353:2:1;58959:64:0;;;14335:21:1;14392:2;14372:18;;;14365:30;-1:-1:-1;;;14411:18:1;;;14404:49;14470:18;;58959:64:0;14151:343:1;58959:64:0;59084:10;59068:27;;;;:15;:27;;;;;;:38;;59098:8;;59068:38;:::i;:::-;59054:10;59038:27;;;;:15;:27;;;;;:68;59138:14;;:25;;59155:8;;59138:25;:::i;:::-;59121:14;:42;58620:833;;;59212:18;;;;59204:56;;;;-1:-1:-1;;;59204:56:0;;14701:2:1;59204:56:0;;;14683:21:1;14740:2;14720:18;;;14713:30;14779:27;14759:18;;;14752:55;14824:18;;59204:56:0;14499:349:1;59204:56:0;59325:8;59308:14;;:25;;;;:::i;:::-;59294:9;:40;;59286:72;;;;-1:-1:-1;;;59286:72:0;;14353:2:1;59286:72:0;;;14335:21:1;14392:2;14372:18;;;14365:30;-1:-1:-1;;;14411:18:1;;;14404:49;14470:18;;59286:72:0;14151:343:1;59286:72:0;59413:10;59400:24;;;;:12;:24;;;;;;:35;;59427:8;;59400:35;:::i;:::-;59386:10;59373:24;;;;:12;:24;;;;;:62;58620:833;59527:31;59537:10;59549:8;59527:9;:31::i;59963:176::-;60067:8;4465:30;4486:8;4465:20;:30::i;:::-;60088:43:::1;60112:8;60122;60088:23;:43::i;60662:228::-:0;60813:4;-1:-1:-1;;;;;4285:18:0;;4293:10;4285:18;4281:83;;4320:32;4341:10;4320:20;:32::i;:::-;60835:47:::1;60858:4;60864:2;60868:7;60877:4;60835:22;:47::i;57198:37::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57198:37:0;;-1:-1:-1;57198:37:0;:::o;59590:365::-;59663:13;59694:16;59702:7;59694;:16::i;:::-;59689:59;;59719:29;;-1:-1:-1;;;59719:29:0;;;;;;;;;;;59689:59;59764:8;;;;;;;:17;;59776:5;59764:17;59761:66;;59801:14;59794:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59590:365;;;:::o;59761:66::-;59858:7;59852:21;;;;;:::i;:::-;;;59877:1;59852:26;:95;;;;;;;;;;;;;;;;;59905:7;59914:18;:7;:16;:18::i;:::-;59888:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59845:102;59590:365;-1:-1:-1;;59590:365:0:o;62926:122::-;10208:13;:11;:13::i;:::-;63008:14:::1;:32:::0;62926:122::o;61792:222::-;10208:13;:11;:13::i;:::-;61872:18:::1;::::0;::::1;;:25;;:18;:25:::0;61869:138:::1;;61913:18;:25:::0;;-1:-1:-1;;61913:25:0::1;61934:4;61913:25;::::0;;62024:234::o;61869:138::-:1;61969:18;:26:::0;;-1:-1:-1;;61969:26:0::1;::::0;;61792:222::o;56622:25::-;;;;;;;:::i;63352:106::-;10208:13;:11;:13::i;:::-;63426:10:::1;:24:::0;63352:106::o;57894:154::-;10208:13;:11;:13::i;:::-;57973:27:::1;57980:20;;57973:27;:::i;:::-;58011:29;:20;58034:6:::0;;58011:29:::1;:::i;62828:90::-:0;10208:13;:11;:13::i;:::-;62894:6:::1;:16:::0;62828:90::o;62268:126::-;10208:13;:11;:13::i;:::-;62354:14:::1;:32;62371:15:::0;62354:14;:32:::1;:::i;11228:201::-:0;10208:13;:11;:13::i;:::-;-1:-1:-1;;;;;11317:22:0;::::1;11309:73;;;::::0;-1:-1:-1;;;11309:73:0;;16247:2:1;11309:73:0::1;::::0;::::1;16229:21:1::0;16286:2;16266:18;;;16259:30;16325:34;16305:18;;;16298:62;-1:-1:-1;;;16376:18:1;;;16369:36;16422:19;;11309:73:0::1;16045:402:1::0;11309:73:0::1;11393:28;11412:8;11393:18;:28::i;12521:422::-:0;12888:20;12927:8;;;12521:422::o;39936:372::-;40038:4;-1:-1:-1;;;;;;40075:40:0;;-1:-1:-1;;;40075:40:0;;:105;;-1:-1:-1;;;;;;;40132:48:0;;-1:-1:-1;;;40132:48:0;40075:105;:172;;;-1:-1:-1;;;;;;;40197:50:0;;-1:-1:-1;;;40197:50:0;40075:172;:225;;;-1:-1:-1;;;;;;;;;;23324:40:0;;;40264:36;23215:157;24726:215;24828:4;-1:-1:-1;;;;;;24852:41:0;;-1:-1:-1;;;24852:41:0;;:81;;;24897:36;24921:11;24897:23;:36::i;10487:132::-;10395:6;;-1:-1:-1;;;;;10395:6:0;8852:10;10551:23;10543:68;;;;-1:-1:-1;;;10543:68:0;;16654:2:1;10543:68:0;;;16636:21:1;;;16673:18;;;16666:30;16732:34;16712:18;;;16705:62;16784:18;;10543:68:0;16452:356:1;26088:332:0;25804:5;-1:-1:-1;;;;;26191:33:0;;;;26183:88;;;;-1:-1:-1;;;26183:88:0;;17015:2:1;26183:88:0;;;16997:21:1;17054:2;17034:18;;;17027:30;17093:34;17073:18;;;17066:62;-1:-1:-1;;;17144:18:1;;;17137:40;17194:19;;26183:88:0;16813:406:1;26183:88:0;-1:-1:-1;;;;;26290:22:0;;26282:60;;;;-1:-1:-1;;;26282:60:0;;17426:2:1;26282:60:0;;;17408:21:1;17465:2;17445:18;;;17438:30;17504:27;17484:18;;;17477:55;17549:18;;26282:60:0;17224:349:1;26282:60:0;26377:35;;;;;;;;;-1:-1:-1;;;;;26377:35:0;;;;;;-1:-1:-1;;;;;26377:35:0;;;;;;;;;;-1:-1:-1;;;26355:57:0;;;;:19;:57;26088:332::o;46016:144::-;46073:4;46107:13;;-1:-1:-1;;;;;46107:13:0;46097:23;;:55;;;;-1:-1:-1;;46125:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;46125:27:0;;;;46124:28;;46016:144::o;4523:419::-;3044:42;4714:45;:49;4710:225;;4785:67;;-1:-1:-1;;;4785:67:0;;4836:4;4785:67;;;17790:34:1;-1:-1:-1;;;;;17860:15:1;;17840:18;;;17833:43;3044:42:0;;4785;;17725:18:1;;4785:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4780:144;;4880:28;;-1:-1:-1;;;4880:28:0;;-1:-1:-1;;;;;2246:32:1;;4880:28:0;;;2228:51:1;2201:18;;4880:28:0;2082:203:1;43612:379:0;43693:13;43709:24;43725:7;43709:15;:24::i;:::-;43693:40;;43754:5;-1:-1:-1;;;;;43748:11:0;:2;-1:-1:-1;;;;;43748:11:0;;43744:48;;43768:24;;-1:-1:-1;;;43768:24:0;;;;;;;;;;;43744:48;8852:10;-1:-1:-1;;;;;43809:21:0;;;;;;:63;;-1:-1:-1;43835:37:0;43852:5;8852:10;44691:164;:::i;43835:37::-;43834:38;43809:63;43805:138;;;43896:35;;-1:-1:-1;;;43896:35:0;;;;;;;;;;;43805:138;43955:28;43964:2;43968:7;43977:5;43955:8;:28::i;44922:170::-;45056:28;45066:4;45072:2;45076:7;45056:9;:28::i;45163:185::-;45301:39;45318:4;45324:2;45328:7;45301:39;;;;;;;;;;;;:16;:39::i;41210:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;41376:13:0;;41320:7;;-1:-1:-1;;;;;41376:13:0;41369:20;;41365:861;;;41410:31;41444:17;;;:11;:17;;;;;;;;;41410:51;;;;;;;;;-1:-1:-1;;;;;41410:51:0;;;;-1:-1:-1;;;41410:51:0;;-1:-1:-1;;;;;41410:51:0;;;;;;;;-1:-1:-1;;;41410:51:0;;;;;;;;;;;;;;41480:731;;41530:14;;-1:-1:-1;;;;;41530:28:0;;41526:101;;41594:9;41210:1083;-1:-1:-1;;;41210:1083:0:o;41526:101::-;-1:-1:-1;;;41971:6:0;42016:17;;;;:11;:17;;;;;;;;;42004:29;;;;;;;;;-1:-1:-1;;;;;42004:29:0;;;;;-1:-1:-1;;;42004:29:0;;-1:-1:-1;;;;;42004:29:0;;;;;;;;-1:-1:-1;;;42004:29:0;;;;;;;;;;;;;42064:28;42060:109;;42132:9;41210:1083;-1:-1:-1;;;41210:1083:0:o;42060:109::-;41931:261;;;41391:835;41365:861;42254:31;;-1:-1:-1;;;42254:31:0;;;;;;;;;;;46168:104;46237:27;46247:2;46251:8;46237:27;;;;;;;;;;;;:9;:27::i;11589:191::-;11682:6;;;-1:-1:-1;;;;;11699:17:0;;;-1:-1:-1;;;;;;11699:17:0;;;;;;;11732:40;;11682:6;;;11699:17;11682:6;;11732:40;;11663:16;;11732:40;11652:128;11589:191;:::o;44333:287::-;8852:10;-1:-1:-1;;;;;44432:24:0;;;44428:54;;44465:17;;-1:-1:-1;;;44465:17:0;;;;;;;;;;;44428:54;8852:10;44495:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44495:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44495:53:0;;;;;;;;;;44564:48;;540:41:1;;;44495:42:0;;8852:10;44564:48;;513:18:1;44564:48:0;;;;;;;44333:287;;:::o;45419:342::-;45586:28;45596:4;45602:2;45606:7;45586:9;:28::i;:::-;45630:48;45653:4;45659:2;45663:7;45672:5;45630:22;:48::i;:::-;45625:129;;45702:40;;-1:-1:-1;;;45702:40:0;;;;;;;;;;;7416:751;7472:13;7693:5;7702:1;7693:10;7689:53;;-1:-1:-1;;7720:10:0;;;;;;;;;;;;-1:-1:-1;;;7720:10:0;;;;;7416:751::o;7689:53::-;7767:5;7752:12;7808:78;7815:9;;7808:78;;7841:8;;;;:::i;:::-;;-1:-1:-1;7864:10:0;;-1:-1:-1;7872:2:0;7864:10;;:::i;:::-;;;7808:78;;;7896:19;7928:6;-1:-1:-1;;;;;7918:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7918:17:0;-1:-1:-1;7986:5:0;;-1:-1:-1;7896:39:0;-1:-1:-1;7962:6:0;8002:126;8009:9;;8002:126;;8079:9;8086:2;8079:4;:9;:::i;:::-;8066:23;;:2;:23;:::i;:::-;8053:38;;8035:6;8042:7;;;:::i;:::-;;;;8035:15;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8035:56:0;;;;;;;;-1:-1:-1;8106:10:0;8114:2;8106:10;;:::i;:::-;;;8002:126;;;-1:-1:-1;8152:6:0;7416:751;-1:-1:-1;;;;7416:751:0:o;53232:196::-;53347:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53347:29:0;-1:-1:-1;;;;;53347:29:0;;;;;;;;;53392:28;;53347:24;;53392:28;;;;;;;53232:196;;;:::o;48733:2112::-;48848:35;48886:20;48898:7;48886:11;:20::i;:::-;48961:18;;48848:58;;-1:-1:-1;48919:22:0;;-1:-1:-1;;;;;48945:34:0;8852:10;-1:-1:-1;;;;;48945:34:0;;:101;;;-1:-1:-1;49013:18:0;;48996:50;;8852:10;44691:164;:::i;48996:50::-;48945:154;;;-1:-1:-1;8852:10:0;49063:20;49075:7;49063:11;:20::i;:::-;-1:-1:-1;;;;;49063:36:0;;48945:154;48919:181;;49118:17;49113:66;;49144:35;;-1:-1:-1;;;49144:35:0;;;;;;;;;;;49113:66;49216:4;-1:-1:-1;;;;;49194:26:0;:13;:18;;;-1:-1:-1;;;;;49194:26:0;;49190:67;;49229:28;;-1:-1:-1;;;49229:28:0;;;;;;;;;;;49190:67;-1:-1:-1;;;;;49272:16:0;;49268:52;;49297:23;;-1:-1:-1;;;49297:23:0;;;;;;;;;;;49268:52;49441:49;49458:1;49462:7;49471:13;:18;;;49441:8;:49::i;:::-;-1:-1:-1;;;;;49786:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;49786:31:0;;;-1:-1:-1;;;;;49786:31:0;;;-1:-1:-1;;49786:31:0;;;;;;;49832:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49832:29:0;;;;;;;;;;;49878:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;49923:61:0;;;;-1:-1:-1;;;49968:15:0;49923:61;;;;;;;;;;;50258:11;;;50288:24;;;;;:29;50258:11;;50288:29;50284:445;;50513:13;;-1:-1:-1;;;;;50513:13:0;50499:27;;50495:219;;;50583:18;;;50551:24;;;:11;:24;;;;;;;;:50;;50666:28;;;;-1:-1:-1;;;;;50624:70:0;-1:-1:-1;;;50624:70:0;-1:-1:-1;;;;;;50624:70:0;;;-1:-1:-1;;;;;50551:50:0;;;50624:70;;;;;;;50495:219;49761:979;50776:7;50772:2;-1:-1:-1;;;;;50757:27:0;50766:4;-1:-1:-1;;;;;50757:27:0;;;;;;;;;;;50795:42;60312:163;46635;46758:32;46764:2;46768:8;46778:5;46785:4;46758:5;:32::i;53993:790::-;54148:4;-1:-1:-1;;;;;54169:13:0;;12888:20;12927:8;54165:611;;54205:72;;-1:-1:-1;;;54205:72:0;;-1:-1:-1;;;;;54205:36:0;;;;;:72;;8852:10;;54256:4;;54262:7;;54271:5;;54205:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54205:72:0;;;;;;;;-1:-1:-1;;54205:72:0;;;;;;;;;;;;:::i;:::-;;;54201:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54451:6;:13;54468:1;54451:18;54447:259;;54501:40;;-1:-1:-1;;;54501:40:0;;;;;;;;;;;54447:259;54656:6;54650:13;54641:6;54637:2;54633:15;54626:38;54201:520;-1:-1:-1;;;;;;54328:55:0;-1:-1:-1;;;54328:55:0;;-1:-1:-1;54321:62:0;;54165:611;-1:-1:-1;54760:4:0;54165:611;53993:790;;;;;;:::o;47057:1422::-;47196:20;47219:13;-1:-1:-1;;;;;47219:13:0;-1:-1:-1;;;;;47247:16:0;;47243:48;;47272:19;;-1:-1:-1;;;47272:19:0;;;;;;;;;;;47243:48;47306:8;47318:1;47306:13;47302:44;;47328:18;;-1:-1:-1;;;47328:18:0;;;;;;;;;;;47302:44;-1:-1:-1;;;;;47698:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;47757:49:0;;-1:-1:-1;;;;;47698:44:0;;;;;;;47757:49;;;;-1:-1:-1;;47698:44:0;;;;;;47757:49;;;;;;;;;;;;;;;;47823:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;47873:66:0;;;;-1:-1:-1;;;47923:15:0;47873:66;;;;;;;;;;;47823:25;;48008:328;48028:8;48024:1;:12;48008:328;;;48067:38;;48092:12;;-1:-1:-1;;;;;48067:38:0;;;48084:1;;48067:38;;48084:1;;48067:38;48128:4;:68;;;;;48137:59;48168:1;48172:2;48176:12;48190:5;48137:22;:59::i;:::-;48136:60;48128:68;48124:164;;;48228:40;;-1:-1:-1;;;48228:40:0;;;;;;;;;;;48124:164;48306:14;;;;;48038:3;48008:328;;;-1:-1:-1;48352:13:0;:37;;-1:-1:-1;;;;;;48352:37:0;-1:-1:-1;;;;;48352:37:0;;;;;;;;;;48411:60;60312:163;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:366::-;837:6;845;898:2;886:9;877:7;873:23;869:32;866:52;;;914:1;911;904:12;866:52;937:29;956:9;937:29;:::i;:::-;927:39;;1016:2;1005:9;1001:18;988:32;-1:-1:-1;;;;;1053:5:1;1049:38;1042:5;1039:49;1029:77;;1102:1;1099;1092:12;1029:77;1125:5;1115:15;;;770:366;;;;;:::o;1141:250::-;1226:1;1236:113;1250:6;1247:1;1244:13;1236:113;;;1326:11;;;1320:18;1307:11;;;1300:39;1272:2;1265:10;1236:113;;;-1:-1:-1;;1383:1:1;1365:16;;1358:27;1141:250::o;1396:271::-;1438:3;1476:5;1470:12;1503:6;1498:3;1491:19;1519:76;1588:6;1581:4;1576:3;1572:14;1565:4;1558:5;1554:16;1519:76;:::i;:::-;1649:2;1628:15;-1:-1:-1;;1624:29:1;1615:39;;;;1656:4;1611:50;;1396:271;-1:-1:-1;;1396:271:1:o;1672:220::-;1821:2;1810:9;1803:21;1784:4;1841:45;1882:2;1871:9;1867:18;1859:6;1841:45;:::i;1897:180::-;1956:6;2009:2;1997:9;1988:7;1984:23;1980:32;1977:52;;;2025:1;2022;2015:12;1977:52;-1:-1:-1;2048:23:1;;1897:180;-1:-1:-1;1897:180:1:o;2290:254::-;2358:6;2366;2419:2;2407:9;2398:7;2394:23;2390:32;2387:52;;;2435:1;2432;2425:12;2387:52;2458:29;2477:9;2458:29;:::i;:::-;2448:39;2534:2;2519:18;;;;2506:32;;-1:-1:-1;;;2290:254:1:o;2549:186::-;2608:6;2661:2;2649:9;2640:7;2636:23;2632:32;2629:52;;;2677:1;2674;2667:12;2629:52;2700:29;2719:9;2700:29;:::i;2922:328::-;2999:6;3007;3015;3068:2;3056:9;3047:7;3043:23;3039:32;3036:52;;;3084:1;3081;3074:12;3036:52;3107:29;3126:9;3107:29;:::i;:::-;3097:39;;3155:38;3189:2;3178:9;3174:18;3155:38;:::i;:::-;3145:48;;3240:2;3229:9;3225:18;3212:32;3202:42;;2922:328;;;;;:::o;3255:248::-;3323:6;3331;3384:2;3372:9;3363:7;3359:23;3355:32;3352:52;;;3400:1;3397;3390:12;3352:52;-1:-1:-1;;3423:23:1;;;3493:2;3478:18;;;3465:32;;-1:-1:-1;3255:248:1:o;4026:127::-;4087:10;4082:3;4078:20;4075:1;4068:31;4118:4;4115:1;4108:15;4142:4;4139:1;4132:15;4158:632;4223:5;-1:-1:-1;;;;;4294:2:1;4286:6;4283:14;4280:40;;;4300:18;;:::i;:::-;4375:2;4369:9;4343:2;4429:15;;-1:-1:-1;;4425:24:1;;;4451:2;4421:33;4417:42;4405:55;;;4475:18;;;4495:22;;;4472:46;4469:72;;;4521:18;;:::i;:::-;4561:10;4557:2;4550:22;4590:6;4581:15;;4620:6;4612;4605:22;4660:3;4651:6;4646:3;4642:16;4639:25;4636:45;;;4677:1;4674;4667:12;4636:45;4727:6;4722:3;4715:4;4707:6;4703:17;4690:44;4782:1;4775:4;4766:6;4758;4754:19;4750:30;4743:41;;;;4158:632;;;;;:::o;4795:451::-;4864:6;4917:2;4905:9;4896:7;4892:23;4888:32;4885:52;;;4933:1;4930;4923:12;4885:52;4973:9;4960:23;-1:-1:-1;;;;;4998:6:1;4995:30;4992:50;;;5038:1;5035;5028:12;4992:50;5061:22;;5114:4;5106:13;;5102:27;-1:-1:-1;5092:55:1;;5143:1;5140;5133:12;5092:55;5166:74;5232:7;5227:2;5214:16;5209:2;5205;5201:11;5166:74;:::i;5251:367::-;5314:8;5324:6;5378:3;5371:4;5363:6;5359:17;5355:27;5345:55;;5396:1;5393;5386:12;5345:55;-1:-1:-1;5419:20:1;;-1:-1:-1;;;;;5451:30:1;;5448:50;;;5494:1;5491;5484:12;5448:50;5531:4;5523:6;5519:17;5507:29;;5591:3;5584:4;5574:6;5571:1;5567:14;5559:6;5555:27;5551:38;5548:47;5545:67;;;5608:1;5605;5598:12;5623:773;5745:6;5753;5761;5769;5822:2;5810:9;5801:7;5797:23;5793:32;5790:52;;;5838:1;5835;5828:12;5790:52;5878:9;5865:23;-1:-1:-1;;;;;5948:2:1;5940:6;5937:14;5934:34;;;5964:1;5961;5954:12;5934:34;6003:70;6065:7;6056:6;6045:9;6041:22;6003:70;:::i;:::-;6092:8;;-1:-1:-1;5977:96:1;-1:-1:-1;6180:2:1;6165:18;;6152:32;;-1:-1:-1;6196:16:1;;;6193:36;;;6225:1;6222;6215:12;6193:36;;6264:72;6328:7;6317:8;6306:9;6302:24;6264:72;:::i;:::-;5623:773;;;;-1:-1:-1;6355:8:1;-1:-1:-1;;;;5623:773:1:o;6401:118::-;6487:5;6480:13;6473:21;6466:5;6463:32;6453:60;;6509:1;6506;6499:12;6524:315;6589:6;6597;6650:2;6638:9;6629:7;6625:23;6621:32;6618:52;;;6666:1;6663;6656:12;6618:52;6689:29;6708:9;6689:29;:::i;:::-;6679:39;;6768:2;6757:9;6753:18;6740:32;6781:28;6803:5;6781:28;:::i;6844:667::-;6939:6;6947;6955;6963;7016:3;7004:9;6995:7;6991:23;6987:33;6984:53;;;7033:1;7030;7023:12;6984:53;7056:29;7075:9;7056:29;:::i;:::-;7046:39;;7104:38;7138:2;7127:9;7123:18;7104:38;:::i;:::-;7094:48;;7189:2;7178:9;7174:18;7161:32;7151:42;;7244:2;7233:9;7229:18;7216:32;-1:-1:-1;;;;;7263:6:1;7260:30;7257:50;;;7303:1;7300;7293:12;7257:50;7326:22;;7379:4;7371:13;;7367:27;-1:-1:-1;7357:55:1;;7408:1;7405;7398:12;7357:55;7431:74;7497:7;7492:2;7479:16;7474:2;7470;7466:11;7431:74;:::i;:::-;7421:84;;;6844:667;;;;;;;:::o;7516:260::-;7584:6;7592;7645:2;7633:9;7624:7;7620:23;7616:32;7613:52;;;7661:1;7658;7651:12;7613:52;7684:29;7703:9;7684:29;:::i;:::-;7674:39;;7732:38;7766:2;7755:9;7751:18;7732:38;:::i;:::-;7722:48;;7516:260;;;;;:::o;7781:437::-;7867:6;7875;7928:2;7916:9;7907:7;7903:23;7899:32;7896:52;;;7944:1;7941;7934:12;7896:52;7984:9;7971:23;-1:-1:-1;;;;;8009:6:1;8006:30;8003:50;;;8049:1;8046;8039:12;8003:50;8088:70;8150:7;8141:6;8130:9;8126:22;8088:70;:::i;:::-;8177:8;;8062:96;;-1:-1:-1;7781:437:1;-1:-1:-1;;;;7781:437:1:o;8223:380::-;8302:1;8298:12;;;;8345;;;8366:61;;8420:4;8412:6;8408:17;8398:27;;8366:61;8473:2;8465:6;8462:14;8442:18;8439:38;8436:161;;8519:10;8514:3;8510:20;8507:1;8500:31;8554:4;8551:1;8544:15;8582:4;8579:1;8572:15;8436:161;;8223:380;;;:::o;8608:127::-;8669:10;8664:3;8660:20;8657:1;8650:31;8700:4;8697:1;8690:15;8724:4;8721:1;8714:15;8740:168;8813:9;;;8844;;8861:15;;;8855:22;;8841:37;8831:71;;8882:18;;:::i;8913:127::-;8974:10;8969:3;8965:20;8962:1;8955:31;9005:4;9002:1;8995:15;9029:4;9026:1;9019:15;9045:120;9085:1;9111;9101:35;;9116:18;;:::i;:::-;-1:-1:-1;9150:9:1;;9045:120::o;9170:127::-;9231:10;9226:3;9222:20;9219:1;9212:31;9262:4;9259:1;9252:15;9286:4;9283:1;9276:15;9302:135;9341:3;9362:17;;;9359:43;;9382:18;;:::i;:::-;-1:-1:-1;9429:1:1;9418:13;;9302:135::o;9778:545::-;9880:2;9875:3;9872:11;9869:448;;;9916:1;9941:5;9937:2;9930:17;9986:4;9982:2;9972:19;10056:2;10044:10;10040:19;10037:1;10033:27;10027:4;10023:38;10092:4;10080:10;10077:20;10074:47;;;-1:-1:-1;10115:4:1;10074:47;10170:2;10165:3;10161:12;10158:1;10154:20;10148:4;10144:31;10134:41;;10225:82;10243:2;10236:5;10233:13;10225:82;;;10288:17;;;10269:1;10258:13;10225:82;;;10229:3;;;9778:545;;;:::o;10499:1352::-;10625:3;10619:10;-1:-1:-1;;;;;10644:6:1;10641:30;10638:56;;;10674:18;;:::i;:::-;10703:97;10793:6;10753:38;10785:4;10779:11;10753:38;:::i;:::-;10747:4;10703:97;:::i;:::-;10855:4;;10919:2;10908:14;;10936:1;10931:663;;;;11638:1;11655:6;11652:89;;;-1:-1:-1;11707:19:1;;;11701:26;11652:89;-1:-1:-1;;10456:1:1;10452:11;;;10448:24;10444:29;10434:40;10480:1;10476:11;;;10431:57;11754:81;;10901:944;;10931:663;9725:1;9718:14;;;9762:4;9749:18;;-1:-1:-1;;10967:20:1;;;11085:236;11099:7;11096:1;11093:14;11085:236;;;11188:19;;;11182:26;11167:42;;11280:27;;;;11248:1;11236:14;;;;11115:19;;11085:236;;;11089:3;11349:6;11340:7;11337:19;11334:201;;;11410:19;;;11404:26;-1:-1:-1;;11493:1:1;11489:14;;;11505:3;11485:24;11481:37;11477:42;11462:58;11447:74;;11334:201;-1:-1:-1;;;;;11581:1:1;11565:14;;;11561:22;11548:36;;-1:-1:-1;10499:1352:1:o;12212:125::-;12277:9;;;12298:10;;;12295:36;;;12311:18;;:::i;14853:1187::-;15130:3;15159:1;15192:6;15186:13;15222:36;15248:9;15222:36;:::i;:::-;15277:1;15294:18;;;15321:133;;;;15468:1;15463:356;;;;15287:532;;15321:133;-1:-1:-1;;15354:24:1;;15342:37;;15427:14;;15420:22;15408:35;;15399:45;;;-1:-1:-1;15321:133:1;;15463:356;15494:6;15491:1;15484:17;15524:4;15569:2;15566:1;15556:16;15594:1;15608:165;15622:6;15619:1;15616:13;15608:165;;;15700:14;;15687:11;;;15680:35;15743:16;;;;15637:10;;15608:165;;;15612:3;;;15802:6;15797:3;15793:16;15786:23;;15287:532;;;;;15850:6;15844:13;15866:68;15925:8;15920:3;15913:4;15905:6;15901:17;15866:68;:::i;:::-;-1:-1:-1;;;15956:18:1;;15983:22;;;16032:1;16021:13;;14853:1187;-1:-1:-1;;;;14853:1187:1:o;17887:245::-;17954:6;18007:2;17995:9;17986:7;17982:23;17978:32;17975:52;;;18023:1;18020;18013:12;17975:52;18055:9;18049:16;18074:28;18096:5;18074:28;:::i;18137:112::-;18169:1;18195;18185:35;;18200:18;;:::i;:::-;-1:-1:-1;18234:9:1;;18137:112::o;18254:136::-;18293:3;18321:5;18311:39;;18330:18;;:::i;:::-;-1:-1:-1;;;18366:18:1;;18254:136::o;18395:489::-;-1:-1:-1;;;;;18664:15:1;;;18646:34;;18716:15;;18711:2;18696:18;;18689:43;18763:2;18748:18;;18741:34;;;18811:3;18806:2;18791:18;;18784:31;;;18589:4;;18832:46;;18858:19;;18850:6;18832:46;:::i;:::-;18824:54;18395:489;-1:-1:-1;;;;;;18395:489:1:o;18889:249::-;18958:6;19011:2;18999:9;18990:7;18986:23;18982:32;18979:52;;;19027:1;19024;19017:12;18979:52;19059:9;19053:16;19078:30;19102:5;19078:30;:::i

Swarm Source

ipfs://87147794df0d281c078a498e8a66b5116f4f3bc1b641f54a6bfa13b55c7de207
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.