ETH Price: $2,359.81 (+0.75%)

Token

The Pharaohs (☥)
 

Overview

Max Total Supply

888

Holders

86

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*拉屎不擦屁股.eth
Balance
2 ☥
0xa61595d90dd496970C56E5cFF8e85f1d315643Fe
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

5,000 Pharaohs to be mint for free. 3 free mint per transaction.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ThePharaohs

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-07-21
*/

// SPDX-License-Identifier: MIT

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol

//              ....             
//          :+#%%%%%%#+-         
//        -#%#=-....:=#%#-       
//       =%%-          -#%+      
//      :%%:            :%%:     
//      -%#              #%=     
//      :%%              %%:     
//       *%-            +%*      
//       .#%.          -%#.      
//        .##:        =%#.       
//         .*%=     .*%*.        
//           =%#-  =%%=          
//            .*%#%%*.     
//  #%%%%%%%%###%%%%###%%%%%%%%# 
//              =%%=
//              :%%-             
//              -%%-             
//              -%%-             
//              -%%=             
//              =%%=             
//              =%%=             
//              +%%+             
//              +%%+             
//              +%%*             
//              *%%*             
//              *%%*             
//              *%%#             
//              #%%#             


// ERC721A Contracts v4.2.0
// 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: @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: @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/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/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: https://github.com/thepharaohs/contracts/blob/main/ERC721A.sol


// ERC721A Contracts v4.2.0
// 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 ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 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: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: contracts/thepharaohs.sol


pragma solidity ^0.8.7;







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

  string  public  baseTokenURI = "ipfs://bafybeigf4rkyyeifo2rt63ho5kcnfgrcogfipbpkcco25lfpwlvx4di3pe/";

  uint256 public  maxSupply = 7000;
  uint256 public  MAX_MINTS_PER_TX = 7;
  uint256 public  FREE_MINTS_PER_TX = 3;
  uint256 public  PUBLIC_SALE_PRICE = 0.007 ether;
  uint256 public  TOTAL_FREE_MINTS = 5000;
  bool public isPublicSaleActive = true;

  constructor() ERC721A("The Pharaohs", unicode"☥") {
      _mint(msg.sender, 500);
  }

  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isPublicSaleActive, "Public sale is not open");
    require(
      totalSupply() + numberOfTokens <= maxSupply,
      "Maximum supply exceeded"
    );
    if(totalSupply() + numberOfTokens > TOTAL_FREE_MINTS || numberOfTokens > FREE_MINTS_PER_TX){
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
    }
    _safeMint(msg.sender, numberOfTokens);
  }

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

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

  function treasuryMint(uint quantity, address user)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(user, 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 setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }

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

  function setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      PUBLIC_SALE_PRICE = _price;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      MAX_MINTS_PER_TX = _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":"FREE_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FREE_MINTS","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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","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"},{"internalType":"address","name":"user","type":"address"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060438152602001620037a060439139600a908051906020019062000035929190620004b8565b50611b58600b556007600c556003600d556618de76816d8000600e55611388600f556001601060006101000a81548160ff0219169083151502179055503480156200007f57600080fd5b506040518060400160405280600c81526020017f5468652050686172616f687300000000000000000000000000000000000000008152506040518060400160405280600381526020017fe298a50000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000104929190620004b8565b5080600390805190602001906200011d929190620004b8565b506200012e6200017860201b60201c565b6000819055505050620001566200014a6200018160201b60201c565b6200018960201b60201c565b600160098190555062000172336101f46200024f60201b60201c565b620005cd565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082141562000291576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002a660008483856200043860201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555062000335836200031760008660006200043e60201b60201c565b62000328856200046e60201b60201c565b176200047e60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620003d857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506200039b565b50600082141562000415576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004336000848385620004a960201b60201c565b505050565b50505050565b60008060e883901c905060e86200045d868684620004af60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b828054620004c69062000568565b90600052602060002090601f016020900481019282620004ea576000855562000536565b82601f106200050557805160ff191683800117855562000536565b8280016001018555821562000536579182015b828111156200053557825182559160200191906001019062000518565b5b50905062000545919062000549565b5090565b5b80821115620005645760008160009055506001016200054a565b5090565b600060028204905060018216806200058157607f821691505b602082108114156200059857620005976200059e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6131c380620005dd6000396000f3fe6080604052600436106101e35760003560e01c806366cb8f9911610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb01146106ab578063e985e9c5146106d6578063f2a3013e14610713578063f2fde38b1461073c576101e3565b8063b88d4fde146105ef578063c6a91b4214610618578063c87b56dd14610643578063d547cfb714610680576101e3565b806395d89b41116100d157806395d89b41146105565780639e9fcffc14610581578063a0712d68146105aa578063a22cb465146105c6576101e3565b806366cb8f99146104ac57806370a08231146104d7578063715018a6146105145780638da5cb5b1461052b576101e3565b80631919fed71161017a5780633ccfd60b116101495780633ccfd60b1461040657806342842e0e1461041d57806355f804b3146104465780636352211e1461046f576101e3565b80631919fed7146103605780631e84c4131461038957806323b872dd146103b457806328cad13d146103dd576101e3565b8063089d4665116101b6578063089d4665146102b8578063095ea7b3146102e35780630a00ae831461030c57806318160ddd14610335576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906123ba565b610765565b60405161021c9190612896565b60405180910390f35b34801561023157600080fd5b5061023a6107f7565b60405161024791906128b1565b60405180910390f35b34801561025c57600080fd5b50610265610889565b6040516102729190612a13565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061245d565b61088f565b6040516102af919061282f565b60405180910390f35b3480156102c457600080fd5b506102cd61090e565b6040516102da9190612a13565b60405180910390f35b3480156102ef57600080fd5b5061030a6004803603810190610305919061234d565b610914565b005b34801561031857600080fd5b50610333600480360381019061032e919061245d565b610a58565b005b34801561034157600080fd5b5061034a610a6a565b6040516103579190612a13565b60405180910390f35b34801561036c57600080fd5b506103876004803603810190610382919061245d565b610a81565b005b34801561039557600080fd5b5061039e610a93565b6040516103ab9190612896565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190612237565b610aa6565b005b3480156103e957600080fd5b5061040460048036038101906103ff919061238d565b610dcb565b005b34801561041257600080fd5b5061041b610df0565b005b34801561042957600080fd5b50610444600480360381019061043f9190612237565b610e5a565b005b34801561045257600080fd5b5061046d60048036038101906104689190612414565b610e7a565b005b34801561047b57600080fd5b506104966004803603810190610491919061245d565b610e9c565b6040516104a3919061282f565b60405180910390f35b3480156104b857600080fd5b506104c1610eae565b6040516104ce9190612a13565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f991906121ca565b610eb4565b60405161050b9190612a13565b60405180910390f35b34801561052057600080fd5b50610529610f6d565b005b34801561053757600080fd5b50610540610f81565b60405161054d919061282f565b60405180910390f35b34801561056257600080fd5b5061056b610fab565b60405161057891906128b1565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a3919061245d565b61103d565b005b6105c460048036038101906105bf919061245d565b61104f565b005b3480156105d257600080fd5b506105ed60048036038101906105e8919061230d565b61117b565b005b3480156105fb57600080fd5b506106166004803603810190610611919061228a565b6112f3565b005b34801561062457600080fd5b5061062d611366565b60405161063a9190612a13565b60405180910390f35b34801561064f57600080fd5b5061066a6004803603810190610665919061245d565b61136c565b60405161067791906128b1565b60405180910390f35b34801561068c57600080fd5b506106956113e8565b6040516106a291906128b1565b60405180910390f35b3480156106b757600080fd5b506106c0611476565b6040516106cd9190612a13565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f891906121f7565b61147c565b60405161070a9190612896565b60405180910390f35b34801561071f57600080fd5b5061073a6004803603810190610735919061248a565b611510565b005b34801561074857600080fd5b50610763600480360381019061075e91906121ca565b6115c0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080690612ce3565b80601f016020809104026020016040519081016040528092919081815260200182805461083290612ce3565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600e5481565b600061089a82611644565b6108d0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b600061091f82610e9c565b90508073ffffffffffffffffffffffffffffffffffffffff166109406116a3565b73ffffffffffffffffffffffffffffffffffffffff16146109a35761096c816109676116a3565b61147c565b6109a2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a606116ab565b80600f8190555050565b6000610a74611729565b6001546000540303905090565b610a896116ab565b80600e8190555050565b601060009054906101000a900460ff1681565b6000610ab182611732565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b18576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b2484611800565b91509150610b3a8187610b356116a3565b611827565b610b8657610b4f86610b4a6116a3565b61147c565b610b85576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bed576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bfa868686600161186b565b8015610c0557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cd385610caf888887611871565b7c020000000000000000000000000000000000000000000000000000000017611899565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d5b576000600185019050600060046000838152602001908152602001600020541415610d59576000548114610d58578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dc386868660016118c4565b505050505050565b610dd36116ab565b80601060006101000a81548160ff02191690831515021790555050565b610df86116ab565b60026009541415610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e35906129d3565b60405180910390fd5b6002600981905550610e5033476118ca565b6001600981905550565b610e75838383604051806020016040528060008152506112f3565b505050565b610e826116ab565b80600a9080519060200190610e98929190611fde565b5050565b6000610ea782611732565b9050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f756116ab565b610f7f60006119be565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fba90612ce3565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe690612ce3565b80156110335780601f1061100857610100808354040283529160200191611033565b820191906000526020600020905b81548152906001019060200180831161101657829003601f168201915b5050505050905090565b6110456116ab565b80600c8190555050565b601060009054906101000a900460ff1661109e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611095906129f3565b60405180910390fd5b600b54816110aa610a6a565b6110b49190612b18565b11156110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90612933565b60405180910390fd5b600f5481611101610a6a565b61110b9190612b18565b11806111185750600d5481115b1561116e573481600e5461112c9190612b9f565b111561116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906129b3565b60405180910390fd5b5b6111783382611a84565b50565b6111836116a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111f56116a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112a26116a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112e79190612896565b60405180910390a35050565b6112fe848484610aa6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113605761132984848484611aa2565b61135f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b606061137782611644565b6113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90612973565b60405180910390fd5b600a6113c183611c02565b6040516020016113d29291906127e0565b6040516020818303038152906040529050919050565b600a80546113f590612ce3565b80601f016020809104026020016040519081016040528092919081815260200182805461142190612ce3565b801561146e5780601f106114435761010080835404028352916020019161146e565b820191906000526020600020905b81548152906001019060200180831161145157829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115186116ab565b6000821161155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290612993565b60405180910390fd5b600b5482611567610a6a565b6115719190612b18565b11156115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990612933565b60405180910390fd5b6115bc8183611a84565b5050565b6115c86116ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f906128d3565b60405180910390fd5b611641816119be565b50565b60008161164f611729565b1115801561165e575060005482105b801561169c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6116b3611d63565b73ffffffffffffffffffffffffffffffffffffffff166116d1610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90612953565b60405180910390fd5b565b60006001905090565b60008082905080611741611729565b116117c9576000548110156117c85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117c6575b60008114156117bc576004600083600190039350838152602001908152602001600020549050611791565b80925050506117fb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611888868684611d6b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b8047101561190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490612913565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516119339061281a565b60006040518083038185875af1925050503d8060008114611970576040519150601f19603f3d011682016040523d82523d6000602084013e611975565b606091505b50509050806119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906128f3565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a9e828260405180602001604052806000815250611d74565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ac86116a3565b8786866040518563ffffffff1660e01b8152600401611aea949392919061284a565b602060405180830381600087803b158015611b0457600080fd5b505af1925050508015611b3557506040513d601f19601f82011682018060405250810190611b3291906123e7565b60015b611baf573d8060008114611b65576040519150601f19603f3d011682016040523d82523d6000602084013e611b6a565b606091505b50600081511415611ba7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611c4a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d5e565b600082905060005b60008214611c7c578080611c6590612d46565b915050600a82611c759190612b6e565b9150611c52565b60008167ffffffffffffffff811115611c9857611c97612e7c565b5b6040519080825280601f01601f191660200182016040528015611cca5781602001600182028036833780820191505090505b5090505b60008514611d5757600182611ce39190612bf9565b9150600a85611cf29190612d8f565b6030611cfe9190612b18565b60f81b818381518110611d1457611d13612e4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d509190612b6e565b9450611cce565b8093505050505b919050565b600033905090565b60009392505050565b611d7e8383611e11565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0c57600080549050600083820390505b611dbe6000868380600101945086611aa2565b611df4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dab578160005414611e0957600080fd5b50505b505050565b6000805490506000821415611e52576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e5f600084838561186b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ed683611ec76000866000611871565b611ed085611fce565b17611899565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f7757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f3c565b506000821415611fb3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fc960008483856118c4565b505050565b60006001821460e11b9050919050565b828054611fea90612ce3565b90600052602060002090601f01602090048101928261200c5760008555612053565b82601f1061202557805160ff1916838001178555612053565b82800160010185558215612053579182015b82811115612052578251825591602001919060010190612037565b5b5090506120609190612064565b5090565b5b8082111561207d576000816000905550600101612065565b5090565b600061209461208f84612a53565b612a2e565b9050828152602081018484840111156120b0576120af612eb0565b5b6120bb848285612ca1565b509392505050565b60006120d66120d184612a84565b612a2e565b9050828152602081018484840111156120f2576120f1612eb0565b5b6120fd848285612ca1565b509392505050565b60008135905061211481613131565b92915050565b60008135905061212981613148565b92915050565b60008135905061213e8161315f565b92915050565b6000815190506121538161315f565b92915050565b600082601f83011261216e5761216d612eab565b5b813561217e848260208601612081565b91505092915050565b600082601f83011261219c5761219b612eab565b5b81356121ac8482602086016120c3565b91505092915050565b6000813590506121c481613176565b92915050565b6000602082840312156121e0576121df612eba565b5b60006121ee84828501612105565b91505092915050565b6000806040838503121561220e5761220d612eba565b5b600061221c85828601612105565b925050602061222d85828601612105565b9150509250929050565b6000806000606084860312156122505761224f612eba565b5b600061225e86828701612105565b935050602061226f86828701612105565b9250506040612280868287016121b5565b9150509250925092565b600080600080608085870312156122a4576122a3612eba565b5b60006122b287828801612105565b94505060206122c387828801612105565b93505060406122d4878288016121b5565b925050606085013567ffffffffffffffff8111156122f5576122f4612eb5565b5b61230187828801612159565b91505092959194509250565b6000806040838503121561232457612323612eba565b5b600061233285828601612105565b92505060206123438582860161211a565b9150509250929050565b6000806040838503121561236457612363612eba565b5b600061237285828601612105565b9250506020612383858286016121b5565b9150509250929050565b6000602082840312156123a3576123a2612eba565b5b60006123b18482850161211a565b91505092915050565b6000602082840312156123d0576123cf612eba565b5b60006123de8482850161212f565b91505092915050565b6000602082840312156123fd576123fc612eba565b5b600061240b84828501612144565b91505092915050565b60006020828403121561242a57612429612eba565b5b600082013567ffffffffffffffff81111561244857612447612eb5565b5b61245484828501612187565b91505092915050565b60006020828403121561247357612472612eba565b5b6000612481848285016121b5565b91505092915050565b600080604083850312156124a1576124a0612eba565b5b60006124af858286016121b5565b92505060206124c085828601612105565b9150509250929050565b6124d381612c2d565b82525050565b6124e281612c3f565b82525050565b60006124f382612aca565b6124fd8185612ae0565b935061250d818560208601612cb0565b61251681612ebf565b840191505092915050565b600061252c82612ad5565b6125368185612afc565b9350612546818560208601612cb0565b61254f81612ebf565b840191505092915050565b600061256582612ad5565b61256f8185612b0d565b935061257f818560208601612cb0565b80840191505092915050565b6000815461259881612ce3565b6125a28186612b0d565b945060018216600081146125bd57600181146125ce57612601565b60ff19831686528186019350612601565b6125d785612ab5565b60005b838110156125f9578154818901526001820191506020810190506125da565b838801955050505b50505092915050565b6000612617602683612afc565b915061262282612ed0565b604082019050919050565b600061263a603a83612afc565b915061264582612f1f565b604082019050919050565b600061265d601d83612afc565b915061266882612f6e565b602082019050919050565b6000612680601783612afc565b915061268b82612f97565b602082019050919050565b60006126a3600583612b0d565b91506126ae82612fc0565b600582019050919050565b60006126c6602083612afc565b91506126d182612fe9565b602082019050919050565b60006126e9602f83612afc565b91506126f482613012565b604082019050919050565b600061270c600083612af1565b915061271782613061565b600082019050919050565b600061272f601383612afc565b915061273a82613064565b602082019050919050565b6000612752601883612afc565b915061275d8261308d565b602082019050919050565b6000612775601f83612afc565b9150612780826130b6565b602082019050919050565b6000612798601783612afc565b91506127a3826130df565b602082019050919050565b60006127bb600183612b0d565b91506127c682613108565b600182019050919050565b6127da81612c97565b82525050565b60006127ec828561258b565b91506127f7826127ae565b9150612803828461255a565b915061280e82612696565b91508190509392505050565b6000612825826126ff565b9150819050919050565b600060208201905061284460008301846124ca565b92915050565b600060808201905061285f60008301876124ca565b61286c60208301866124ca565b61287960408301856127d1565b818103606083015261288b81846124e8565b905095945050505050565b60006020820190506128ab60008301846124d9565b92915050565b600060208201905081810360008301526128cb8184612521565b905092915050565b600060208201905081810360008301526128ec8161260a565b9050919050565b6000602082019050818103600083015261290c8161262d565b9050919050565b6000602082019050818103600083015261292c81612650565b9050919050565b6000602082019050818103600083015261294c81612673565b9050919050565b6000602082019050818103600083015261296c816126b9565b9050919050565b6000602082019050818103600083015261298c816126dc565b9050919050565b600060208201905081810360008301526129ac81612722565b9050919050565b600060208201905081810360008301526129cc81612745565b9050919050565b600060208201905081810360008301526129ec81612768565b9050919050565b60006020820190508181036000830152612a0c8161278b565b9050919050565b6000602082019050612a2860008301846127d1565b92915050565b6000612a38612a49565b9050612a448282612d15565b919050565b6000604051905090565b600067ffffffffffffffff821115612a6e57612a6d612e7c565b5b612a7782612ebf565b9050602081019050919050565b600067ffffffffffffffff821115612a9f57612a9e612e7c565b5b612aa882612ebf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b2382612c97565b9150612b2e83612c97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6357612b62612dc0565b5b828201905092915050565b6000612b7982612c97565b9150612b8483612c97565b925082612b9457612b93612def565b5b828204905092915050565b6000612baa82612c97565b9150612bb583612c97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bee57612bed612dc0565b5b828202905092915050565b6000612c0482612c97565b9150612c0f83612c97565b925082821015612c2257612c21612dc0565b5b828203905092915050565b6000612c3882612c77565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612cce578082015181840152602081019050612cb3565b83811115612cdd576000848401525b50505050565b60006002820490506001821680612cfb57607f821691505b60208210811415612d0f57612d0e612e1e565b5b50919050565b612d1e82612ebf565b810181811067ffffffffffffffff82111715612d3d57612d3c612e7c565b5b80604052505050565b6000612d5182612c97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d8457612d83612dc0565b5b600182019050919050565b6000612d9a82612c97565b9150612da583612c97565b925082612db557612db4612def565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61313a81612c2d565b811461314557600080fd5b50565b61315181612c3f565b811461315c57600080fd5b50565b61316881612c4b565b811461317357600080fd5b50565b61317f81612c97565b811461318a57600080fd5b5056fea2646970667358221220deb32827d46e3e6a221f267fdaa8b9eb34f60d69d55f2d792fb492a28675744064736f6c63430008070033697066733a2f2f62616679626569676634726b79796569666f3272743633686f356b636e666772636f6766697062706b63636f32356c6670776c76783464693370652f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806366cb8f9911610102578063b88d4fde11610095578063d5abeb0111610064578063d5abeb01146106ab578063e985e9c5146106d6578063f2a3013e14610713578063f2fde38b1461073c576101e3565b8063b88d4fde146105ef578063c6a91b4214610618578063c87b56dd14610643578063d547cfb714610680576101e3565b806395d89b41116100d157806395d89b41146105565780639e9fcffc14610581578063a0712d68146105aa578063a22cb465146105c6576101e3565b806366cb8f99146104ac57806370a08231146104d7578063715018a6146105145780638da5cb5b1461052b576101e3565b80631919fed71161017a5780633ccfd60b116101495780633ccfd60b1461040657806342842e0e1461041d57806355f804b3146104465780636352211e1461046f576101e3565b80631919fed7146103605780631e84c4131461038957806323b872dd146103b457806328cad13d146103dd576101e3565b8063089d4665116101b6578063089d4665146102b8578063095ea7b3146102e35780630a00ae831461030c57806318160ddd14610335576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906123ba565b610765565b60405161021c9190612896565b60405180910390f35b34801561023157600080fd5b5061023a6107f7565b60405161024791906128b1565b60405180910390f35b34801561025c57600080fd5b50610265610889565b6040516102729190612a13565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061245d565b61088f565b6040516102af919061282f565b60405180910390f35b3480156102c457600080fd5b506102cd61090e565b6040516102da9190612a13565b60405180910390f35b3480156102ef57600080fd5b5061030a6004803603810190610305919061234d565b610914565b005b34801561031857600080fd5b50610333600480360381019061032e919061245d565b610a58565b005b34801561034157600080fd5b5061034a610a6a565b6040516103579190612a13565b60405180910390f35b34801561036c57600080fd5b506103876004803603810190610382919061245d565b610a81565b005b34801561039557600080fd5b5061039e610a93565b6040516103ab9190612896565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190612237565b610aa6565b005b3480156103e957600080fd5b5061040460048036038101906103ff919061238d565b610dcb565b005b34801561041257600080fd5b5061041b610df0565b005b34801561042957600080fd5b50610444600480360381019061043f9190612237565b610e5a565b005b34801561045257600080fd5b5061046d60048036038101906104689190612414565b610e7a565b005b34801561047b57600080fd5b506104966004803603810190610491919061245d565b610e9c565b6040516104a3919061282f565b60405180910390f35b3480156104b857600080fd5b506104c1610eae565b6040516104ce9190612a13565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f991906121ca565b610eb4565b60405161050b9190612a13565b60405180910390f35b34801561052057600080fd5b50610529610f6d565b005b34801561053757600080fd5b50610540610f81565b60405161054d919061282f565b60405180910390f35b34801561056257600080fd5b5061056b610fab565b60405161057891906128b1565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a3919061245d565b61103d565b005b6105c460048036038101906105bf919061245d565b61104f565b005b3480156105d257600080fd5b506105ed60048036038101906105e8919061230d565b61117b565b005b3480156105fb57600080fd5b506106166004803603810190610611919061228a565b6112f3565b005b34801561062457600080fd5b5061062d611366565b60405161063a9190612a13565b60405180910390f35b34801561064f57600080fd5b5061066a6004803603810190610665919061245d565b61136c565b60405161067791906128b1565b60405180910390f35b34801561068c57600080fd5b506106956113e8565b6040516106a291906128b1565b60405180910390f35b3480156106b757600080fd5b506106c0611476565b6040516106cd9190612a13565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f891906121f7565b61147c565b60405161070a9190612896565b60405180910390f35b34801561071f57600080fd5b5061073a6004803603810190610735919061248a565b611510565b005b34801561074857600080fd5b50610763600480360381019061075e91906121ca565b6115c0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080690612ce3565b80601f016020809104026020016040519081016040528092919081815260200182805461083290612ce3565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b600e5481565b600061089a82611644565b6108d0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b600061091f82610e9c565b90508073ffffffffffffffffffffffffffffffffffffffff166109406116a3565b73ffffffffffffffffffffffffffffffffffffffff16146109a35761096c816109676116a3565b61147c565b6109a2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a606116ab565b80600f8190555050565b6000610a74611729565b6001546000540303905090565b610a896116ab565b80600e8190555050565b601060009054906101000a900460ff1681565b6000610ab182611732565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b18576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b2484611800565b91509150610b3a8187610b356116a3565b611827565b610b8657610b4f86610b4a6116a3565b61147c565b610b85576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bed576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bfa868686600161186b565b8015610c0557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cd385610caf888887611871565b7c020000000000000000000000000000000000000000000000000000000017611899565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d5b576000600185019050600060046000838152602001908152602001600020541415610d59576000548114610d58578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dc386868660016118c4565b505050505050565b610dd36116ab565b80601060006101000a81548160ff02191690831515021790555050565b610df86116ab565b60026009541415610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e35906129d3565b60405180910390fd5b6002600981905550610e5033476118ca565b6001600981905550565b610e75838383604051806020016040528060008152506112f3565b505050565b610e826116ab565b80600a9080519060200190610e98929190611fde565b5050565b6000610ea782611732565b9050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f756116ab565b610f7f60006119be565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fba90612ce3565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe690612ce3565b80156110335780601f1061100857610100808354040283529160200191611033565b820191906000526020600020905b81548152906001019060200180831161101657829003601f168201915b5050505050905090565b6110456116ab565b80600c8190555050565b601060009054906101000a900460ff1661109e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611095906129f3565b60405180910390fd5b600b54816110aa610a6a565b6110b49190612b18565b11156110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90612933565b60405180910390fd5b600f5481611101610a6a565b61110b9190612b18565b11806111185750600d5481115b1561116e573481600e5461112c9190612b9f565b111561116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906129b3565b60405180910390fd5b5b6111783382611a84565b50565b6111836116a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111f56116a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112a26116a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112e79190612896565b60405180910390a35050565b6112fe848484610aa6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113605761132984848484611aa2565b61135f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b606061137782611644565b6113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90612973565b60405180910390fd5b600a6113c183611c02565b6040516020016113d29291906127e0565b6040516020818303038152906040529050919050565b600a80546113f590612ce3565b80601f016020809104026020016040519081016040528092919081815260200182805461142190612ce3565b801561146e5780601f106114435761010080835404028352916020019161146e565b820191906000526020600020905b81548152906001019060200180831161145157829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115186116ab565b6000821161155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290612993565b60405180910390fd5b600b5482611567610a6a565b6115719190612b18565b11156115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990612933565b60405180910390fd5b6115bc8183611a84565b5050565b6115c86116ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f906128d3565b60405180910390fd5b611641816119be565b50565b60008161164f611729565b1115801561165e575060005482105b801561169c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6116b3611d63565b73ffffffffffffffffffffffffffffffffffffffff166116d1610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90612953565b60405180910390fd5b565b60006001905090565b60008082905080611741611729565b116117c9576000548110156117c85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117c6575b60008114156117bc576004600083600190039350838152602001908152602001600020549050611791565b80925050506117fb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611888868684611d6b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b8047101561190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490612913565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516119339061281a565b60006040518083038185875af1925050503d8060008114611970576040519150601f19603f3d011682016040523d82523d6000602084013e611975565b606091505b50509050806119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906128f3565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a9e828260405180602001604052806000815250611d74565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ac86116a3565b8786866040518563ffffffff1660e01b8152600401611aea949392919061284a565b602060405180830381600087803b158015611b0457600080fd5b505af1925050508015611b3557506040513d601f19601f82011682018060405250810190611b3291906123e7565b60015b611baf573d8060008114611b65576040519150601f19603f3d011682016040523d82523d6000602084013e611b6a565b606091505b50600081511415611ba7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611c4a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d5e565b600082905060005b60008214611c7c578080611c6590612d46565b915050600a82611c759190612b6e565b9150611c52565b60008167ffffffffffffffff811115611c9857611c97612e7c565b5b6040519080825280601f01601f191660200182016040528015611cca5781602001600182028036833780820191505090505b5090505b60008514611d5757600182611ce39190612bf9565b9150600a85611cf29190612d8f565b6030611cfe9190612b18565b60f81b818381518110611d1457611d13612e4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d509190612b6e565b9450611cce565b8093505050505b919050565b600033905090565b60009392505050565b611d7e8383611e11565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0c57600080549050600083820390505b611dbe6000868380600101945086611aa2565b611df4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dab578160005414611e0957600080fd5b50505b505050565b6000805490506000821415611e52576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e5f600084838561186b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ed683611ec76000866000611871565b611ed085611fce565b17611899565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f7757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f3c565b506000821415611fb3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fc960008483856118c4565b505050565b60006001821460e11b9050919050565b828054611fea90612ce3565b90600052602060002090601f01602090048101928261200c5760008555612053565b82601f1061202557805160ff1916838001178555612053565b82800160010185558215612053579182015b82811115612052578251825591602001919060010190612037565b5b5090506120609190612064565b5090565b5b8082111561207d576000816000905550600101612065565b5090565b600061209461208f84612a53565b612a2e565b9050828152602081018484840111156120b0576120af612eb0565b5b6120bb848285612ca1565b509392505050565b60006120d66120d184612a84565b612a2e565b9050828152602081018484840111156120f2576120f1612eb0565b5b6120fd848285612ca1565b509392505050565b60008135905061211481613131565b92915050565b60008135905061212981613148565b92915050565b60008135905061213e8161315f565b92915050565b6000815190506121538161315f565b92915050565b600082601f83011261216e5761216d612eab565b5b813561217e848260208601612081565b91505092915050565b600082601f83011261219c5761219b612eab565b5b81356121ac8482602086016120c3565b91505092915050565b6000813590506121c481613176565b92915050565b6000602082840312156121e0576121df612eba565b5b60006121ee84828501612105565b91505092915050565b6000806040838503121561220e5761220d612eba565b5b600061221c85828601612105565b925050602061222d85828601612105565b9150509250929050565b6000806000606084860312156122505761224f612eba565b5b600061225e86828701612105565b935050602061226f86828701612105565b9250506040612280868287016121b5565b9150509250925092565b600080600080608085870312156122a4576122a3612eba565b5b60006122b287828801612105565b94505060206122c387828801612105565b93505060406122d4878288016121b5565b925050606085013567ffffffffffffffff8111156122f5576122f4612eb5565b5b61230187828801612159565b91505092959194509250565b6000806040838503121561232457612323612eba565b5b600061233285828601612105565b92505060206123438582860161211a565b9150509250929050565b6000806040838503121561236457612363612eba565b5b600061237285828601612105565b9250506020612383858286016121b5565b9150509250929050565b6000602082840312156123a3576123a2612eba565b5b60006123b18482850161211a565b91505092915050565b6000602082840312156123d0576123cf612eba565b5b60006123de8482850161212f565b91505092915050565b6000602082840312156123fd576123fc612eba565b5b600061240b84828501612144565b91505092915050565b60006020828403121561242a57612429612eba565b5b600082013567ffffffffffffffff81111561244857612447612eb5565b5b61245484828501612187565b91505092915050565b60006020828403121561247357612472612eba565b5b6000612481848285016121b5565b91505092915050565b600080604083850312156124a1576124a0612eba565b5b60006124af858286016121b5565b92505060206124c085828601612105565b9150509250929050565b6124d381612c2d565b82525050565b6124e281612c3f565b82525050565b60006124f382612aca565b6124fd8185612ae0565b935061250d818560208601612cb0565b61251681612ebf565b840191505092915050565b600061252c82612ad5565b6125368185612afc565b9350612546818560208601612cb0565b61254f81612ebf565b840191505092915050565b600061256582612ad5565b61256f8185612b0d565b935061257f818560208601612cb0565b80840191505092915050565b6000815461259881612ce3565b6125a28186612b0d565b945060018216600081146125bd57600181146125ce57612601565b60ff19831686528186019350612601565b6125d785612ab5565b60005b838110156125f9578154818901526001820191506020810190506125da565b838801955050505b50505092915050565b6000612617602683612afc565b915061262282612ed0565b604082019050919050565b600061263a603a83612afc565b915061264582612f1f565b604082019050919050565b600061265d601d83612afc565b915061266882612f6e565b602082019050919050565b6000612680601783612afc565b915061268b82612f97565b602082019050919050565b60006126a3600583612b0d565b91506126ae82612fc0565b600582019050919050565b60006126c6602083612afc565b91506126d182612fe9565b602082019050919050565b60006126e9602f83612afc565b91506126f482613012565b604082019050919050565b600061270c600083612af1565b915061271782613061565b600082019050919050565b600061272f601383612afc565b915061273a82613064565b602082019050919050565b6000612752601883612afc565b915061275d8261308d565b602082019050919050565b6000612775601f83612afc565b9150612780826130b6565b602082019050919050565b6000612798601783612afc565b91506127a3826130df565b602082019050919050565b60006127bb600183612b0d565b91506127c682613108565b600182019050919050565b6127da81612c97565b82525050565b60006127ec828561258b565b91506127f7826127ae565b9150612803828461255a565b915061280e82612696565b91508190509392505050565b6000612825826126ff565b9150819050919050565b600060208201905061284460008301846124ca565b92915050565b600060808201905061285f60008301876124ca565b61286c60208301866124ca565b61287960408301856127d1565b818103606083015261288b81846124e8565b905095945050505050565b60006020820190506128ab60008301846124d9565b92915050565b600060208201905081810360008301526128cb8184612521565b905092915050565b600060208201905081810360008301526128ec8161260a565b9050919050565b6000602082019050818103600083015261290c8161262d565b9050919050565b6000602082019050818103600083015261292c81612650565b9050919050565b6000602082019050818103600083015261294c81612673565b9050919050565b6000602082019050818103600083015261296c816126b9565b9050919050565b6000602082019050818103600083015261298c816126dc565b9050919050565b600060208201905081810360008301526129ac81612722565b9050919050565b600060208201905081810360008301526129cc81612745565b9050919050565b600060208201905081810360008301526129ec81612768565b9050919050565b60006020820190508181036000830152612a0c8161278b565b9050919050565b6000602082019050612a2860008301846127d1565b92915050565b6000612a38612a49565b9050612a448282612d15565b919050565b6000604051905090565b600067ffffffffffffffff821115612a6e57612a6d612e7c565b5b612a7782612ebf565b9050602081019050919050565b600067ffffffffffffffff821115612a9f57612a9e612e7c565b5b612aa882612ebf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b2382612c97565b9150612b2e83612c97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6357612b62612dc0565b5b828201905092915050565b6000612b7982612c97565b9150612b8483612c97565b925082612b9457612b93612def565b5b828204905092915050565b6000612baa82612c97565b9150612bb583612c97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bee57612bed612dc0565b5b828202905092915050565b6000612c0482612c97565b9150612c0f83612c97565b925082821015612c2257612c21612dc0565b5b828203905092915050565b6000612c3882612c77565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612cce578082015181840152602081019050612cb3565b83811115612cdd576000848401525b50505050565b60006002820490506001821680612cfb57607f821691505b60208210811415612d0f57612d0e612e1e565b5b50919050565b612d1e82612ebf565b810181811067ffffffffffffffff82111715612d3d57612d3c612e7c565b5b80604052505050565b6000612d5182612c97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d8457612d83612dc0565b5b600182019050919050565b6000612d9a82612c97565b9150612da583612c97565b925082612db557612db4612def565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61313a81612c2d565b811461314557600080fd5b50565b61315181612c3f565b811461315c57600080fd5b50565b61316881612c4b565b811461317357600080fd5b50565b61317f81612c97565b811461318a57600080fd5b5056fea2646970667358221220deb32827d46e3e6a221f267fdaa8b9eb34f60d69d55f2d792fb492a28675744064736f6c63430008070033

Deployed Bytecode Sourcemap

69807:2789:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36916:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37818:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70156:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44301:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70208:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43742:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72206:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33569:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72343:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70252:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48008:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72052:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71445:142;;;;;;;;;;;;;:::i;:::-;;50921:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70926:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39211:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70114:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34753:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18153:103;;;;;;;;;;;;;:::i;:::-;;17505:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37994:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72464:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70391:529;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44859:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51704:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70073:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71593:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69929:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70036:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45324:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71147:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18411:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36916:639;37001:4;37340:10;37325:25;;:11;:25;;;;:102;;;;37417:10;37402:25;;:11;:25;;;;37325:102;:179;;;;37494:10;37479:25;;:11;:25;;;;37325:179;37305:199;;36916:639;;;:::o;37818:100::-;37872:13;37905:5;37898:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37818:100;:::o;70156:47::-;;;;:::o;44301:218::-;44377:7;44402:16;44410:7;44402;:16::i;:::-;44397:64;;44427:34;;;;;;;;;;;;;;44397:64;44481:15;:24;44497:7;44481:24;;;;;;;;;;;:30;;;;;;;;;;;;44474:37;;44301:218;;;:::o;70208:39::-;;;;:::o;43742:400::-;43823:13;43839:16;43847:7;43839;:16::i;:::-;43823:32;;43895:5;43872:28;;:19;:17;:19::i;:::-;:28;;;43868:175;;43920:44;43937:5;43944:19;:17;:19::i;:::-;43920:16;:44::i;:::-;43915:128;;43992:35;;;;;;;;;;;;;;43915:128;43868:175;44088:2;44055:15;:24;44071:7;44055:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44126:7;44122:2;44106:28;;44115:5;44106:28;;;;;;;;;;;;43812:330;43742:400;;:::o;72206:131::-;17391:13;:11;:13::i;:::-;72318::::1;72299:16;:32;;;;72206:131:::0;:::o;33569:323::-;33630:7;33858:15;:13;:15::i;:::-;33843:12;;33827:13;;:28;:46;33820:53;;33569:323;:::o;72343:115::-;17391:13;:11;:13::i;:::-;72446:6:::1;72426:17;:26;;;;72343:115:::0;:::o;70252:37::-;;;;;;;;;;;;;:::o;48008:2817::-;48142:27;48172;48191:7;48172:18;:27::i;:::-;48142:57;;48257:4;48216:45;;48232:19;48216:45;;;48212:86;;48270:28;;;;;;;;;;;;;;48212:86;48312:27;48341:23;48368:35;48395:7;48368:26;:35::i;:::-;48311:92;;;;48503:68;48528:15;48545:4;48551:19;:17;:19::i;:::-;48503:24;:68::i;:::-;48498:180;;48591:43;48608:4;48614:19;:17;:19::i;:::-;48591:16;:43::i;:::-;48586:92;;48643:35;;;;;;;;;;;;;;48586:92;48498:180;48709:1;48695:16;;:2;:16;;;48691:52;;;48720:23;;;;;;;;;;;;;;48691:52;48756:43;48778:4;48784:2;48788:7;48797:1;48756:21;:43::i;:::-;48892:15;48889:160;;;49032:1;49011:19;49004:30;48889:160;49429:18;:24;49448:4;49429:24;;;;;;;;;;;;;;;;49427:26;;;;;;;;;;;;49498:18;:22;49517:2;49498:22;;;;;;;;;;;;;;;;49496:24;;;;;;;;;;;49820:146;49857:2;49906:45;49921:4;49927:2;49931:19;49906:14;:45::i;:::-;29968:8;49878:73;49820:18;:146::i;:::-;49791:17;:26;49809:7;49791:26;;;;;;;;;;;:175;;;;50137:1;29968:8;50086:19;:47;:52;50082:627;;;50159:19;50191:1;50181:7;:11;50159:33;;50348:1;50314:17;:30;50332:11;50314:30;;;;;;;;;;;;:35;50310:384;;;50452:13;;50437:11;:28;50433:242;;50632:19;50599:17;:30;50617:11;50599:30;;;;;;;;;;;:52;;;;50433:242;50310:384;50140:569;50082:627;50756:7;50752:2;50737:27;;50746:4;50737:27;;;;;;;;;;;;50775:42;50796:4;50802:2;50806:7;50815:1;50775:20;:42::i;:::-;48131:2694;;;48008:2817;;;:::o;72052:148::-;17391:13;:11;:13::i;:::-;72175:19:::1;72154:18;;:40;;;;;;;;;;;;;;;;;;72052:148:::0;:::o;71445:142::-;17391:13;:11;:13::i;:::-;11933:1:::1;12531:7;;:19;;12523:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;11933:1;12664:7;:18;;;;71520:61:::2;71546:10;71559:21;71520:17;:61::i;:::-;11889:1:::1;12843:7;:22;;;;71445:142::o:0;50921:185::-;51059:39;51076:4;51082:2;51086:7;51059:39;;;;;;;;;;;;:16;:39::i;:::-;50921:185;;;:::o;70926:108::-;17391:13;:11;:13::i;:::-;71021:7:::1;71006:12;:22;;;;;;;;;;;;:::i;:::-;;70926:108:::0;:::o;39211:152::-;39283:7;39326:27;39345:7;39326:18;:27::i;:::-;39303:52;;39211:152;;;:::o;70114:37::-;;;;:::o;34753:233::-;34825:7;34866:1;34849:19;;:5;:19;;;34845:60;;;34877:28;;;;;;;;;;;;;;34845:60;28912:13;34923:18;:25;34942:5;34923:25;;;;;;;;;;;;;;;;:55;34916:62;;34753:233;;;:::o;18153:103::-;17391:13;:11;:13::i;:::-;18218:30:::1;18245:1;18218:18;:30::i;:::-;18153:103::o:0;17505:87::-;17551:7;17578:6;;;;;;;;;;;17571:13;;17505:87;:::o;37994:104::-;38050:13;38083:7;38076:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37994:104;:::o;72464:127::-;17391:13;:11;:13::i;:::-;72579:6:::1;72560:16;:25;;;;72464:127:::0;:::o;70391:529::-;70478:18;;;;;;;;;;;70470:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;70581:9;;70563:14;70547:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;70531:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;70674:16;;70657:14;70641:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:49;:87;;;;70711:17;;70694:14;:34;70641:87;70638:233;;;70802:9;70783:14;70763:17;;:34;;;;:::i;:::-;70762:49;;70740:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;70638:233;70877:37;70887:10;70899:14;70877:9;:37::i;:::-;70391:529;:::o;44859:308::-;44970:19;:17;:19::i;:::-;44958:31;;:8;:31;;;44954:61;;;44998:17;;;;;;;;;;;;;;44954:61;45080:8;45028:18;:39;45047:19;:17;:19::i;:::-;45028:39;;;;;;;;;;;;;;;:49;45068:8;45028:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;45140:8;45104:55;;45119:19;:17;:19::i;:::-;45104:55;;;45150:8;45104:55;;;;;;:::i;:::-;;;;;;;;44859:308;;:::o;51704:399::-;51871:31;51884:4;51890:2;51894:7;51871:12;:31::i;:::-;51935:1;51917:2;:14;;;:19;51913:183;;51956:56;51987:4;51993:2;51997:7;52006:5;51956:30;:56::i;:::-;51951:145;;52040:40;;;;;;;;;;;;;;51951:145;51913:183;51704:399;;;;:::o;70073:36::-;;;;:::o;71593:312::-;71689:13;71730:17;71738:8;71730:7;:17::i;:::-;71714:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;71850:12;71869:19;:8;:17;:19::i;:::-;71833:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71819:80;;71593:312;;;:::o;69929:100::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70036:32::-;;;;:::o;45324:164::-;45421:4;45445:18;:25;45464:5;45445:25;;;;;;;;;;;;;;;:35;45471:8;45445:35;;;;;;;;;;;;;;;;;;;;;;;;;45438:42;;45324:164;;;;:::o;71147:292::-;17391:13;:11;:13::i;:::-;71262:1:::1;71251:8;:12;71235:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;71351:9;;71339:8;71323:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;71307:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;71408:25;71418:4;71424:8;71408:9;:25::i;:::-;71147:292:::0;;:::o;18411:201::-;17391:13;:11;:13::i;:::-;18520:1:::1;18500:22;;:8;:22;;;;18492:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18576:28;18595:8;18576:18;:28::i;:::-;18411:201:::0;:::o;45746:282::-;45811:4;45867:7;45848:15;:13;:15::i;:::-;:26;;:66;;;;;45901:13;;45891:7;:23;45848:66;:153;;;;;46000:1;29688:8;45952:17;:26;45970:7;45952:26;;;;;;;;;;;;:44;:49;45848:153;45828:173;;45746:282;;;:::o;67512:105::-;67572:7;67599:10;67592:17;;67512:105;:::o;17670:132::-;17745:12;:10;:12::i;:::-;17734:23;;:7;:5;:7::i;:::-;:23;;;17726:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17670:132::o;71040:101::-;71105:7;71132:1;71125:8;;71040:101;:::o;40366:1275::-;40433:7;40453:12;40468:7;40453:22;;40536:4;40517:15;:13;:15::i;:::-;:23;40513:1061;;40570:13;;40563:4;:20;40559:1015;;;40608:14;40625:17;:23;40643:4;40625:23;;;;;;;;;;;;40608:40;;40742:1;29688:8;40714:6;:24;:29;40710:845;;;41379:113;41396:1;41386:6;:11;41379:113;;;41439:17;:25;41457:6;;;;;;;41439:25;;;;;;;;;;;;41430:34;;41379:113;;;41525:6;41518:13;;;;;;40710:845;40585:989;40559:1015;40513:1061;41602:31;;;;;;;;;;;;;;40366:1275;;;;:::o;46909:479::-;47011:27;47040:23;47081:38;47122:15;:24;47138:7;47122:24;;;;;;;;;;;47081:65;;47293:18;47270:41;;47350:19;47344:26;47325:45;;47255:126;46909:479;;;:::o;46137:659::-;46286:11;46451:16;46444:5;46440:28;46431:37;;46611:16;46600:9;46596:32;46583:45;;46761:15;46750:9;46747:30;46739:5;46728:9;46725:20;46722:56;46712:66;;46137:659;;;;;:::o;52765:159::-;;;;;:::o;66821:311::-;66956:7;66976:16;30092:3;67002:19;:41;;66976:68;;30092:3;67070:31;67081:4;67087:2;67091:9;67070:10;:31::i;:::-;67062:40;;:62;;67055:69;;;66821:311;;;;;:::o;42189:450::-;42269:14;42437:16;42430:5;42426:28;42417:37;;42614:5;42600:11;42575:23;42571:41;42568:52;42561:5;42558:63;42548:73;;42189:450;;;;:::o;53589:158::-;;;;;:::o;21464:317::-;21579:6;21554:21;:31;;21546:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21633:12;21651:9;:14;;21673:6;21651:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21632:52;;;21703:7;21695:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;21535:246;21464:317;;:::o;18772:191::-;18846:16;18865:6;;;;;;;;;;;18846:25;;18891:8;18882:6;;:17;;;;;;;;;;;;;;;;;;18946:8;18915:40;;18936:8;18915:40;;;;;;;;;;;;18835:128;18772:191;:::o;61344:112::-;61421:27;61431:2;61435:8;61421:27;;;;;;;;;;;;:9;:27::i;:::-;61344:112;;:::o;54187:716::-;54350:4;54396:2;54371:45;;;54417:19;:17;:19::i;:::-;54438:4;54444:7;54453:5;54371:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54367:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54671:1;54654:6;:13;:18;54650:235;;;54700:40;;;;;;;;;;;;;;54650:235;54843:6;54837:13;54828:6;54824:2;54820:15;54813:38;54367:529;54540:54;;;54530:64;;;:6;:64;;;;54523:71;;;54187:716;;;;;;:::o;13310:723::-;13366:13;13596:1;13587:5;:10;13583:53;;;13614:10;;;;;;;;;;;;;;;;;;;;;13583:53;13646:12;13661:5;13646:20;;13677:14;13702:78;13717:1;13709:4;:9;13702:78;;13735:8;;;;;:::i;:::-;;;;13766:2;13758:10;;;;;:::i;:::-;;;13702:78;;;13790:19;13822:6;13812:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13790:39;;13840:154;13856:1;13847:5;:10;13840:154;;13884:1;13874:11;;;;;:::i;:::-;;;13951:2;13943:5;:10;;;;:::i;:::-;13930:2;:24;;;;:::i;:::-;13917:39;;13900:6;13907;13900:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13980:2;13971:11;;;;;:::i;:::-;;;13840:154;;;14018:6;14004:21;;;;;13310:723;;;;:::o;16056:98::-;16109:7;16136:10;16129:17;;16056:98;:::o;66522:147::-;66659:6;66522:147;;;;;:::o;60571:689::-;60702:19;60708:2;60712:8;60702:5;:19::i;:::-;60781:1;60763:2;:14;;;:19;60759:483;;60803:11;60817:13;;60803:27;;60849:13;60871:8;60865:3;:14;60849:30;;60898:233;60929:62;60968:1;60972:2;60976:7;;;;;;60985:5;60929:30;:62::i;:::-;60924:167;;61027:40;;;;;;;;;;;;;;60924:167;61126:3;61118:5;:11;60898:233;;61213:3;61196:13;;:20;61192:34;;61218:8;;;61192:34;60784:458;;60759:483;60571:689;;;:::o;55365:2454::-;55438:20;55461:13;;55438:36;;55501:1;55489:8;:13;55485:44;;;55511:18;;;;;;;;;;;;;;55485:44;55542:61;55572:1;55576:2;55580:12;55594:8;55542:21;:61::i;:::-;56086:1;29050:2;56056:1;:26;;56055:32;56043:8;:45;56017:18;:22;56036:2;56017:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;56365:139;56402:2;56456:33;56479:1;56483:2;56487:1;56456:14;:33::i;:::-;56423:30;56444:8;56423:20;:30::i;:::-;:66;56365:18;:139::i;:::-;56331:17;:31;56349:12;56331:31;;;;;;;;;;;:173;;;;56521:16;56552:11;56581:8;56566:12;:23;56552:37;;56836:16;56832:2;56828:25;56816:37;;57208:12;57168:8;57127:1;57065:25;57006:1;56945;56918:335;57333:1;57319:12;57315:20;57273:346;57374:3;57365:7;57362:16;57273:346;;57592:7;57582:8;57579:1;57552:25;57549:1;57546;57541:59;57427:1;57418:7;57414:15;57403:26;;57273:346;;;57277:77;57664:1;57652:8;:13;57648:45;;;57674:19;;;;;;;;;;;;;;57648:45;57726:3;57710:13;:19;;;;55791:1950;;57751:60;57780:1;57784:2;57788:12;57802:8;57751:20;:60::i;:::-;55427:2392;55365:2454;;:::o;42741:324::-;42811:14;43044:1;43034:8;43031:15;43005:24;43001:46;42991:56;;42741: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:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:400::-;11848:3;11869:84;11951:1;11946:3;11869:84;:::i;:::-;11862:91;;11962:93;12051:3;11962:93;:::i;:::-;12080:1;12075:3;12071:11;12064:18;;11688:400;;;:::o;12094:366::-;12236:3;12257:67;12321:2;12316:3;12257:67;:::i;:::-;12250:74;;12333:93;12422:3;12333:93;:::i;:::-;12451:2;12446:3;12442:12;12435:19;;12094:366;;;:::o;12466:::-;12608:3;12629:67;12693:2;12688:3;12629:67;:::i;:::-;12622:74;;12705:93;12794:3;12705:93;:::i;:::-;12823:2;12818:3;12814:12;12807:19;;12466:366;;;:::o;12838:398::-;12997:3;13018:83;13099:1;13094:3;13018:83;:::i;:::-;13011:90;;13110:93;13199:3;13110:93;:::i;:::-;13228:1;13223:3;13219:11;13212:18;;12838:398;;;:::o;13242:366::-;13384:3;13405:67;13469:2;13464:3;13405:67;:::i;:::-;13398:74;;13481:93;13570:3;13481:93;:::i;:::-;13599:2;13594:3;13590:12;13583:19;;13242:366;;;:::o;13614:::-;13756:3;13777:67;13841:2;13836:3;13777:67;:::i;:::-;13770:74;;13853:93;13942:3;13853:93;:::i;:::-;13971:2;13966:3;13962:12;13955:19;;13614:366;;;:::o;13986:::-;14128:3;14149:67;14213:2;14208:3;14149:67;:::i;:::-;14142:74;;14225:93;14314:3;14225:93;:::i;:::-;14343:2;14338:3;14334:12;14327:19;;13986:366;;;:::o;14358:::-;14500:3;14521:67;14585:2;14580:3;14521:67;:::i;:::-;14514:74;;14597:93;14686:3;14597:93;:::i;:::-;14715:2;14710:3;14706:12;14699:19;;14358:366;;;:::o;14730:400::-;14890:3;14911:84;14993:1;14988:3;14911:84;:::i;:::-;14904:91;;15004:93;15093:3;15004:93;:::i;:::-;15122:1;15117:3;15113:11;15106:18;;14730:400;;;:::o;15136:118::-;15223:24;15241:5;15223:24;:::i;:::-;15218:3;15211:37;15136:118;;:::o;15260:961::-;15639:3;15661:92;15749:3;15740:6;15661:92;:::i;:::-;15654:99;;15770:148;15914:3;15770:148;:::i;:::-;15763:155;;15935:95;16026:3;16017:6;15935:95;:::i;:::-;15928:102;;16047:148;16191:3;16047:148;:::i;:::-;16040:155;;16212:3;16205:10;;15260:961;;;;;:::o;16227:379::-;16411:3;16433:147;16576:3;16433:147;:::i;:::-;16426:154;;16597:3;16590:10;;16227:379;;;:::o;16612:222::-;16705:4;16743:2;16732:9;16728:18;16720:26;;16756:71;16824:1;16813:9;16809:17;16800:6;16756:71;:::i;:::-;16612:222;;;;:::o;16840:640::-;17035:4;17073:3;17062:9;17058:19;17050:27;;17087:71;17155:1;17144:9;17140:17;17131:6;17087:71;:::i;:::-;17168:72;17236:2;17225:9;17221:18;17212:6;17168:72;:::i;:::-;17250;17318:2;17307:9;17303:18;17294:6;17250:72;:::i;:::-;17369:9;17363:4;17359:20;17354:2;17343:9;17339:18;17332:48;17397:76;17468:4;17459:6;17397:76;:::i;:::-;17389:84;;16840:640;;;;;;;:::o;17486:210::-;17573:4;17611:2;17600:9;17596:18;17588:26;;17624:65;17686:1;17675:9;17671:17;17662:6;17624:65;:::i;:::-;17486:210;;;;:::o;17702:313::-;17815:4;17853:2;17842:9;17838:18;17830:26;;17902:9;17896:4;17892:20;17888:1;17877:9;17873:17;17866:47;17930:78;18003:4;17994:6;17930:78;:::i;:::-;17922:86;;17702:313;;;;:::o;18021:419::-;18187:4;18225:2;18214:9;18210:18;18202:26;;18274:9;18268:4;18264:20;18260:1;18249:9;18245:17;18238:47;18302:131;18428:4;18302:131;:::i;:::-;18294:139;;18021:419;;;:::o;18446:::-;18612:4;18650:2;18639:9;18635:18;18627:26;;18699:9;18693:4;18689:20;18685:1;18674:9;18670:17;18663:47;18727:131;18853:4;18727:131;:::i;:::-;18719:139;;18446:419;;;:::o;18871:::-;19037:4;19075:2;19064:9;19060:18;19052:26;;19124:9;19118:4;19114:20;19110:1;19099:9;19095:17;19088:47;19152:131;19278:4;19152:131;:::i;:::-;19144:139;;18871:419;;;:::o;19296:::-;19462:4;19500:2;19489:9;19485:18;19477:26;;19549:9;19543:4;19539:20;19535:1;19524:9;19520:17;19513:47;19577:131;19703:4;19577:131;:::i;:::-;19569:139;;19296:419;;;:::o;19721:::-;19887:4;19925:2;19914:9;19910:18;19902:26;;19974:9;19968:4;19964:20;19960:1;19949:9;19945:17;19938:47;20002:131;20128:4;20002:131;:::i;:::-;19994:139;;19721:419;;;:::o;20146:::-;20312:4;20350:2;20339:9;20335:18;20327:26;;20399:9;20393:4;20389:20;20385:1;20374:9;20370:17;20363:47;20427:131;20553:4;20427:131;:::i;:::-;20419:139;;20146:419;;;:::o;20571:::-;20737:4;20775:2;20764:9;20760:18;20752:26;;20824:9;20818:4;20814:20;20810:1;20799:9;20795:17;20788:47;20852:131;20978:4;20852:131;:::i;:::-;20844:139;;20571:419;;;:::o;20996:::-;21162:4;21200:2;21189:9;21185:18;21177:26;;21249:9;21243:4;21239:20;21235:1;21224:9;21220:17;21213:47;21277:131;21403:4;21277:131;:::i;:::-;21269:139;;20996:419;;;:::o;21421:::-;21587:4;21625:2;21614:9;21610:18;21602:26;;21674:9;21668:4;21664:20;21660:1;21649:9;21645:17;21638:47;21702:131;21828:4;21702:131;:::i;:::-;21694:139;;21421:419;;;:::o;21846:::-;22012:4;22050:2;22039:9;22035:18;22027:26;;22099:9;22093:4;22089:20;22085:1;22074:9;22070:17;22063:47;22127:131;22253:4;22127:131;:::i;:::-;22119:139;;21846:419;;;:::o;22271:222::-;22364:4;22402:2;22391:9;22387:18;22379:26;;22415:71;22483:1;22472:9;22468:17;22459:6;22415:71;:::i;:::-;22271:222;;;;:::o;22499:129::-;22533:6;22560:20;;:::i;:::-;22550:30;;22589:33;22617:4;22609:6;22589:33;:::i;:::-;22499:129;;;:::o;22634:75::-;22667:6;22700:2;22694:9;22684:19;;22634:75;:::o;22715:307::-;22776:4;22866:18;22858:6;22855:30;22852:56;;;22888:18;;:::i;:::-;22852:56;22926:29;22948:6;22926:29;:::i;:::-;22918:37;;23010:4;23004;23000:15;22992:23;;22715:307;;;:::o;23028:308::-;23090:4;23180:18;23172:6;23169:30;23166:56;;;23202:18;;:::i;:::-;23166:56;23240:29;23262:6;23240:29;:::i;:::-;23232:37;;23324:4;23318;23314:15;23306:23;;23028:308;;;:::o;23342:141::-;23391:4;23414:3;23406:11;;23437:3;23434:1;23427:14;23471:4;23468:1;23458:18;23450:26;;23342:141;;;:::o;23489:98::-;23540:6;23574:5;23568:12;23558:22;;23489:98;;;:::o;23593:99::-;23645:6;23679:5;23673:12;23663:22;;23593:99;;;:::o;23698:168::-;23781:11;23815:6;23810:3;23803:19;23855:4;23850:3;23846:14;23831:29;;23698:168;;;;:::o;23872:147::-;23973:11;24010:3;23995:18;;23872:147;;;;:::o;24025:169::-;24109:11;24143:6;24138:3;24131:19;24183:4;24178:3;24174:14;24159:29;;24025:169;;;;:::o;24200:148::-;24302:11;24339:3;24324:18;;24200:148;;;;:::o;24354:305::-;24394:3;24413:20;24431:1;24413:20;:::i;:::-;24408:25;;24447:20;24465:1;24447:20;:::i;:::-;24442:25;;24601:1;24533:66;24529:74;24526:1;24523:81;24520:107;;;24607:18;;:::i;:::-;24520:107;24651:1;24648;24644:9;24637:16;;24354:305;;;;:::o;24665:185::-;24705:1;24722:20;24740:1;24722:20;:::i;:::-;24717:25;;24756:20;24774:1;24756:20;:::i;:::-;24751:25;;24795:1;24785:35;;24800:18;;:::i;:::-;24785:35;24842:1;24839;24835:9;24830:14;;24665:185;;;;:::o;24856:348::-;24896:7;24919:20;24937:1;24919:20;:::i;:::-;24914:25;;24953:20;24971:1;24953:20;:::i;:::-;24948:25;;25141:1;25073:66;25069:74;25066:1;25063:81;25058:1;25051:9;25044:17;25040:105;25037:131;;;25148:18;;:::i;:::-;25037:131;25196:1;25193;25189:9;25178:20;;24856:348;;;;:::o;25210:191::-;25250:4;25270:20;25288:1;25270:20;:::i;:::-;25265:25;;25304:20;25322:1;25304:20;:::i;:::-;25299:25;;25343:1;25340;25337:8;25334:34;;;25348:18;;:::i;:::-;25334:34;25393:1;25390;25386:9;25378:17;;25210:191;;;;:::o;25407:96::-;25444:7;25473:24;25491:5;25473:24;:::i;:::-;25462:35;;25407:96;;;:::o;25509:90::-;25543:7;25586:5;25579:13;25572:21;25561:32;;25509:90;;;:::o;25605:149::-;25641:7;25681:66;25674:5;25670:78;25659:89;;25605:149;;;:::o;25760:126::-;25797:7;25837:42;25830:5;25826:54;25815:65;;25760:126;;;:::o;25892:77::-;25929:7;25958:5;25947:16;;25892:77;;;:::o;25975:154::-;26059:6;26054:3;26049;26036:30;26121:1;26112:6;26107:3;26103:16;26096:27;25975:154;;;:::o;26135:307::-;26203:1;26213:113;26227:6;26224:1;26221:13;26213:113;;;26312:1;26307:3;26303:11;26297:18;26293:1;26288:3;26284:11;26277:39;26249:2;26246:1;26242:10;26237:15;;26213:113;;;26344:6;26341:1;26338:13;26335:101;;;26424:1;26415:6;26410:3;26406:16;26399:27;26335:101;26184:258;26135:307;;;:::o;26448:320::-;26492:6;26529:1;26523:4;26519:12;26509:22;;26576:1;26570:4;26566:12;26597:18;26587:81;;26653:4;26645:6;26641:17;26631:27;;26587:81;26715:2;26707:6;26704:14;26684:18;26681:38;26678:84;;;26734:18;;:::i;:::-;26678:84;26499:269;26448:320;;;:::o;26774:281::-;26857:27;26879:4;26857:27;:::i;:::-;26849:6;26845:40;26987:6;26975:10;26972:22;26951:18;26939:10;26936:34;26933:62;26930:88;;;26998:18;;:::i;:::-;26930:88;27038:10;27034:2;27027:22;26817:238;26774:281;;:::o;27061:233::-;27100:3;27123:24;27141:5;27123:24;:::i;:::-;27114:33;;27169:66;27162:5;27159:77;27156:103;;;27239:18;;:::i;:::-;27156:103;27286:1;27279:5;27275:13;27268:20;;27061:233;;;:::o;27300:176::-;27332:1;27349:20;27367:1;27349:20;:::i;:::-;27344:25;;27383:20;27401:1;27383:20;:::i;:::-;27378:25;;27422:1;27412:35;;27427:18;;:::i;:::-;27412:35;27468:1;27465;27461:9;27456:14;;27300:176;;;;:::o;27482:180::-;27530:77;27527:1;27520:88;27627:4;27624:1;27617:15;27651:4;27648:1;27641:15;27668:180;27716:77;27713:1;27706:88;27813:4;27810:1;27803:15;27837:4;27834:1;27827:15;27854:180;27902:77;27899:1;27892:88;27999:4;27996:1;27989:15;28023:4;28020:1;28013:15;28040:180;28088:77;28085:1;28078:88;28185:4;28182:1;28175:15;28209:4;28206:1;28199:15;28226:180;28274:77;28271:1;28264:88;28371:4;28368:1;28361:15;28395:4;28392:1;28385:15;28412:117;28521:1;28518;28511:12;28535:117;28644:1;28641;28634:12;28658:117;28767:1;28764;28757:12;28781:117;28890:1;28887;28880:12;28904:102;28945:6;28996:2;28992:7;28987:2;28980:5;28976:14;28972:28;28962:38;;28904:102;;;:::o;29012:225::-;29152:34;29148:1;29140:6;29136:14;29129:58;29221:8;29216:2;29208:6;29204:15;29197:33;29012:225;:::o;29243:245::-;29383:34;29379:1;29371:6;29367:14;29360:58;29452:28;29447:2;29439:6;29435:15;29428:53;29243:245;:::o;29494:179::-;29634:31;29630:1;29622:6;29618:14;29611:55;29494:179;:::o;29679:173::-;29819:25;29815:1;29807:6;29803:14;29796:49;29679:173;:::o;29858:155::-;29998:7;29994:1;29986:6;29982:14;29975:31;29858:155;:::o;30019:182::-;30159:34;30155:1;30147:6;30143:14;30136:58;30019:182;:::o;30207:234::-;30347:34;30343:1;30335:6;30331:14;30324:58;30416:17;30411:2;30403:6;30399:15;30392:42;30207:234;:::o;30447:114::-;;:::o;30567:169::-;30707:21;30703:1;30695:6;30691:14;30684:45;30567:169;:::o;30742:174::-;30882:26;30878:1;30870:6;30866:14;30859:50;30742:174;:::o;30922:181::-;31062:33;31058:1;31050:6;31046:14;31039:57;30922:181;:::o;31109:173::-;31249:25;31245:1;31237:6;31233:14;31226:49;31109:173;:::o;31288:151::-;31428:3;31424:1;31416:6;31412:14;31405:27;31288:151;:::o;31445:122::-;31518:24;31536:5;31518:24;:::i;:::-;31511:5;31508:35;31498:63;;31557:1;31554;31547:12;31498:63;31445:122;:::o;31573:116::-;31643:21;31658:5;31643:21;:::i;:::-;31636:5;31633:32;31623:60;;31679:1;31676;31669:12;31623:60;31573:116;:::o;31695:120::-;31767:23;31784:5;31767:23;:::i;:::-;31760:5;31757:34;31747:62;;31805:1;31802;31795:12;31747:62;31695:120;:::o;31821:122::-;31894:24;31912:5;31894:24;:::i;:::-;31887:5;31884:35;31874:63;;31933:1;31930;31923:12;31874:63;31821:122;:::o

Swarm Source

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