ETH Price: $3,244.36 (+2.99%)
Gas: 2 Gwei

Token

DigiRENGA (DR)
 

Overview

Max Total Supply

3,333 DR

Holders

803

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DR
0x23ef0bf25a55eacd9769b729ab723079f08a5250
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:
DigiRENGA

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-24
*/

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/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 meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/access/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: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

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

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

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

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/DigiRENGA.sol











pragma solidity ^0.8.7;

contract DigiRENGA is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;

  string  public  baseTokenURI = "";
  uint256  public  Max_Supply = 4000;
  uint256 public  Max_Per_TX = 10;
  uint256 public  Price = 0.001 ether;
  uint256 public  Num_Free_Mints = 1000;
  uint256 public  Max_Free_Per_Wallet = 1;
  bool public isMintActive = true;

  constructor(

  ) ERC721A("DigiRENGA", "DR") {

  }

  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isMintActive, "Mint not active yet");
    require(totalSupply() + numberOfTokens < Max_Supply + 1, "No more");

    if(totalSupply() > Num_Free_Mints){
        require(
            (Price * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
    } else {
        if (numberOfTokens > Max_Free_Per_Wallet) {
        require(
            (Price * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            numberOfTokens <= Max_Per_TX,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                numberOfTokens <= Max_Free_Per_Wallet,
                "Max mints per transaction exceeded"
            );
        }
    }
    _safeMint(msg.sender, numberOfTokens);
  }

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

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

  function mintTo(uint256 numberOfTokens, address _receiver)
    public
    onlyOwner
  {
    _safeMint(_receiver, numberOfTokens);
  }

  function treasuryMint(uint quantity)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= Max_Supply,
      "Maximum supply exceeded"
    );
    _safeMint(msg.sender, quantity);
  }

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json"));
  }

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

  function setIsMintActive(bool _isMintActive)
      external
      onlyOwner
  {
      isMintActive = _isMintActive;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      Num_Free_Mints = _numfreemints;
  }

  function setMaxSupply(uint256 _Max_Supply)
      external
      onlyOwner
  {
      Max_Supply = _Max_Supply;
  }

  function setSalePrice(uint256 _Price)
      external
      onlyOwner
  {
      Price = _Price;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      Max_Per_TX = _limit;
  }

  function setFreeLimitPerWallet(uint256 _limit)
      external
      onlyOwner
  {
      Max_Free_Per_Wallet = _limit;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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_Free_Per_Wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Max_Per_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Max_Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Num_Free_Mints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMintActive","type":"bool"}],"name":"setIsMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Max_Supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000231565b50610fa0600b55600a600c5566038d7ea4c68000600d556103e8600e556001600f556001601060006101000a81548160ff0219169083151502179055503480156200007557600080fd5b506040518060400160405280600981526020017f4469676952454e474100000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f44520000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000fa92919062000231565b5080600390805190602001906200011392919062000231565b50620001246200015a60201b60201c565b60008190555050506200014c620001406200016360201b60201c565b6200016b60201b60201c565b600160098190555062000346565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023f90620002e1565b90600052602060002090601f016020900481019282620002635760008555620002af565b82601f106200027e57805160ff1916838001178555620002af565b82800160010185558215620002af579182015b82811115620002ae57825182559160200191906001019062000291565b5b509050620002be9190620002c2565b5090565b5b80821115620002dd576000816000905550600101620002c3565b5090565b60006002820490506001821680620002fa57607f821691505b6020821081141562000311576200031062000317565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61347980620003566000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063b723b34e116100a0578063e985e9c51161006f578063e985e9c51461071e578063efdc77881461075b578063f2fde38b14610784578063fa4e25b4146107ad578063fe07b506146107d657610204565b8063b723b34e14610664578063b88d4fde1461068d578063c87b56dd146106b6578063d547cfb7146106f357610204565b806395d89b41116100e757806395d89b41146105a05780639dfde201146105cb5780639e9fcffc146105f6578063a0712d681461061f578063a22cb4651461063b57610204565b806370a08231146104f6578063715018a61461053357806377848f981461054a5780638da5cb5b1461057557610204565b806323b872dd1161019b5780635b92ac0d1161016a5780635b92ac0d1461040f5780636352211e1461043a5780636737c9c1146104775780636b30d587146104a25780636f8b44b0146104cd57610204565b806323b872dd1461037d5780633ccfd60b146103a657806342842e0e146103bd57806355f804b3146103e657610204565b80630a00ae83116101d75780630a00ae83146102d757806318160ddd146103005780631919fed71461032b578063202f298a1461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612572565b610801565b60405161023d9190612a94565b60405180910390f35b34801561025257600080fd5b5061025b610893565b6040516102689190612aaf565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612615565b610925565b6040516102a59190612a2d565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612505565b6109a4565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190612615565b610ae8565b005b34801561030c57600080fd5b50610315610afa565b6040516103229190612c51565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612615565b610b11565b005b34801561036057600080fd5b5061037b60048036038101906103769190612615565b610b23565b005b34801561038957600080fd5b506103a4600480360381019061039f91906123ef565b610b35565b005b3480156103b257600080fd5b506103bb610e5a565b005b3480156103c957600080fd5b506103e460048036038101906103df91906123ef565b610ec4565b005b3480156103f257600080fd5b5061040d600480360381019061040891906125cc565b610ee4565b005b34801561041b57600080fd5b50610424610f06565b6040516104319190612a94565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612615565b610f19565b60405161046e9190612a2d565b60405180910390f35b34801561048357600080fd5b5061048c610f2b565b6040516104999190612c51565b60405180910390f35b3480156104ae57600080fd5b506104b7610f31565b6040516104c49190612c51565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190612615565b610f37565b005b34801561050257600080fd5b5061051d60048036038101906105189190612382565b610f49565b60405161052a9190612c51565b60405180910390f35b34801561053f57600080fd5b50610548611002565b005b34801561055657600080fd5b5061055f611016565b60405161056c9190612c51565b60405180910390f35b34801561058157600080fd5b5061058a61101c565b6040516105979190612a2d565b60405180910390f35b3480156105ac57600080fd5b506105b5611046565b6040516105c29190612aaf565b60405180910390f35b3480156105d757600080fd5b506105e06110d8565b6040516105ed9190612c51565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612615565b6110de565b005b61063960048036038101906106349190612615565b6110f0565b005b34801561064757600080fd5b50610662600480360381019061065d91906124c5565b6112ff565b005b34801561067057600080fd5b5061068b60048036038101906106869190612642565b611477565b005b34801561069957600080fd5b506106b460048036038101906106af9190612442565b61148d565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190612615565b611500565b6040516106ea9190612aaf565b60405180910390f35b3480156106ff57600080fd5b5061070861157c565b6040516107159190612aaf565b60405180910390f35b34801561072a57600080fd5b50610745600480360381019061074091906123af565b61160a565b6040516107529190612a94565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d9190612615565b61169e565b005b34801561079057600080fd5b506107ab60048036038101906107a69190612382565b61174d565b005b3480156107b957600080fd5b506107d460048036038101906107cf9190612545565b6117d1565b005b3480156107e257600080fd5b506107eb6117f6565b6040516107f89190612c51565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108a290612f21565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90612f21565b801561091b5780601f106108f05761010080835404028352916020019161091b565b820191906000526020600020905b8154815290600101906020018083116108fe57829003601f168201915b5050505050905090565b6000610930826117fc565b610966576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109af82610f19565b90508073ffffffffffffffffffffffffffffffffffffffff166109d061185b565b73ffffffffffffffffffffffffffffffffffffffff1614610a33576109fc816109f761185b565b61160a565b610a32576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610af0611863565b80600e8190555050565b6000610b046118e1565b6001546000540303905090565b610b19611863565b80600d8190555050565b610b2b611863565b80600f8190555050565b6000610b40826118ea565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ba7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bb3846119b8565b91509150610bc98187610bc461185b565b6119df565b610c1557610bde86610bd961185b565b61160a565b610c14576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c7c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c898686866001611a23565b8015610c9457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d6285610d3e888887611a29565b7c020000000000000000000000000000000000000000000000000000000017611a51565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dea576000600185019050600060046000838152602001908152602001600020541415610de8576000548114610de7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e528686866001611a7c565b505050505050565b610e62611863565b60026009541415610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90612c31565b60405180910390fd5b6002600981905550610eba3347611a82565b6001600981905550565b610edf8383836040518060200160405280600081525061148d565b505050565b610eec611863565b80600a9080519060200190610f02929190612196565b5050565b601060009054906101000a900460ff1681565b6000610f24826118ea565b9050919050565b600b5481565b600f5481565b610f3f611863565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61100a611863565b6110146000611b76565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461105590612f21565b80601f016020809104026020016040519081016040528092919081815260200182805461108190612f21565b80156110ce5780601f106110a3576101008083540402835291602001916110ce565b820191906000526020600020905b8154815290600101906020018083116110b157829003601f168201915b5050505050905090565b600d5481565b6110e6611863565b80600c8190555050565b601060009054906101000a900460ff1661113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690612af1565b60405180910390fd5b6001600b5461114e9190612d56565b81611157610afa565b6111619190612d56565b106111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890612ad1565b60405180910390fd5b600e546111ac610afa565b1115611207573481600d546111c19190612ddd565b1115611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990612c11565b60405180910390fd5b6112f2565b600f548111156112ab573481600d546112209190612ddd565b1115611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890612c11565b60405180910390fd5b600c548111156112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d90612b71565b60405180910390fd5b6112f1565b600f548111156112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790612b71565b60405180910390fd5b5b5b6112fc3382611c3c565b50565b61130761185b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061137961185b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661142661185b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161146b9190612a94565b60405180910390a35050565b61147f611863565b6114898183611c3c565b5050565b611498848484610b35565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114fa576114c384848484611c5a565b6114f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061150b826117fc565b61154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190612bd1565b60405180910390fd5b600a61155583611dba565b6040516020016115669291906129de565b6040516020818303038152906040529050919050565b600a805461158990612f21565b80601f01602080910402602001604051908101604052809291908181526020018280546115b590612f21565b80156116025780601f106115d757610100808354040283529160200191611602565b820191906000526020600020905b8154815290600101906020018083116115e557829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116a6611863565b600081116116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090612bf1565b60405180910390fd5b600b54816116f5610afa565b6116ff9190612d56565b1115611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790612b91565b60405180910390fd5b61174a3382611c3c565b50565b611755611863565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90612b11565b60405180910390fd5b6117ce81611b76565b50565b6117d9611863565b80601060006101000a81548160ff02191690831515021790555050565b600e5481565b6000816118076118e1565b11158015611816575060005482105b8015611854575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61186b611f1b565b73ffffffffffffffffffffffffffffffffffffffff1661188961101c565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690612bb1565b60405180910390fd5b565b60006001905090565b600080829050806118f96118e1565b11611981576000548110156119805760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561197e575b6000811415611974576004600083600190039350838152602001908152602001600020549050611949565b80925050506119b3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a40868684611f23565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90612b51565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611aeb90612a18565b60006040518083038185875af1925050503d8060008114611b28576040519150601f19603f3d011682016040523d82523d6000602084013e611b2d565b606091505b5050905080611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890612b31565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c56828260405180602001604052806000815250611f2c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8061185b565b8786866040518563ffffffff1660e01b8152600401611ca29493929190612a48565b602060405180830381600087803b158015611cbc57600080fd5b505af1925050508015611ced57506040513d601f19601f82011682018060405250810190611cea919061259f565b60015b611d67573d8060008114611d1d576040519150601f19603f3d011682016040523d82523d6000602084013e611d22565b606091505b50600081511415611d5f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e02576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f16565b600082905060005b60008214611e34578080611e1d90612f84565b915050600a82611e2d9190612dac565b9150611e0a565b60008167ffffffffffffffff811115611e5057611e4f6130ba565b5b6040519080825280601f01601f191660200182016040528015611e825781602001600182028036833780820191505090505b5090505b60008514611f0f57600182611e9b9190612e37565b9150600a85611eaa9190612fcd565b6030611eb69190612d56565b60f81b818381518110611ecc57611ecb61308b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f089190612dac565b9450611e86565b8093505050505b919050565b600033905090565b60009392505050565b611f368383611fc9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fc457600080549050600083820390505b611f766000868380600101945086611c5a565b611fac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f63578160005414611fc157600080fd5b50505b505050565b600080549050600082141561200a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120176000848385611a23565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061208e8361207f6000866000611a29565b61208885612186565b17611a51565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461212f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120f4565b50600082141561216b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121816000848385611a7c565b505050565b60006001821460e11b9050919050565b8280546121a290612f21565b90600052602060002090601f0160209004810192826121c4576000855561220b565b82601f106121dd57805160ff191683800117855561220b565b8280016001018555821561220b579182015b8281111561220a5782518255916020019190600101906121ef565b5b509050612218919061221c565b5090565b5b8082111561223557600081600090555060010161221d565b5090565b600061224c61224784612c91565b612c6c565b905082815260208101848484011115612268576122676130ee565b5b612273848285612edf565b509392505050565b600061228e61228984612cc2565b612c6c565b9050828152602081018484840111156122aa576122a96130ee565b5b6122b5848285612edf565b509392505050565b6000813590506122cc816133e7565b92915050565b6000813590506122e1816133fe565b92915050565b6000813590506122f681613415565b92915050565b60008151905061230b81613415565b92915050565b600082601f830112612326576123256130e9565b5b8135612336848260208601612239565b91505092915050565b600082601f830112612354576123536130e9565b5b813561236484826020860161227b565b91505092915050565b60008135905061237c8161342c565b92915050565b600060208284031215612398576123976130f8565b5b60006123a6848285016122bd565b91505092915050565b600080604083850312156123c6576123c56130f8565b5b60006123d4858286016122bd565b92505060206123e5858286016122bd565b9150509250929050565b600080600060608486031215612408576124076130f8565b5b6000612416868287016122bd565b9350506020612427868287016122bd565b92505060406124388682870161236d565b9150509250925092565b6000806000806080858703121561245c5761245b6130f8565b5b600061246a878288016122bd565b945050602061247b878288016122bd565b935050604061248c8782880161236d565b925050606085013567ffffffffffffffff8111156124ad576124ac6130f3565b5b6124b987828801612311565b91505092959194509250565b600080604083850312156124dc576124db6130f8565b5b60006124ea858286016122bd565b92505060206124fb858286016122d2565b9150509250929050565b6000806040838503121561251c5761251b6130f8565b5b600061252a858286016122bd565b925050602061253b8582860161236d565b9150509250929050565b60006020828403121561255b5761255a6130f8565b5b6000612569848285016122d2565b91505092915050565b600060208284031215612588576125876130f8565b5b6000612596848285016122e7565b91505092915050565b6000602082840312156125b5576125b46130f8565b5b60006125c3848285016122fc565b91505092915050565b6000602082840312156125e2576125e16130f8565b5b600082013567ffffffffffffffff811115612600576125ff6130f3565b5b61260c8482850161233f565b91505092915050565b60006020828403121561262b5761262a6130f8565b5b60006126398482850161236d565b91505092915050565b60008060408385031215612659576126586130f8565b5b60006126678582860161236d565b9250506020612678858286016122bd565b9150509250929050565b61268b81612e6b565b82525050565b61269a81612e7d565b82525050565b60006126ab82612d08565b6126b58185612d1e565b93506126c5818560208601612eee565b6126ce816130fd565b840191505092915050565b60006126e482612d13565b6126ee8185612d3a565b93506126fe818560208601612eee565b612707816130fd565b840191505092915050565b600061271d82612d13565b6127278185612d4b565b9350612737818560208601612eee565b80840191505092915050565b6000815461275081612f21565b61275a8186612d4b565b945060018216600081146127755760018114612786576127b9565b60ff198316865281860193506127b9565b61278f85612cf3565b60005b838110156127b157815481890152600182019150602081019050612792565b838801955050505b50505092915050565b60006127cf600783612d3a565b91506127da8261310e565b602082019050919050565b60006127f2601383612d3a565b91506127fd82613137565b602082019050919050565b6000612815602683612d3a565b915061282082613160565b604082019050919050565b6000612838603a83612d3a565b9150612843826131af565b604082019050919050565b600061285b601d83612d3a565b9150612866826131fe565b602082019050919050565b600061287e602283612d3a565b915061288982613227565b604082019050919050565b60006128a1601783612d3a565b91506128ac82613276565b602082019050919050565b60006128c4600583612d4b565b91506128cf8261329f565b600582019050919050565b60006128e7602083612d3a565b91506128f2826132c8565b602082019050919050565b600061290a602f83612d3a565b9150612915826132f1565b604082019050919050565b600061292d600083612d2f565b915061293882613340565b600082019050919050565b6000612950601383612d3a565b915061295b82613343565b602082019050919050565b6000612973601883612d3a565b915061297e8261336c565b602082019050919050565b6000612996601f83612d3a565b91506129a182613395565b602082019050919050565b60006129b9600183612d4b565b91506129c4826133be565b600182019050919050565b6129d881612ed5565b82525050565b60006129ea8285612743565b91506129f5826129ac565b9150612a018284612712565b9150612a0c826128b7565b91508190509392505050565b6000612a2382612920565b9150819050919050565b6000602082019050612a426000830184612682565b92915050565b6000608082019050612a5d6000830187612682565b612a6a6020830186612682565b612a7760408301856129cf565b8181036060830152612a8981846126a0565b905095945050505050565b6000602082019050612aa96000830184612691565b92915050565b60006020820190508181036000830152612ac981846126d9565b905092915050565b60006020820190508181036000830152612aea816127c2565b9050919050565b60006020820190508181036000830152612b0a816127e5565b9050919050565b60006020820190508181036000830152612b2a81612808565b9050919050565b60006020820190508181036000830152612b4a8161282b565b9050919050565b60006020820190508181036000830152612b6a8161284e565b9050919050565b60006020820190508181036000830152612b8a81612871565b9050919050565b60006020820190508181036000830152612baa81612894565b9050919050565b60006020820190508181036000830152612bca816128da565b9050919050565b60006020820190508181036000830152612bea816128fd565b9050919050565b60006020820190508181036000830152612c0a81612943565b9050919050565b60006020820190508181036000830152612c2a81612966565b9050919050565b60006020820190508181036000830152612c4a81612989565b9050919050565b6000602082019050612c6660008301846129cf565b92915050565b6000612c76612c87565b9050612c828282612f53565b919050565b6000604051905090565b600067ffffffffffffffff821115612cac57612cab6130ba565b5b612cb5826130fd565b9050602081019050919050565b600067ffffffffffffffff821115612cdd57612cdc6130ba565b5b612ce6826130fd565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d6182612ed5565b9150612d6c83612ed5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612da157612da0612ffe565b5b828201905092915050565b6000612db782612ed5565b9150612dc283612ed5565b925082612dd257612dd161302d565b5b828204905092915050565b6000612de882612ed5565b9150612df383612ed5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e2c57612e2b612ffe565b5b828202905092915050565b6000612e4282612ed5565b9150612e4d83612ed5565b925082821015612e6057612e5f612ffe565b5b828203905092915050565b6000612e7682612eb5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f0c578082015181840152602081019050612ef1565b83811115612f1b576000848401525b50505050565b60006002820490506001821680612f3957607f821691505b60208210811415612f4d57612f4c61305c565b5b50919050565b612f5c826130fd565b810181811067ffffffffffffffff82111715612f7b57612f7a6130ba565b5b80604052505050565b6000612f8f82612ed5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fc257612fc1612ffe565b5b600182019050919050565b6000612fd882612ed5565b9150612fe383612ed5565b925082612ff357612ff261302d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4d696e74206e6f74206163746976652079657400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6133f081612e6b565b81146133fb57600080fd5b50565b61340781612e7d565b811461341257600080fd5b50565b61341e81612e89565b811461342957600080fd5b50565b61343581612ed5565b811461344057600080fd5b5056fea26469706673582212205b14b7e12ba6d847ce7adc382bac466e636dbf22d67d2b6b00de507ae0bacbdc64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063b723b34e116100a0578063e985e9c51161006f578063e985e9c51461071e578063efdc77881461075b578063f2fde38b14610784578063fa4e25b4146107ad578063fe07b506146107d657610204565b8063b723b34e14610664578063b88d4fde1461068d578063c87b56dd146106b6578063d547cfb7146106f357610204565b806395d89b41116100e757806395d89b41146105a05780639dfde201146105cb5780639e9fcffc146105f6578063a0712d681461061f578063a22cb4651461063b57610204565b806370a08231146104f6578063715018a61461053357806377848f981461054a5780638da5cb5b1461057557610204565b806323b872dd1161019b5780635b92ac0d1161016a5780635b92ac0d1461040f5780636352211e1461043a5780636737c9c1146104775780636b30d587146104a25780636f8b44b0146104cd57610204565b806323b872dd1461037d5780633ccfd60b146103a657806342842e0e146103bd57806355f804b3146103e657610204565b80630a00ae83116101d75780630a00ae83146102d757806318160ddd146103005780631919fed71461032b578063202f298a1461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612572565b610801565b60405161023d9190612a94565b60405180910390f35b34801561025257600080fd5b5061025b610893565b6040516102689190612aaf565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612615565b610925565b6040516102a59190612a2d565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612505565b6109a4565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190612615565b610ae8565b005b34801561030c57600080fd5b50610315610afa565b6040516103229190612c51565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612615565b610b11565b005b34801561036057600080fd5b5061037b60048036038101906103769190612615565b610b23565b005b34801561038957600080fd5b506103a4600480360381019061039f91906123ef565b610b35565b005b3480156103b257600080fd5b506103bb610e5a565b005b3480156103c957600080fd5b506103e460048036038101906103df91906123ef565b610ec4565b005b3480156103f257600080fd5b5061040d600480360381019061040891906125cc565b610ee4565b005b34801561041b57600080fd5b50610424610f06565b6040516104319190612a94565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612615565b610f19565b60405161046e9190612a2d565b60405180910390f35b34801561048357600080fd5b5061048c610f2b565b6040516104999190612c51565b60405180910390f35b3480156104ae57600080fd5b506104b7610f31565b6040516104c49190612c51565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190612615565b610f37565b005b34801561050257600080fd5b5061051d60048036038101906105189190612382565b610f49565b60405161052a9190612c51565b60405180910390f35b34801561053f57600080fd5b50610548611002565b005b34801561055657600080fd5b5061055f611016565b60405161056c9190612c51565b60405180910390f35b34801561058157600080fd5b5061058a61101c565b6040516105979190612a2d565b60405180910390f35b3480156105ac57600080fd5b506105b5611046565b6040516105c29190612aaf565b60405180910390f35b3480156105d757600080fd5b506105e06110d8565b6040516105ed9190612c51565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612615565b6110de565b005b61063960048036038101906106349190612615565b6110f0565b005b34801561064757600080fd5b50610662600480360381019061065d91906124c5565b6112ff565b005b34801561067057600080fd5b5061068b60048036038101906106869190612642565b611477565b005b34801561069957600080fd5b506106b460048036038101906106af9190612442565b61148d565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190612615565b611500565b6040516106ea9190612aaf565b60405180910390f35b3480156106ff57600080fd5b5061070861157c565b6040516107159190612aaf565b60405180910390f35b34801561072a57600080fd5b50610745600480360381019061074091906123af565b61160a565b6040516107529190612a94565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d9190612615565b61169e565b005b34801561079057600080fd5b506107ab60048036038101906107a69190612382565b61174d565b005b3480156107b957600080fd5b506107d460048036038101906107cf9190612545565b6117d1565b005b3480156107e257600080fd5b506107eb6117f6565b6040516107f89190612c51565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108a290612f21565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90612f21565b801561091b5780601f106108f05761010080835404028352916020019161091b565b820191906000526020600020905b8154815290600101906020018083116108fe57829003601f168201915b5050505050905090565b6000610930826117fc565b610966576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109af82610f19565b90508073ffffffffffffffffffffffffffffffffffffffff166109d061185b565b73ffffffffffffffffffffffffffffffffffffffff1614610a33576109fc816109f761185b565b61160a565b610a32576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610af0611863565b80600e8190555050565b6000610b046118e1565b6001546000540303905090565b610b19611863565b80600d8190555050565b610b2b611863565b80600f8190555050565b6000610b40826118ea565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ba7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bb3846119b8565b91509150610bc98187610bc461185b565b6119df565b610c1557610bde86610bd961185b565b61160a565b610c14576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c7c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c898686866001611a23565b8015610c9457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d6285610d3e888887611a29565b7c020000000000000000000000000000000000000000000000000000000017611a51565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dea576000600185019050600060046000838152602001908152602001600020541415610de8576000548114610de7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e528686866001611a7c565b505050505050565b610e62611863565b60026009541415610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90612c31565b60405180910390fd5b6002600981905550610eba3347611a82565b6001600981905550565b610edf8383836040518060200160405280600081525061148d565b505050565b610eec611863565b80600a9080519060200190610f02929190612196565b5050565b601060009054906101000a900460ff1681565b6000610f24826118ea565b9050919050565b600b5481565b600f5481565b610f3f611863565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61100a611863565b6110146000611b76565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461105590612f21565b80601f016020809104026020016040519081016040528092919081815260200182805461108190612f21565b80156110ce5780601f106110a3576101008083540402835291602001916110ce565b820191906000526020600020905b8154815290600101906020018083116110b157829003601f168201915b5050505050905090565b600d5481565b6110e6611863565b80600c8190555050565b601060009054906101000a900460ff1661113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690612af1565b60405180910390fd5b6001600b5461114e9190612d56565b81611157610afa565b6111619190612d56565b106111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890612ad1565b60405180910390fd5b600e546111ac610afa565b1115611207573481600d546111c19190612ddd565b1115611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990612c11565b60405180910390fd5b6112f2565b600f548111156112ab573481600d546112209190612ddd565b1115611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890612c11565b60405180910390fd5b600c548111156112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d90612b71565b60405180910390fd5b6112f1565b600f548111156112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790612b71565b60405180910390fd5b5b5b6112fc3382611c3c565b50565b61130761185b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061137961185b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661142661185b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161146b9190612a94565b60405180910390a35050565b61147f611863565b6114898183611c3c565b5050565b611498848484610b35565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114fa576114c384848484611c5a565b6114f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061150b826117fc565b61154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190612bd1565b60405180910390fd5b600a61155583611dba565b6040516020016115669291906129de565b6040516020818303038152906040529050919050565b600a805461158990612f21565b80601f01602080910402602001604051908101604052809291908181526020018280546115b590612f21565b80156116025780601f106115d757610100808354040283529160200191611602565b820191906000526020600020905b8154815290600101906020018083116115e557829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116a6611863565b600081116116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090612bf1565b60405180910390fd5b600b54816116f5610afa565b6116ff9190612d56565b1115611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790612b91565b60405180910390fd5b61174a3382611c3c565b50565b611755611863565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90612b11565b60405180910390fd5b6117ce81611b76565b50565b6117d9611863565b80601060006101000a81548160ff02191690831515021790555050565b600e5481565b6000816118076118e1565b11158015611816575060005482105b8015611854575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61186b611f1b565b73ffffffffffffffffffffffffffffffffffffffff1661188961101c565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690612bb1565b60405180910390fd5b565b60006001905090565b600080829050806118f96118e1565b11611981576000548110156119805760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561197e575b6000811415611974576004600083600190039350838152602001908152602001600020549050611949565b80925050506119b3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a40868684611f23565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90612b51565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611aeb90612a18565b60006040518083038185875af1925050503d8060008114611b28576040519150601f19603f3d011682016040523d82523d6000602084013e611b2d565b606091505b5050905080611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890612b31565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c56828260405180602001604052806000815250611f2c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8061185b565b8786866040518563ffffffff1660e01b8152600401611ca29493929190612a48565b602060405180830381600087803b158015611cbc57600080fd5b505af1925050508015611ced57506040513d601f19601f82011682018060405250810190611cea919061259f565b60015b611d67573d8060008114611d1d576040519150601f19603f3d011682016040523d82523d6000602084013e611d22565b606091505b50600081511415611d5f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e02576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f16565b600082905060005b60008214611e34578080611e1d90612f84565b915050600a82611e2d9190612dac565b9150611e0a565b60008167ffffffffffffffff811115611e5057611e4f6130ba565b5b6040519080825280601f01601f191660200182016040528015611e825781602001600182028036833780820191505090505b5090505b60008514611f0f57600182611e9b9190612e37565b9150600a85611eaa9190612fcd565b6030611eb69190612d56565b60f81b818381518110611ecc57611ecb61308b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f089190612dac565b9450611e86565b8093505050505b919050565b600033905090565b60009392505050565b611f368383611fc9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fc457600080549050600083820390505b611f766000868380600101945086611c5a565b611fac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f63578160005414611fc157600080fd5b50505b505050565b600080549050600082141561200a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120176000848385611a23565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061208e8361207f6000866000611a29565b61208885612186565b17611a51565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461212f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120f4565b50600082141561216b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121816000848385611a7c565b505050565b60006001821460e11b9050919050565b8280546121a290612f21565b90600052602060002090601f0160209004810192826121c4576000855561220b565b82601f106121dd57805160ff191683800117855561220b565b8280016001018555821561220b579182015b8281111561220a5782518255916020019190600101906121ef565b5b509050612218919061221c565b5090565b5b8082111561223557600081600090555060010161221d565b5090565b600061224c61224784612c91565b612c6c565b905082815260208101848484011115612268576122676130ee565b5b612273848285612edf565b509392505050565b600061228e61228984612cc2565b612c6c565b9050828152602081018484840111156122aa576122a96130ee565b5b6122b5848285612edf565b509392505050565b6000813590506122cc816133e7565b92915050565b6000813590506122e1816133fe565b92915050565b6000813590506122f681613415565b92915050565b60008151905061230b81613415565b92915050565b600082601f830112612326576123256130e9565b5b8135612336848260208601612239565b91505092915050565b600082601f830112612354576123536130e9565b5b813561236484826020860161227b565b91505092915050565b60008135905061237c8161342c565b92915050565b600060208284031215612398576123976130f8565b5b60006123a6848285016122bd565b91505092915050565b600080604083850312156123c6576123c56130f8565b5b60006123d4858286016122bd565b92505060206123e5858286016122bd565b9150509250929050565b600080600060608486031215612408576124076130f8565b5b6000612416868287016122bd565b9350506020612427868287016122bd565b92505060406124388682870161236d565b9150509250925092565b6000806000806080858703121561245c5761245b6130f8565b5b600061246a878288016122bd565b945050602061247b878288016122bd565b935050604061248c8782880161236d565b925050606085013567ffffffffffffffff8111156124ad576124ac6130f3565b5b6124b987828801612311565b91505092959194509250565b600080604083850312156124dc576124db6130f8565b5b60006124ea858286016122bd565b92505060206124fb858286016122d2565b9150509250929050565b6000806040838503121561251c5761251b6130f8565b5b600061252a858286016122bd565b925050602061253b8582860161236d565b9150509250929050565b60006020828403121561255b5761255a6130f8565b5b6000612569848285016122d2565b91505092915050565b600060208284031215612588576125876130f8565b5b6000612596848285016122e7565b91505092915050565b6000602082840312156125b5576125b46130f8565b5b60006125c3848285016122fc565b91505092915050565b6000602082840312156125e2576125e16130f8565b5b600082013567ffffffffffffffff811115612600576125ff6130f3565b5b61260c8482850161233f565b91505092915050565b60006020828403121561262b5761262a6130f8565b5b60006126398482850161236d565b91505092915050565b60008060408385031215612659576126586130f8565b5b60006126678582860161236d565b9250506020612678858286016122bd565b9150509250929050565b61268b81612e6b565b82525050565b61269a81612e7d565b82525050565b60006126ab82612d08565b6126b58185612d1e565b93506126c5818560208601612eee565b6126ce816130fd565b840191505092915050565b60006126e482612d13565b6126ee8185612d3a565b93506126fe818560208601612eee565b612707816130fd565b840191505092915050565b600061271d82612d13565b6127278185612d4b565b9350612737818560208601612eee565b80840191505092915050565b6000815461275081612f21565b61275a8186612d4b565b945060018216600081146127755760018114612786576127b9565b60ff198316865281860193506127b9565b61278f85612cf3565b60005b838110156127b157815481890152600182019150602081019050612792565b838801955050505b50505092915050565b60006127cf600783612d3a565b91506127da8261310e565b602082019050919050565b60006127f2601383612d3a565b91506127fd82613137565b602082019050919050565b6000612815602683612d3a565b915061282082613160565b604082019050919050565b6000612838603a83612d3a565b9150612843826131af565b604082019050919050565b600061285b601d83612d3a565b9150612866826131fe565b602082019050919050565b600061287e602283612d3a565b915061288982613227565b604082019050919050565b60006128a1601783612d3a565b91506128ac82613276565b602082019050919050565b60006128c4600583612d4b565b91506128cf8261329f565b600582019050919050565b60006128e7602083612d3a565b91506128f2826132c8565b602082019050919050565b600061290a602f83612d3a565b9150612915826132f1565b604082019050919050565b600061292d600083612d2f565b915061293882613340565b600082019050919050565b6000612950601383612d3a565b915061295b82613343565b602082019050919050565b6000612973601883612d3a565b915061297e8261336c565b602082019050919050565b6000612996601f83612d3a565b91506129a182613395565b602082019050919050565b60006129b9600183612d4b565b91506129c4826133be565b600182019050919050565b6129d881612ed5565b82525050565b60006129ea8285612743565b91506129f5826129ac565b9150612a018284612712565b9150612a0c826128b7565b91508190509392505050565b6000612a2382612920565b9150819050919050565b6000602082019050612a426000830184612682565b92915050565b6000608082019050612a5d6000830187612682565b612a6a6020830186612682565b612a7760408301856129cf565b8181036060830152612a8981846126a0565b905095945050505050565b6000602082019050612aa96000830184612691565b92915050565b60006020820190508181036000830152612ac981846126d9565b905092915050565b60006020820190508181036000830152612aea816127c2565b9050919050565b60006020820190508181036000830152612b0a816127e5565b9050919050565b60006020820190508181036000830152612b2a81612808565b9050919050565b60006020820190508181036000830152612b4a8161282b565b9050919050565b60006020820190508181036000830152612b6a8161284e565b9050919050565b60006020820190508181036000830152612b8a81612871565b9050919050565b60006020820190508181036000830152612baa81612894565b9050919050565b60006020820190508181036000830152612bca816128da565b9050919050565b60006020820190508181036000830152612bea816128fd565b9050919050565b60006020820190508181036000830152612c0a81612943565b9050919050565b60006020820190508181036000830152612c2a81612966565b9050919050565b60006020820190508181036000830152612c4a81612989565b9050919050565b6000602082019050612c6660008301846129cf565b92915050565b6000612c76612c87565b9050612c828282612f53565b919050565b6000604051905090565b600067ffffffffffffffff821115612cac57612cab6130ba565b5b612cb5826130fd565b9050602081019050919050565b600067ffffffffffffffff821115612cdd57612cdc6130ba565b5b612ce6826130fd565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d6182612ed5565b9150612d6c83612ed5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612da157612da0612ffe565b5b828201905092915050565b6000612db782612ed5565b9150612dc283612ed5565b925082612dd257612dd161302d565b5b828204905092915050565b6000612de882612ed5565b9150612df383612ed5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e2c57612e2b612ffe565b5b828202905092915050565b6000612e4282612ed5565b9150612e4d83612ed5565b925082821015612e6057612e5f612ffe565b5b828203905092915050565b6000612e7682612eb5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f0c578082015181840152602081019050612ef1565b83811115612f1b576000848401525b50505050565b60006002820490506001821680612f3957607f821691505b60208210811415612f4d57612f4c61305c565b5b50919050565b612f5c826130fd565b810181811067ffffffffffffffff82111715612f7b57612f7a6130ba565b5b80604052505050565b6000612f8f82612ed5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fc257612fc1612ffe565b5b600182019050919050565b6000612fd882612ed5565b9150612fe383612ed5565b925082612ff357612ff261302d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4d696e74206e6f74206163746976652079657400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6133f081612e6b565b81146133fb57600080fd5b50565b61340781612e7d565b811461341257600080fd5b50565b61341e81612e89565b811461342957600080fd5b50565b61343581612ed5565b811461344057600080fd5b5056fea26469706673582212205b14b7e12ba6d847ce7adc382bac466e636dbf22d67d2b6b00de507ae0bacbdc64736f6c63430008070033

Deployed Bytecode Sourcemap

70966:3383:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38492:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39394:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45877:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45318:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73725:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35145:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73984:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74220:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49584:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72988:142;;;;;;;;;;;;;:::i;:::-;;52497:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72338:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71325:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40787:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71124:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71281:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73860:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36329:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;71163:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39570:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71199:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74093:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71424:908;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46435:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72553:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53280:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73136:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71086:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46900:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72697:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73595:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71239:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38492:639;38577:4;38916:10;38901:25;;:11;:25;;;;:102;;;;38993:10;38978:25;;:11;:25;;;;38901:102;:179;;;;39070:10;39055:25;;:11;:25;;;;38901:179;38881:199;;38492:639;;;:::o;39394:100::-;39448:13;39481:5;39474:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39394:100;:::o;45877:218::-;45953:7;45978:16;45986:7;45978;:16::i;:::-;45973:64;;46003:34;;;;;;;;;;;;;;45973:64;46057:15;:24;46073:7;46057:24;;;;;;;;;;;:30;;;;;;;;;;;;46050:37;;45877:218;;;:::o;45318:400::-;45399:13;45415:16;45423:7;45415;:16::i;:::-;45399:32;;45471:5;45448:28;;:19;:17;:19::i;:::-;:28;;;45444:175;;45496:44;45513:5;45520:19;:17;:19::i;:::-;45496:16;:44::i;:::-;45491:128;;45568:35;;;;;;;;;;;;;;45491:128;45444:175;45664:2;45631:15;:24;45647:7;45631:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;45702:7;45698:2;45682:28;;45691:5;45682:28;;;;;;;;;;;;45388:330;45318:400;;:::o;73725:129::-;2014:13;:11;:13::i;:::-;73835::::1;73818:14;:30;;;;73725:129:::0;:::o;35145:323::-;35206:7;35434:15;:13;:15::i;:::-;35419:12;;35403:13;;:28;:46;35396:53;;35145:323;:::o;73984:103::-;2014:13;:11;:13::i;:::-;74075:6:::1;74067:5;:14;;;;73984:103:::0;:::o;74220:126::-;2014:13;:11;:13::i;:::-;74334:6:::1;74312:19;:28;;;;74220:126:::0;:::o;49584:2817::-;49718:27;49748;49767:7;49748:18;:27::i;:::-;49718:57;;49833:4;49792:45;;49808:19;49792:45;;;49788:86;;49846:28;;;;;;;;;;;;;;49788:86;49888:27;49917:23;49944:35;49971:7;49944:26;:35::i;:::-;49887:92;;;;50079:68;50104:15;50121:4;50127:19;:17;:19::i;:::-;50079:24;:68::i;:::-;50074:180;;50167:43;50184:4;50190:19;:17;:19::i;:::-;50167:16;:43::i;:::-;50162:92;;50219:35;;;;;;;;;;;;;;50162:92;50074:180;50285:1;50271:16;;:2;:16;;;50267:52;;;50296:23;;;;;;;;;;;;;;50267:52;50332:43;50354:4;50360:2;50364:7;50373:1;50332:21;:43::i;:::-;50468:15;50465:160;;;50608:1;50587:19;50580:30;50465:160;51005:18;:24;51024:4;51005:24;;;;;;;;;;;;;;;;51003:26;;;;;;;;;;;;51074:18;:22;51093:2;51074:22;;;;;;;;;;;;;;;;51072:24;;;;;;;;;;;51396:146;51433:2;51482:45;51497:4;51503:2;51507:19;51482:14;:45::i;:::-;31544:8;51454:73;51396:18;:146::i;:::-;51367:17;:26;51385:7;51367:26;;;;;;;;;;;:175;;;;51713:1;31544:8;51662:19;:47;:52;51658:627;;;51735:19;51767:1;51757:7;:11;51735:33;;51924:1;51890:17;:30;51908:11;51890:30;;;;;;;;;;;;:35;51886:384;;;52028:13;;52013:11;:28;52009:242;;52208:19;52175:17;:30;52193:11;52175:30;;;;;;;;;;;:52;;;;52009:242;51886:384;51716:569;51658:627;52332:7;52328:2;52313:27;;52322:4;52313:27;;;;;;;;;;;;52351:42;52372:4;52378:2;52382:7;52391:1;52351:20;:42::i;:::-;49707:2694;;;49584:2817;;;:::o;72988:142::-;2014:13;:11;:13::i;:::-;19110:1:::1;19708:7;;:19;;19700:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;19110:1;19841:7;:18;;;;73063:61:::2;73089:10;73102:21;73063:17;:61::i;:::-;19066:1:::1;20020:7;:22;;;;72988:142::o:0;52497:185::-;52635:39;52652:4;52658:2;52662:7;52635:39;;;;;;;;;;;;:16;:39::i;:::-;52497:185;;;:::o;72338:108::-;2014:13;:11;:13::i;:::-;72433:7:::1;72418:12;:22;;;;;;;;;;;;:::i;:::-;;72338:108:::0;:::o;71325:31::-;;;;;;;;;;;;;:::o;40787:152::-;40859:7;40902:27;40921:7;40902:18;:27::i;:::-;40879:52;;40787:152;;;:::o;71124:34::-;;;;:::o;71281:39::-;;;;:::o;73860:118::-;2014:13;:11;:13::i;:::-;73961:11:::1;73948:10;:24;;;;73860:118:::0;:::o;36329:233::-;36401:7;36442:1;36425:19;;:5;:19;;;36421:60;;;36453:28;;;;;;;;;;;;;;36421:60;30488:13;36499:18;:25;36518:5;36499:25;;;;;;;;;;;;;;;;:55;36492:62;;36329:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;71163:31::-;;;;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;39570:104::-;39626:13;39659:7;39652:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39570:104;:::o;71199:35::-;;;;:::o;74093:121::-;2014:13;:11;:13::i;:::-;74202:6:::1;74189:10;:19;;;;74093:121:::0;:::o;71424:908::-;71511:12;;;;;;;;;;;71503:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;71608:1;71595:10;;:14;;;;:::i;:::-;71578;71562:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:47;71554:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;71649:14;;71633:13;:11;:13::i;:::-;:30;71630:653;;;71725:9;71706:14;71698:5;;:22;;;;:::i;:::-;71697:37;;71675:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;71630:653;;;71832:19;;71815:14;:36;71811:465;;;71914:9;71895:14;71887:5;;:22;;;;:::i;:::-;71886:37;;71864:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;72026:10;;72008:14;:28;;71986:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;71811:465;;;72175:19;;72157:14;:37;;72131:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;71811:465;71630:653;72289:37;72299:10;72311:14;72289:9;:37::i;:::-;71424:908;:::o;46435:308::-;46546:19;:17;:19::i;:::-;46534:31;;:8;:31;;;46530:61;;;46574:17;;;;;;;;;;;;;;46530:61;46656:8;46604:18;:39;46623:19;:17;:19::i;:::-;46604:39;;;;;;;;;;;;;;;:49;46644:8;46604:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;46716:8;46680:55;;46695:19;:17;:19::i;:::-;46680:55;;;46726:8;46680:55;;;;;;:::i;:::-;;;;;;;;46435:308;;:::o;72553:138::-;2014:13;:11;:13::i;:::-;72649:36:::1;72659:9;72670:14;72649:9;:36::i;:::-;72553:138:::0;;:::o;53280:399::-;53447:31;53460:4;53466:2;53470:7;53447:12;:31::i;:::-;53511:1;53493:2;:14;;;:19;53489:183;;53532:56;53563:4;53569:2;53573:7;53582:5;53532:30;:56::i;:::-;53527:145;;53616:40;;;;;;;;;;;;;;53527:145;53489:183;53280:399;;;;:::o;73136:312::-;73232:13;73273:17;73281:8;73273:7;:17::i;:::-;73257:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;73393:12;73412:19;:8;:17;:19::i;:::-;73376:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73362:80;;73136:312;;;:::o;71086:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46900:164::-;46997:4;47021:18;:25;47040:5;47021:25;;;;;;;;;;;;;;;:35;47047:8;47021:35;;;;;;;;;;;;;;;;;;;;;;;;;47014:42;;46900:164;;;;:::o;72697:285::-;2014:13;:11;:13::i;:::-;72798:1:::1;72787:8;:12;72771:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;72887:10;;72875:8;72859:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;72843:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;72945:31;72955:10;72967:8;72945:9;:31::i;:::-;72697:285:::0;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;73595:124::-;2014:13;:11;:13::i;:::-;73700::::1;73685:12;;:28;;;;;;;;;;;;;;;;;;73595:124:::0;:::o;71239:37::-;;;;:::o;47322:282::-;47387:4;47443:7;47424:15;:13;:15::i;:::-;:26;;:66;;;;;47477:13;;47467:7;:23;47424:66;:153;;;;;47576:1;31264:8;47528:17;:26;47546:7;47528:26;;;;;;;;;;;;:44;:49;47424:153;47404:173;;47322:282;;;:::o;69088:105::-;69148:7;69175:10;69168:17;;69088:105;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;72452:95::-;72517:7;72540:1;72533:8;;72452:95;:::o;41942:1275::-;42009:7;42029:12;42044:7;42029:22;;42112:4;42093:15;:13;:15::i;:::-;:23;42089:1061;;42146:13;;42139:4;:20;42135:1015;;;42184:14;42201:17;:23;42219:4;42201:23;;;;;;;;;;;;42184:40;;42318:1;31264:8;42290:6;:24;:29;42286:845;;;42955:113;42972:1;42962:6;:11;42955:113;;;43015:17;:25;43033:6;;;;;;;43015:25;;;;;;;;;;;;43006:34;;42955:113;;;43101:6;43094:13;;;;;;42286:845;42161:989;42135:1015;42089:1061;43178:31;;;;;;;;;;;;;;41942:1275;;;;:::o;48485:479::-;48587:27;48616:23;48657:38;48698:15;:24;48714:7;48698:24;;;;;;;;;;;48657:65;;48869:18;48846:41;;48926:19;48920:26;48901:45;;48831:126;48485:479;;;:::o;47713:659::-;47862:11;48027:16;48020:5;48016:28;48007:37;;48187:16;48176:9;48172:32;48159:45;;48337:15;48326:9;48323:30;48315:5;48304:9;48301:20;48298:56;48288:66;;47713:659;;;;;:::o;54341:159::-;;;;;:::o;68397:311::-;68532:7;68552:16;31668:3;68578:19;:41;;68552:68;;31668:3;68646:31;68657:4;68663:2;68667:9;68646:10;:31::i;:::-;68638:40;;:62;;68631:69;;;68397:311;;;;;:::o;43765:450::-;43845:14;44013:16;44006:5;44002:28;43993:37;;44190:5;44176:11;44151:23;44147:41;44144:52;44137:5;44134:63;44124:73;;43765:450;;;;:::o;55165:158::-;;;;;:::o;11239:317::-;11354:6;11329:21;:31;;11321:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11408:12;11426:9;:14;;11448:6;11426:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11407:52;;;11478:7;11470:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11310:246;11239:317;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;62920:112::-;62997:27;63007:2;63011:8;62997:27;;;;;;;;;;;;:9;:27::i;:::-;62920:112;;:::o;55763:716::-;55926:4;55972:2;55947:45;;;55993:19;:17;:19::i;:::-;56014:4;56020:7;56029:5;55947:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55943:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56247:1;56230:6;:13;:18;56226:235;;;56276:40;;;;;;;;;;;;;;56226:235;56419:6;56413:13;56404:6;56400:2;56396:15;56389:38;55943:529;56116:54;;;56106:64;;;:6;:64;;;;56099:71;;;55763:716;;;;;;:::o;6678:723::-;6734:13;6964:1;6955:5;:10;6951:53;;;6982:10;;;;;;;;;;;;;;;;;;;;;6951:53;7014:12;7029:5;7014:20;;7045:14;7070:78;7085:1;7077:4;:9;7070:78;;7103:8;;;;;:::i;:::-;;;;7134:2;7126:10;;;;;:::i;:::-;;;7070:78;;;7158:19;7190:6;7180:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7158:39;;7208:154;7224:1;7215:5;:10;7208:154;;7252:1;7242:11;;;;;:::i;:::-;;;7319:2;7311:5;:10;;;;:::i;:::-;7298:2;:24;;;;:::i;:::-;7285:39;;7268:6;7275;7268:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;7348:2;7339:11;;;;;:::i;:::-;;;7208:154;;;7386:6;7372:21;;;;;6678:723;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;68098:147::-;68235:6;68098:147;;;;;:::o;62147:689::-;62278:19;62284:2;62288:8;62278:5;:19::i;:::-;62357:1;62339:2;:14;;;:19;62335:483;;62379:11;62393:13;;62379:27;;62425:13;62447:8;62441:3;:14;62425:30;;62474:233;62505:62;62544:1;62548:2;62552:7;;;;;;62561:5;62505:30;:62::i;:::-;62500:167;;62603:40;;;;;;;;;;;;;;62500:167;62702:3;62694:5;:11;62474:233;;62789:3;62772:13;;:20;62768:34;;62794:8;;;62768:34;62360:458;;62335:483;62147:689;;;:::o;56941:2454::-;57014:20;57037:13;;57014:36;;57077:1;57065:8;:13;57061:44;;;57087:18;;;;;;;;;;;;;;57061:44;57118:61;57148:1;57152:2;57156:12;57170:8;57118:21;:61::i;:::-;57662:1;30626:2;57632:1;:26;;57631:32;57619:8;:45;57593:18;:22;57612:2;57593:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;57941:139;57978:2;58032:33;58055:1;58059:2;58063:1;58032:14;:33::i;:::-;57999:30;58020:8;57999:20;:30::i;:::-;:66;57941:18;:139::i;:::-;57907:17;:31;57925:12;57907:31;;;;;;;;;;;:173;;;;58097:16;58128:11;58157:8;58142:12;:23;58128:37;;58412:16;58408:2;58404:25;58392:37;;58784:12;58744:8;58703:1;58641:25;58582:1;58521;58494:335;58909:1;58895:12;58891:20;58849:346;58950:3;58941:7;58938:16;58849:346;;59168:7;59158:8;59155:1;59128:25;59125:1;59122;59117:59;59003:1;58994:7;58990:15;58979:26;;58849:346;;;58853:77;59240:1;59228:8;:13;59224:45;;;59250:19;;;;;;;;;;;;;;59224:45;59302:3;59286:13;:19;;;;57367:1950;;59327:60;59356:1;59360:2;59364:12;59378:8;59327:20;:60::i;:::-;57003:2392;56941:2454;;:::o;44317:324::-;44387:14;44620:1;44610:8;44607:15;44581:24;44577:46;44567:56;;44317:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:365::-;10342:3;10363:66;10427:1;10422:3;10363:66;:::i;:::-;10356:73;;10438:93;10527:3;10438:93;:::i;:::-;10556:2;10551:3;10547:12;10540:19;;10200:365;;;:::o;10571:366::-;10713:3;10734:67;10798:2;10793:3;10734:67;:::i;:::-;10727:74;;10810:93;10899:3;10810:93;:::i;:::-;10928:2;10923:3;10919:12;10912:19;;10571:366;;;:::o;10943:::-;11085:3;11106:67;11170:2;11165:3;11106:67;:::i;:::-;11099:74;;11182:93;11271:3;11182:93;:::i;:::-;11300:2;11295:3;11291:12;11284:19;;10943:366;;;:::o;11315:::-;11457:3;11478:67;11542:2;11537:3;11478:67;:::i;:::-;11471:74;;11554:93;11643:3;11554:93;:::i;:::-;11672:2;11667:3;11663:12;11656:19;;11315:366;;;:::o;11687:::-;11829:3;11850:67;11914:2;11909:3;11850:67;:::i;:::-;11843:74;;11926:93;12015:3;11926:93;:::i;:::-;12044:2;12039:3;12035:12;12028:19;;11687:366;;;:::o;12059:::-;12201:3;12222:67;12286:2;12281:3;12222:67;:::i;:::-;12215:74;;12298:93;12387:3;12298:93;:::i;:::-;12416:2;12411:3;12407:12;12400:19;;12059:366;;;:::o;12431:::-;12573:3;12594:67;12658:2;12653:3;12594:67;:::i;:::-;12587:74;;12670:93;12759:3;12670:93;:::i;:::-;12788:2;12783:3;12779:12;12772:19;;12431:366;;;:::o;12803:400::-;12963:3;12984:84;13066:1;13061:3;12984:84;:::i;:::-;12977:91;;13077:93;13166:3;13077:93;:::i;:::-;13195:1;13190:3;13186:11;13179:18;;12803:400;;;:::o;13209:366::-;13351:3;13372:67;13436:2;13431:3;13372:67;:::i;:::-;13365:74;;13448:93;13537:3;13448:93;:::i;:::-;13566:2;13561:3;13557:12;13550:19;;13209:366;;;:::o;13581:::-;13723:3;13744:67;13808:2;13803:3;13744:67;:::i;:::-;13737:74;;13820:93;13909:3;13820:93;:::i;:::-;13938:2;13933:3;13929:12;13922:19;;13581:366;;;:::o;13953:398::-;14112:3;14133:83;14214:1;14209:3;14133:83;:::i;:::-;14126:90;;14225:93;14314:3;14225:93;:::i;:::-;14343:1;14338:3;14334:11;14327:18;;13953:398;;;:::o;14357:366::-;14499:3;14520:67;14584:2;14579:3;14520:67;:::i;:::-;14513:74;;14596:93;14685:3;14596:93;:::i;:::-;14714:2;14709:3;14705:12;14698:19;;14357:366;;;:::o;14729:::-;14871:3;14892:67;14956:2;14951:3;14892:67;:::i;:::-;14885:74;;14968:93;15057:3;14968:93;:::i;:::-;15086:2;15081:3;15077:12;15070:19;;14729:366;;;:::o;15101:::-;15243:3;15264:67;15328:2;15323:3;15264:67;:::i;:::-;15257:74;;15340:93;15429:3;15340:93;:::i;:::-;15458:2;15453:3;15449:12;15442:19;;15101:366;;;:::o;15473:400::-;15633:3;15654:84;15736:1;15731:3;15654:84;:::i;:::-;15647:91;;15747:93;15836:3;15747:93;:::i;:::-;15865:1;15860:3;15856:11;15849:18;;15473:400;;;:::o;15879:118::-;15966:24;15984:5;15966:24;:::i;:::-;15961:3;15954:37;15879:118;;:::o;16003:961::-;16382:3;16404:92;16492:3;16483:6;16404:92;:::i;:::-;16397:99;;16513:148;16657:3;16513:148;:::i;:::-;16506:155;;16678:95;16769:3;16760:6;16678:95;:::i;:::-;16671:102;;16790:148;16934:3;16790:148;:::i;:::-;16783:155;;16955:3;16948:10;;16003:961;;;;;:::o;16970:379::-;17154:3;17176:147;17319:3;17176:147;:::i;:::-;17169:154;;17340:3;17333:10;;16970:379;;;:::o;17355:222::-;17448:4;17486:2;17475:9;17471:18;17463:26;;17499:71;17567:1;17556:9;17552:17;17543:6;17499:71;:::i;:::-;17355:222;;;;:::o;17583:640::-;17778:4;17816:3;17805:9;17801:19;17793:27;;17830:71;17898:1;17887:9;17883:17;17874:6;17830:71;:::i;:::-;17911:72;17979:2;17968:9;17964:18;17955:6;17911:72;:::i;:::-;17993;18061:2;18050:9;18046:18;18037:6;17993:72;:::i;:::-;18112:9;18106:4;18102:20;18097:2;18086:9;18082:18;18075:48;18140:76;18211:4;18202:6;18140:76;:::i;:::-;18132:84;;17583:640;;;;;;;:::o;18229:210::-;18316:4;18354:2;18343:9;18339:18;18331:26;;18367:65;18429:1;18418:9;18414:17;18405:6;18367:65;:::i;:::-;18229:210;;;;:::o;18445:313::-;18558:4;18596:2;18585:9;18581:18;18573:26;;18645:9;18639:4;18635:20;18631:1;18620:9;18616:17;18609:47;18673:78;18746:4;18737:6;18673:78;:::i;:::-;18665:86;;18445:313;;;;:::o;18764:419::-;18930:4;18968:2;18957:9;18953:18;18945:26;;19017:9;19011:4;19007:20;19003:1;18992:9;18988:17;18981:47;19045:131;19171:4;19045:131;:::i;:::-;19037:139;;18764:419;;;:::o;19189:::-;19355:4;19393:2;19382:9;19378:18;19370:26;;19442:9;19436:4;19432:20;19428:1;19417:9;19413:17;19406:47;19470:131;19596:4;19470:131;:::i;:::-;19462:139;;19189:419;;;:::o;19614:::-;19780:4;19818:2;19807:9;19803:18;19795:26;;19867:9;19861:4;19857:20;19853:1;19842:9;19838:17;19831:47;19895:131;20021:4;19895:131;:::i;:::-;19887:139;;19614:419;;;:::o;20039:::-;20205:4;20243:2;20232:9;20228:18;20220:26;;20292:9;20286:4;20282:20;20278:1;20267:9;20263:17;20256:47;20320:131;20446:4;20320:131;:::i;:::-;20312:139;;20039:419;;;:::o;20464:::-;20630:4;20668:2;20657:9;20653:18;20645:26;;20717:9;20711:4;20707:20;20703:1;20692:9;20688:17;20681:47;20745:131;20871:4;20745:131;:::i;:::-;20737:139;;20464:419;;;:::o;20889:::-;21055:4;21093:2;21082:9;21078:18;21070:26;;21142:9;21136:4;21132:20;21128:1;21117:9;21113:17;21106:47;21170:131;21296:4;21170:131;:::i;:::-;21162:139;;20889:419;;;:::o;21314:::-;21480:4;21518:2;21507:9;21503:18;21495:26;;21567:9;21561:4;21557:20;21553:1;21542:9;21538:17;21531:47;21595:131;21721:4;21595:131;:::i;:::-;21587:139;;21314:419;;;:::o;21739:::-;21905:4;21943:2;21932:9;21928:18;21920:26;;21992:9;21986:4;21982:20;21978:1;21967:9;21963:17;21956:47;22020:131;22146:4;22020:131;:::i;:::-;22012:139;;21739:419;;;:::o;22164:::-;22330:4;22368:2;22357:9;22353:18;22345:26;;22417:9;22411:4;22407:20;22403:1;22392:9;22388:17;22381:47;22445:131;22571:4;22445:131;:::i;:::-;22437:139;;22164:419;;;:::o;22589:::-;22755:4;22793:2;22782:9;22778:18;22770:26;;22842:9;22836:4;22832:20;22828:1;22817:9;22813:17;22806:47;22870:131;22996:4;22870:131;:::i;:::-;22862:139;;22589:419;;;:::o;23014:::-;23180:4;23218:2;23207:9;23203:18;23195:26;;23267:9;23261:4;23257:20;23253:1;23242:9;23238:17;23231:47;23295:131;23421:4;23295:131;:::i;:::-;23287:139;;23014:419;;;:::o;23439:::-;23605:4;23643:2;23632:9;23628:18;23620:26;;23692:9;23686:4;23682:20;23678:1;23667:9;23663:17;23656:47;23720:131;23846:4;23720:131;:::i;:::-;23712:139;;23439:419;;;:::o;23864:222::-;23957:4;23995:2;23984:9;23980:18;23972:26;;24008:71;24076:1;24065:9;24061:17;24052:6;24008:71;:::i;:::-;23864:222;;;;:::o;24092:129::-;24126:6;24153:20;;:::i;:::-;24143:30;;24182:33;24210:4;24202:6;24182:33;:::i;:::-;24092:129;;;:::o;24227:75::-;24260:6;24293:2;24287:9;24277:19;;24227:75;:::o;24308:307::-;24369:4;24459:18;24451:6;24448:30;24445:56;;;24481:18;;:::i;:::-;24445:56;24519:29;24541:6;24519:29;:::i;:::-;24511:37;;24603:4;24597;24593:15;24585:23;;24308:307;;;:::o;24621:308::-;24683:4;24773:18;24765:6;24762:30;24759:56;;;24795:18;;:::i;:::-;24759:56;24833:29;24855:6;24833:29;:::i;:::-;24825:37;;24917:4;24911;24907:15;24899:23;;24621:308;;;:::o;24935:141::-;24984:4;25007:3;24999:11;;25030:3;25027:1;25020:14;25064:4;25061:1;25051:18;25043:26;;24935:141;;;:::o;25082:98::-;25133:6;25167:5;25161:12;25151:22;;25082:98;;;:::o;25186:99::-;25238:6;25272:5;25266:12;25256:22;;25186:99;;;:::o;25291:168::-;25374:11;25408:6;25403:3;25396:19;25448:4;25443:3;25439:14;25424:29;;25291:168;;;;:::o;25465:147::-;25566:11;25603:3;25588:18;;25465:147;;;;:::o;25618:169::-;25702:11;25736:6;25731:3;25724:19;25776:4;25771:3;25767:14;25752:29;;25618:169;;;;:::o;25793:148::-;25895:11;25932:3;25917:18;;25793:148;;;;:::o;25947:305::-;25987:3;26006:20;26024:1;26006:20;:::i;:::-;26001:25;;26040:20;26058:1;26040:20;:::i;:::-;26035:25;;26194:1;26126:66;26122:74;26119:1;26116:81;26113:107;;;26200:18;;:::i;:::-;26113:107;26244:1;26241;26237:9;26230:16;;25947:305;;;;:::o;26258:185::-;26298:1;26315:20;26333:1;26315:20;:::i;:::-;26310:25;;26349:20;26367:1;26349:20;:::i;:::-;26344:25;;26388:1;26378:35;;26393:18;;:::i;:::-;26378:35;26435:1;26432;26428:9;26423:14;;26258:185;;;;:::o;26449:348::-;26489:7;26512:20;26530:1;26512:20;:::i;:::-;26507:25;;26546:20;26564:1;26546:20;:::i;:::-;26541:25;;26734:1;26666:66;26662:74;26659:1;26656:81;26651:1;26644:9;26637:17;26633:105;26630:131;;;26741:18;;:::i;:::-;26630:131;26789:1;26786;26782:9;26771:20;;26449:348;;;;:::o;26803:191::-;26843:4;26863:20;26881:1;26863:20;:::i;:::-;26858:25;;26897:20;26915:1;26897:20;:::i;:::-;26892:25;;26936:1;26933;26930:8;26927:34;;;26941:18;;:::i;:::-;26927:34;26986:1;26983;26979:9;26971:17;;26803:191;;;;:::o;27000:96::-;27037:7;27066:24;27084:5;27066:24;:::i;:::-;27055:35;;27000:96;;;:::o;27102:90::-;27136:7;27179:5;27172:13;27165:21;27154:32;;27102:90;;;:::o;27198:149::-;27234:7;27274:66;27267:5;27263:78;27252:89;;27198:149;;;:::o;27353:126::-;27390:7;27430:42;27423:5;27419:54;27408:65;;27353:126;;;:::o;27485:77::-;27522:7;27551:5;27540:16;;27485:77;;;:::o;27568:154::-;27652:6;27647:3;27642;27629:30;27714:1;27705:6;27700:3;27696:16;27689:27;27568:154;;;:::o;27728:307::-;27796:1;27806:113;27820:6;27817:1;27814:13;27806:113;;;27905:1;27900:3;27896:11;27890:18;27886:1;27881:3;27877:11;27870:39;27842:2;27839:1;27835:10;27830:15;;27806:113;;;27937:6;27934:1;27931:13;27928:101;;;28017:1;28008:6;28003:3;27999:16;27992:27;27928:101;27777:258;27728:307;;;:::o;28041:320::-;28085:6;28122:1;28116:4;28112:12;28102:22;;28169:1;28163:4;28159:12;28190:18;28180:81;;28246:4;28238:6;28234:17;28224:27;;28180:81;28308:2;28300:6;28297:14;28277:18;28274:38;28271:84;;;28327:18;;:::i;:::-;28271:84;28092:269;28041:320;;;:::o;28367:281::-;28450:27;28472:4;28450:27;:::i;:::-;28442:6;28438:40;28580:6;28568:10;28565:22;28544:18;28532:10;28529:34;28526:62;28523:88;;;28591:18;;:::i;:::-;28523:88;28631:10;28627:2;28620:22;28410:238;28367:281;;:::o;28654:233::-;28693:3;28716:24;28734:5;28716:24;:::i;:::-;28707:33;;28762:66;28755:5;28752:77;28749:103;;;28832:18;;:::i;:::-;28749:103;28879:1;28872:5;28868:13;28861:20;;28654:233;;;:::o;28893:176::-;28925:1;28942:20;28960:1;28942:20;:::i;:::-;28937:25;;28976:20;28994:1;28976:20;:::i;:::-;28971:25;;29015:1;29005:35;;29020:18;;:::i;:::-;29005:35;29061:1;29058;29054:9;29049:14;;28893:176;;;;:::o;29075:180::-;29123:77;29120:1;29113:88;29220:4;29217:1;29210:15;29244:4;29241:1;29234:15;29261:180;29309:77;29306:1;29299:88;29406:4;29403:1;29396:15;29430:4;29427:1;29420:15;29447:180;29495:77;29492:1;29485:88;29592:4;29589:1;29582:15;29616:4;29613:1;29606:15;29633:180;29681:77;29678:1;29671:88;29778:4;29775:1;29768:15;29802:4;29799:1;29792:15;29819:180;29867:77;29864:1;29857:88;29964:4;29961:1;29954:15;29988:4;29985:1;29978:15;30005:117;30114:1;30111;30104:12;30128:117;30237:1;30234;30227:12;30251:117;30360:1;30357;30350:12;30374:117;30483:1;30480;30473:12;30497:102;30538:6;30589:2;30585:7;30580:2;30573:5;30569:14;30565:28;30555:38;;30497:102;;;:::o;30605:157::-;30745:9;30741:1;30733:6;30729:14;30722:33;30605:157;:::o;30768:169::-;30908:21;30904:1;30896:6;30892:14;30885:45;30768:169;:::o;30943:225::-;31083:34;31079:1;31071:6;31067:14;31060:58;31152:8;31147:2;31139:6;31135:15;31128:33;30943:225;:::o;31174:245::-;31314:34;31310:1;31302:6;31298:14;31291:58;31383:28;31378:2;31370:6;31366:15;31359:53;31174:245;:::o;31425:179::-;31565:31;31561:1;31553:6;31549:14;31542:55;31425:179;:::o;31610:221::-;31750:34;31746:1;31738:6;31734:14;31727:58;31819:4;31814:2;31806:6;31802:15;31795:29;31610:221;:::o;31837:173::-;31977:25;31973:1;31965:6;31961:14;31954:49;31837:173;:::o;32016:155::-;32156:7;32152:1;32144:6;32140:14;32133:31;32016:155;:::o;32177:182::-;32317:34;32313:1;32305:6;32301:14;32294:58;32177:182;:::o;32365:234::-;32505:34;32501:1;32493:6;32489:14;32482:58;32574:17;32569:2;32561:6;32557:15;32550:42;32365:234;:::o;32605:114::-;;:::o;32725:169::-;32865:21;32861:1;32853:6;32849:14;32842:45;32725:169;:::o;32900:174::-;33040:26;33036:1;33028:6;33024:14;33017:50;32900:174;:::o;33080:181::-;33220:33;33216:1;33208:6;33204:14;33197:57;33080:181;:::o;33267:151::-;33407:3;33403:1;33395:6;33391:14;33384:27;33267:151;:::o;33424:122::-;33497:24;33515:5;33497:24;:::i;:::-;33490:5;33487:35;33477:63;;33536:1;33533;33526:12;33477:63;33424:122;:::o;33552:116::-;33622:21;33637:5;33622:21;:::i;:::-;33615:5;33612:32;33602:60;;33658:1;33655;33648:12;33602:60;33552:116;:::o;33674:120::-;33746:23;33763:5;33746:23;:::i;:::-;33739:5;33736:34;33726:62;;33784:1;33781;33774:12;33726:62;33674:120;:::o;33800:122::-;33873:24;33891:5;33873:24;:::i;:::-;33866:5;33863:35;33853:63;;33912:1;33909;33902:12;33853:63;33800:122;:::o

Swarm Source

ipfs://5b14b7e12ba6d847ce7adc382bac466e636dbf22d67d2b6b00de507ae0bacbdc
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.