ETH Price: $2,269.51 (-6.26%)

Token

Doge Cloud Omega (DCO)
 

Overview

Max Total Supply

3 DCO

Holders

2

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 DCO
0x317672bb263f463dc3aed3cdA90113Ecc21e855e
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DogeCloudsB

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-12-16
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// 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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// 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();

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    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 payable 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 {
        _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].value`.
        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 payable 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 payable 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 payable 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.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            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`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

// File: contracts/omega.sol

pragma solidity ^0.8.4;




contract DogeCloudsB is ERC721A, Ownable {
using SafeMath for uint256;

    uint public PRICE = 0.15 ether;
    uint public WLPRICE = 0.1 ether;
    bool public allowedOnly = true;
    bool public paused = true;
    uint public SUPPLY = 4000;
    bool public reveal = false;
    string baseURI = "ipfs://QmNmALj7smC47d78JRQgzwehyR6Xs8uUfrqYv6uUDjNbJv/";
    
    struct TeamVars {
        bool membership;
        uint cut;
        uint taken;
    }

    mapping(address => TeamVars) public teamInfo;
    mapping(address => bool) public isAllowed;

    uint public totalEarned;

    constructor() ERC721A("Doge Cloud Omega", "DCO") {
        teamInfo[msg.sender].membership = true;
        teamInfo[msg.sender].cut = 10;
    }

    // ADMIN //

    function teamUpdate(address _add, bool _mem, uint _cut) public {
        require(teamInfo[msg.sender].membership == true, "You're not allowed to do that...");
        teamInfo[_add].membership = _mem;
        teamInfo[_add].cut = _cut;
    }

    function setReveal(bool ans) public {
        require(teamInfo[msg.sender].membership == true, "You're not allowed to do that...");
        reveal = ans;
    }

    function allowListUpdate(address[] calldata _list, bool _allow) public {
        require(teamInfo[msg.sender].membership == true, "You're not allowed to do that...");

        uint i = 0;
        uint num = _list.length;
        for(i; i < num; i ++) {
            isAllowed[_list[i]] = _allow;
        }
    }

    function changePrice(uint _price, uint _allowPrice) public {
        require(teamInfo[msg.sender].membership == true, "You're not allowed to do that...");
        PRICE = _price;
        WLPRICE = _allowPrice;
    }

    function setAllowedOnly(bool _allow) public {
        require(teamInfo[msg.sender].membership == true, "You're not allowed to do that...");
        allowedOnly = _allow;
    }

    function setPaused(bool _pause) public {
        require(teamInfo[msg.sender].membership == true, "You're not allowed to do that...");
        paused = _pause;
    }

    function setBaseURI(string calldata _new) public {
        require(teamInfo[msg.sender].membership == true, "You're not allowed to do that...");
        baseURI = _new;
    }

    function updateSupply(uint _supply) public {
        require(teamInfo[msg.sender].membership == true, "You're not allowed to do that...");
        SUPPLY = _supply;
    }

    // MAIN //

    function mint(uint256 _count) external payable {
        // `_mint`'s second argument now takes in a `quantity`, not a `tokenId`.
        uint _total = _totalMinted();
        if (teamInfo[msg.sender].membership == false){
            require(!paused, "the contract is paused");
            uint _price = PRICE;
            if (allowedOnly == true){
                _price = WLPRICE;
                require(isAllowed[msg.sender] == true, "You're not on the list, or the contract is paused.");
            }
            
            require(_total.add(_count) <= SUPPLY, "Not enough NFTs left!");
            
            require(msg.value >= _price.mul(_count), "Not enough matic to purchase NFTs.");
            
            totalEarned = totalEarned.add(_price.mul(_count));
            
        }
        
        _mint(msg.sender, _count);
    }

    // OTHER //

    function withdraw() public {
        require(teamInfo[msg.sender].membership == true, "You're not allowed to do that...");
        uint eMax = totalEarned.mul(teamInfo[msg.sender].cut).div(100);
        uint payOut = eMax.sub(teamInfo[msg.sender].taken);
        teamInfo[msg.sender].taken = eMax;
        (bool success, ) = (msg.sender).call{value: payOut}("");
        require(success, "Transfer failed.");
    }

    function _baseURI() internal view virtual override returns (string memory) {
        if (reveal == true){
            return baseURI;
        } else {
            return "";
        }
    }

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

    fallback() external payable {}

    receive() external payable {
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLPRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list","type":"address[]"},{"internalType":"bool","name":"_allow","type":"bool"}],"name":"allowListUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowedOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_allowPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"isAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_allow","type":"bool"}],"name":"setAllowedOnly","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":"_new","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"ans","type":"bool"}],"name":"setReveal","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":"address","name":"","type":"address"}],"name":"teamInfo","outputs":[{"internalType":"bool","name":"membership","type":"bool"},{"internalType":"uint256","name":"cut","type":"uint256"},{"internalType":"uint256","name":"taken","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"bool","name":"_mem","type":"bool"},{"internalType":"uint256","name":"_cut","type":"uint256"}],"name":"teamUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalEarned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"updateSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052670214e8348c4f000060095567016345785d8a0000600a556001600b60006101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff021916908315150217905550610fa0600c556000600d60006101000a81548160ff02191690831515021790555060405180606001604052806036815260200162003c0860369139600e9080519060200190620000a492919062000309565b50348015620000b257600080fd5b506040518060400160405280601081526020017f446f676520436c6f7564204f6d656761000000000000000000000000000000008152506040518060400160405280600381526020017f44434f000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200013792919062000309565b5080600390805190602001906200015092919062000309565b50620001616200023260201b60201c565b6000819055505050620001896200017d6200023b60201b60201c565b6200024360201b60201c565b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908315150217905550600a600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506200041e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200031790620003b9565b90600052602060002090601f0160209004810192826200033b576000855562000387565b82601f106200035657805160ff191683800117855562000387565b8280016001018555821562000387579182015b828111156200038657825182559160200191906001019062000369565b5b5090506200039691906200039a565b5090565b5b80821115620003b55760008160009055506001016200039b565b5090565b60006002820490506001821680620003d257607f821691505b60208210811415620003e957620003e8620003ef565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6137da806200042e6000396000f3fe6080604052600436106102135760003560e01c806374bb21df11610118578063b3de019c116100a0578063c87b56dd1161006f578063c87b56dd14610726578063cafffe8a14610763578063cb3119bd1461078e578063e985e9c5146107cd578063f2fde38b1461080a5761021a565b8063b3de019c14610679578063b88d4fde146106a2578063babcc539146106be578063c50497ae146106fb5761021a565b8063a0712d68116100e7578063a0712d68146105b7578063a22cb465146105d3578063a475b5dd146105fc578063a83ebc7d14610627578063b0b94527146106505761021a565b806374bb21df1461050b5780638d859f3e146105365780638da5cb5b1461056157806395d89b411461058c5761021a565b806342842e0e1161019b5780636352211e1161016a5780636352211e146104265780636bd08049146104635780636dfa8d991461048c57806370a08231146104b7578063715018a6146104f45761021a565b806342842e0e1461038d5780634714eed6146103a957806355f804b3146103d25780635c975abb146103fb5761021a565b806316c38b3c116101e257806316c38b3c146102dd57806318160ddd1461030657806323b872dd146103315780632a3f300c1461034d5780633ccfd60b146103765761021a565b806301ffc9a71461021c57806306fdde0314610259578063081812fc14610284578063095ea7b3146102c15761021a565b3661021a57005b005b34801561022857600080fd5b50610243600480360381019061023e9190612c08565b610833565b6040516102509190612fc7565b60405180910390f35b34801561026557600080fd5b5061026e6108c5565b60405161027b9190613019565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612caf565b610957565b6040516102b89190612f60565b60405180910390f35b6102db60048036038101906102d69190612b3b565b6109d6565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190612bdb565b610b1a565b005b34801561031257600080fd5b5061031b610bcd565b604051610328919061313b565b60405180910390f35b61034b600480360381019061034691906129d2565b610be4565b005b34801561035957600080fd5b50610374600480360381019061036f9190612bdb565b610f09565b005b34801561038257600080fd5b5061038b610fbc565b005b6103a760048036038101906103a291906129d2565b611211565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612ae8565b611231565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612c62565b61136d565b005b34801561040757600080fd5b50610410611419565b60405161041d9190612fc7565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190612caf565b61142c565b60405161045a9190612f60565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190612caf565b61143e565b005b34801561049857600080fd5b506104a16114de565b6040516104ae919061313b565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d99190612965565b6114e4565b6040516104eb919061313b565b60405180910390f35b34801561050057600080fd5b5061050961159d565b005b34801561051757600080fd5b506105206115b1565b60405161052d919061313b565b60405180910390f35b34801561054257600080fd5b5061054b6115b7565b604051610558919061313b565b60405180910390f35b34801561056d57600080fd5b506105766115bd565b6040516105839190612f60565b60405180910390f35b34801561059857600080fd5b506105a16115e7565b6040516105ae9190613019565b60405180910390f35b6105d160048036038101906105cc9190612caf565b611679565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190612aa8565b6118d6565b005b34801561060857600080fd5b506106116119e1565b60405161061e9190612fc7565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190612bdb565b6119f4565b005b34801561065c57600080fd5b5061067760048036038101906106729190612b7b565b611aa7565b005b34801561068557600080fd5b506106a0600480360381019061069b9190612cdc565b611be7565b005b6106bc60048036038101906106b79190612a25565b611c8f565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190612965565b611d02565b6040516106f29190612fc7565b60405180910390f35b34801561070757600080fd5b50610710611d22565b60405161071d919061313b565b60405180910390f35b34801561073257600080fd5b5061074d60048036038101906107489190612caf565b611d28565b60405161075a9190613019565b60405180910390f35b34801561076f57600080fd5b50610778611dc7565b6040516107859190612fc7565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190612965565b611dda565b6040516107c493929190612fe2565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190612992565b611e11565b6040516108019190612fc7565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190612965565b611ea5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108d4906133c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610900906133c5565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b600061096282611f29565b610998576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e18261142c565b90508073ffffffffffffffffffffffffffffffffffffffff16610a02611f88565b73ffffffffffffffffffffffffffffffffffffffff1614610a6557610a2e81610a29611f88565b611e11565b610a64576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba79061305b565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b6000610bd7611f90565b6001546000540303905090565b6000610bef82611f99565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c56576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6284612067565b91509150610c788187610c73611f88565b61208e565b610cc457610c8d86610c88611f88565b611e11565b610cc3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d2b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3886868660016120d2565b8015610d4357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1185610ded8888876120d8565b7c020000000000000000000000000000000000000000000000000000000017612100565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e99576000600185019050600060046000838152602001908152602001600020541415610e97576000548114610e96578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f01868686600161212b565b505050505050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f969061305b565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514611052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110499061305b565b60405180910390fd5b60006110be60646110b0600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015460115461213190919063ffffffff16565b61214790919063ffffffff16565b90506000611117600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201548361215d90919063ffffffff16565b905081600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555060003373ffffffffffffffffffffffffffffffffffffffff168260405161118690612f4b565b60006040518083038185875af1925050503d80600081146111c3576040519150601f19603f3d011682016040523d82523d6000602084013e6111c8565b606091505b505090508061120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061311b565b60405180910390fd5b505050565b61122c83838360405180602001604052806000815250611c8f565b505050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff161515146112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be9061305b565b60405180910390fd5b81600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff02191690831515021790555080600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550505050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa9061305b565b60405180910390fd5b8181600e919061141492919061273d565b505050565b600b60019054906101000a900460ff1681565b600061143782611f99565b9050919050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff161515146114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb9061305b565b60405180910390fd5b80600c8190555050565b60115481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561154c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115a5612173565b6115af60006121f1565b565b600a5481565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115f6906133c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611622906133c5565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b5050505050905090565b60006116836122b7565b905060001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514156118c857600b60019054906101000a900460ff1615611731576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611728906130fb565b60405180910390fd5b6000600954905060011515600b60009054906101000a900460ff16151514156117ed57600a54905060011515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e39061307b565b60405180910390fd5b5b600c5461180384846122ca90919063ffffffff16565b1115611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b906130bb565b60405180910390fd5b611857838261213190919063ffffffff16565b341015611899576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118909061303b565b60405180910390fd5b6118c06118af848361213190919063ffffffff16565b6011546122ca90919063ffffffff16565b601181905550505b6118d233836122e0565b5050565b80600760006118e3611f88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611990611f88565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d59190612fc7565b60405180910390a35050565b600d60009054906101000a900460ff1681565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a819061305b565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514611b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b349061305b565b60405180910390fd5b6000808484905090505b80821015611be0578260106000878786818110611b6757611b666134fe565b5b9050602002016020810190611b7c9190612965565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508180611bd890613428565b925050611b47565b5050505050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c749061305b565b60405180910390fd5b8160098190555080600a819055505050565b611c9a848484610be4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cfc57611cc58484848461249d565b611cfb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60106020528060005260406000206000915054906101000a900460ff1681565b600c5481565b6060611d3382611f29565b611d69576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d736125fd565b9050600081511415611d945760405180602001604052806000815250611dbf565b80611d9e846126c3565b604051602001611daf929190612f27565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900460ff1681565b600f6020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020154905083565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ead612173565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f149061309b565b60405180910390fd5b611f26816121f1565b50565b600081611f34611f90565b11158015611f43575060005482105b8015611f81575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611fa8611f90565b116120305760005481101561202f5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561202d575b6000811415612023576004600083600190039350838152602001908152602001600020549050611ff8565b8092505050612062565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120ef86868461271c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000818361213f9190613281565b905092915050565b600081836121559190613250565b905092915050565b6000818361216b91906132db565b905092915050565b61217b612725565b73ffffffffffffffffffffffffffffffffffffffff166121996115bd565b73ffffffffffffffffffffffffffffffffffffffff16146121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e6906130db565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006122c1611f90565b60005403905090565b600081836122d891906131fa565b905092915050565b6000805490506000821415612321576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61232e60008483856120d2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123a58361239660008660006120d8565b61239f8561272d565b17612100565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461244657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061240b565b506000821415612482576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612498600084838561212b565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124c3611f88565b8786866040518563ffffffff1660e01b81526004016124e59493929190612f7b565b602060405180830381600087803b1580156124ff57600080fd5b505af192505050801561253057506040513d601f19601f8201168201806040525081019061252d9190612c35565b60015b6125aa573d8060008114612560576040519150601f19603f3d011682016040523d82523d6000602084013e612565565b606091505b506000815114156125a2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060011515600d60009054906101000a900460ff16151514156126ad57600e8054612628906133c5565b80601f0160208091040260200160405190810160405280929190818152602001828054612654906133c5565b80156126a15780601f10612676576101008083540402835291602001916126a1565b820191906000526020600020905b81548152906001019060200180831161268457829003601f168201915b505050505090506126c0565b6040518060200160405280600081525090505b90565b606060a060405101806040526020810391506000825281835b60011561270757600184039350600a81066030018453600a810490508061270257612707565b6126dc565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b828054612749906133c5565b90600052602060002090601f01602090048101928261276b57600085556127b2565b82601f1061278457803560ff19168380011785556127b2565b828001600101855582156127b2579182015b828111156127b1578235825591602001919060010190612796565b5b5090506127bf91906127c3565b5090565b5b808211156127dc5760008160009055506001016127c4565b5090565b60006127f36127ee8461317b565b613156565b90508281526020810184848401111561280f5761280e61356b565b5b61281a848285613383565b509392505050565b60008135905061283181613748565b92915050565b60008083601f84011261284d5761284c613561565b5b8235905067ffffffffffffffff81111561286a5761286961355c565b5b60208301915083602082028301111561288657612885613566565b5b9250929050565b60008135905061289c8161375f565b92915050565b6000813590506128b181613776565b92915050565b6000815190506128c681613776565b92915050565b600082601f8301126128e1576128e0613561565b5b81356128f18482602086016127e0565b91505092915050565b60008083601f8401126129105761290f613561565b5b8235905067ffffffffffffffff81111561292d5761292c61355c565b5b60208301915083600182028301111561294957612948613566565b5b9250929050565b60008135905061295f8161378d565b92915050565b60006020828403121561297b5761297a613575565b5b600061298984828501612822565b91505092915050565b600080604083850312156129a9576129a8613575565b5b60006129b785828601612822565b92505060206129c885828601612822565b9150509250929050565b6000806000606084860312156129eb576129ea613575565b5b60006129f986828701612822565b9350506020612a0a86828701612822565b9250506040612a1b86828701612950565b9150509250925092565b60008060008060808587031215612a3f57612a3e613575565b5b6000612a4d87828801612822565b9450506020612a5e87828801612822565b9350506040612a6f87828801612950565b925050606085013567ffffffffffffffff811115612a9057612a8f613570565b5b612a9c878288016128cc565b91505092959194509250565b60008060408385031215612abf57612abe613575565b5b6000612acd85828601612822565b9250506020612ade8582860161288d565b9150509250929050565b600080600060608486031215612b0157612b00613575565b5b6000612b0f86828701612822565b9350506020612b208682870161288d565b9250506040612b3186828701612950565b9150509250925092565b60008060408385031215612b5257612b51613575565b5b6000612b6085828601612822565b9250506020612b7185828601612950565b9150509250929050565b600080600060408486031215612b9457612b93613575565b5b600084013567ffffffffffffffff811115612bb257612bb1613570565b5b612bbe86828701612837565b93509350506020612bd18682870161288d565b9150509250925092565b600060208284031215612bf157612bf0613575565b5b6000612bff8482850161288d565b91505092915050565b600060208284031215612c1e57612c1d613575565b5b6000612c2c848285016128a2565b91505092915050565b600060208284031215612c4b57612c4a613575565b5b6000612c59848285016128b7565b91505092915050565b60008060208385031215612c7957612c78613575565b5b600083013567ffffffffffffffff811115612c9757612c96613570565b5b612ca3858286016128fa565b92509250509250929050565b600060208284031215612cc557612cc4613575565b5b6000612cd384828501612950565b91505092915050565b60008060408385031215612cf357612cf2613575565b5b6000612d0185828601612950565b9250506020612d1285828601612950565b9150509250929050565b612d258161330f565b82525050565b612d3481613321565b82525050565b6000612d45826131ac565b612d4f81856131c2565b9350612d5f818560208601613392565b612d688161357a565b840191505092915050565b6000612d7e826131b7565b612d8881856131de565b9350612d98818560208601613392565b612da18161357a565b840191505092915050565b6000612db7826131b7565b612dc181856131ef565b9350612dd1818560208601613392565b80840191505092915050565b6000612dea6022836131de565b9150612df58261358b565b604082019050919050565b6000612e0d6020836131de565b9150612e18826135da565b602082019050919050565b6000612e306032836131de565b9150612e3b82613603565b604082019050919050565b6000612e536026836131de565b9150612e5e82613652565b604082019050919050565b6000612e766015836131de565b9150612e81826136a1565b602082019050919050565b6000612e996020836131de565b9150612ea4826136ca565b602082019050919050565b6000612ebc6016836131de565b9150612ec7826136f3565b602082019050919050565b6000612edf6000836131d3565b9150612eea8261371c565b600082019050919050565b6000612f026010836131de565b9150612f0d8261371f565b602082019050919050565b612f2181613379565b82525050565b6000612f338285612dac565b9150612f3f8284612dac565b91508190509392505050565b6000612f5682612ed2565b9150819050919050565b6000602082019050612f756000830184612d1c565b92915050565b6000608082019050612f906000830187612d1c565b612f9d6020830186612d1c565b612faa6040830185612f18565b8181036060830152612fbc8184612d3a565b905095945050505050565b6000602082019050612fdc6000830184612d2b565b92915050565b6000606082019050612ff76000830186612d2b565b6130046020830185612f18565b6130116040830184612f18565b949350505050565b600060208201905081810360008301526130338184612d73565b905092915050565b6000602082019050818103600083015261305481612ddd565b9050919050565b6000602082019050818103600083015261307481612e00565b9050919050565b6000602082019050818103600083015261309481612e23565b9050919050565b600060208201905081810360008301526130b481612e46565b9050919050565b600060208201905081810360008301526130d481612e69565b9050919050565b600060208201905081810360008301526130f481612e8c565b9050919050565b6000602082019050818103600083015261311481612eaf565b9050919050565b6000602082019050818103600083015261313481612ef5565b9050919050565b60006020820190506131506000830184612f18565b92915050565b6000613160613171565b905061316c82826133f7565b919050565b6000604051905090565b600067ffffffffffffffff8211156131965761319561352d565b5b61319f8261357a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061320582613379565b915061321083613379565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561324557613244613471565b5b828201905092915050565b600061325b82613379565b915061326683613379565b925082613276576132756134a0565b5b828204905092915050565b600061328c82613379565b915061329783613379565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132d0576132cf613471565b5b828202905092915050565b60006132e682613379565b91506132f183613379565b92508282101561330457613303613471565b5b828203905092915050565b600061331a82613359565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133b0578082015181840152602081019050613395565b838111156133bf576000848401525b50505050565b600060028204905060018216806133dd57607f821691505b602082108114156133f1576133f06134cf565b5b50919050565b6134008261357a565b810181811067ffffffffffffffff8211171561341f5761341e61352d565b5b80604052505050565b600061343382613379565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561346657613465613471565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f756768206d6174696320746f207075726368617365204e465460008201527f732e000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f7420616c6c6f77656420746f20646f20746861742e2e2e600082015250565b7f596f75277265206e6f74206f6e20746865206c6973742c206f7220746865206360008201527f6f6e7472616374206973207061757365642e0000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204e465473206c656674210000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6137518161330f565b811461375c57600080fd5b50565b61376881613321565b811461377357600080fd5b50565b61377f8161332d565b811461378a57600080fd5b50565b61379681613379565b81146137a157600080fd5b5056fea2646970667358221220a841aa73efac1f4cb1bd9448e68c057b598bcd3ebcdb4db6b5a8b8f86e3ec42564736f6c63430008070033697066733a2f2f516d4e6d414c6a37736d4334376437384a5251677a77656879523658733875556672715976367555446a4e624a762f

Deployed Bytecode

0x6080604052600436106102135760003560e01c806374bb21df11610118578063b3de019c116100a0578063c87b56dd1161006f578063c87b56dd14610726578063cafffe8a14610763578063cb3119bd1461078e578063e985e9c5146107cd578063f2fde38b1461080a5761021a565b8063b3de019c14610679578063b88d4fde146106a2578063babcc539146106be578063c50497ae146106fb5761021a565b8063a0712d68116100e7578063a0712d68146105b7578063a22cb465146105d3578063a475b5dd146105fc578063a83ebc7d14610627578063b0b94527146106505761021a565b806374bb21df1461050b5780638d859f3e146105365780638da5cb5b1461056157806395d89b411461058c5761021a565b806342842e0e1161019b5780636352211e1161016a5780636352211e146104265780636bd08049146104635780636dfa8d991461048c57806370a08231146104b7578063715018a6146104f45761021a565b806342842e0e1461038d5780634714eed6146103a957806355f804b3146103d25780635c975abb146103fb5761021a565b806316c38b3c116101e257806316c38b3c146102dd57806318160ddd1461030657806323b872dd146103315780632a3f300c1461034d5780633ccfd60b146103765761021a565b806301ffc9a71461021c57806306fdde0314610259578063081812fc14610284578063095ea7b3146102c15761021a565b3661021a57005b005b34801561022857600080fd5b50610243600480360381019061023e9190612c08565b610833565b6040516102509190612fc7565b60405180910390f35b34801561026557600080fd5b5061026e6108c5565b60405161027b9190613019565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612caf565b610957565b6040516102b89190612f60565b60405180910390f35b6102db60048036038101906102d69190612b3b565b6109d6565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190612bdb565b610b1a565b005b34801561031257600080fd5b5061031b610bcd565b604051610328919061313b565b60405180910390f35b61034b600480360381019061034691906129d2565b610be4565b005b34801561035957600080fd5b50610374600480360381019061036f9190612bdb565b610f09565b005b34801561038257600080fd5b5061038b610fbc565b005b6103a760048036038101906103a291906129d2565b611211565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612ae8565b611231565b005b3480156103de57600080fd5b506103f960048036038101906103f49190612c62565b61136d565b005b34801561040757600080fd5b50610410611419565b60405161041d9190612fc7565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190612caf565b61142c565b60405161045a9190612f60565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190612caf565b61143e565b005b34801561049857600080fd5b506104a16114de565b6040516104ae919061313b565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d99190612965565b6114e4565b6040516104eb919061313b565b60405180910390f35b34801561050057600080fd5b5061050961159d565b005b34801561051757600080fd5b506105206115b1565b60405161052d919061313b565b60405180910390f35b34801561054257600080fd5b5061054b6115b7565b604051610558919061313b565b60405180910390f35b34801561056d57600080fd5b506105766115bd565b6040516105839190612f60565b60405180910390f35b34801561059857600080fd5b506105a16115e7565b6040516105ae9190613019565b60405180910390f35b6105d160048036038101906105cc9190612caf565b611679565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190612aa8565b6118d6565b005b34801561060857600080fd5b506106116119e1565b60405161061e9190612fc7565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190612bdb565b6119f4565b005b34801561065c57600080fd5b5061067760048036038101906106729190612b7b565b611aa7565b005b34801561068557600080fd5b506106a0600480360381019061069b9190612cdc565b611be7565b005b6106bc60048036038101906106b79190612a25565b611c8f565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190612965565b611d02565b6040516106f29190612fc7565b60405180910390f35b34801561070757600080fd5b50610710611d22565b60405161071d919061313b565b60405180910390f35b34801561073257600080fd5b5061074d60048036038101906107489190612caf565b611d28565b60405161075a9190613019565b60405180910390f35b34801561076f57600080fd5b50610778611dc7565b6040516107859190612fc7565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190612965565b611dda565b6040516107c493929190612fe2565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190612992565b611e11565b6040516108019190612fc7565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190612965565b611ea5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108d4906133c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610900906133c5565b801561094d5780601f106109225761010080835404028352916020019161094d565b820191906000526020600020905b81548152906001019060200180831161093057829003601f168201915b5050505050905090565b600061096282611f29565b610998576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e18261142c565b90508073ffffffffffffffffffffffffffffffffffffffff16610a02611f88565b73ffffffffffffffffffffffffffffffffffffffff1614610a6557610a2e81610a29611f88565b611e11565b610a64576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba79061305b565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b6000610bd7611f90565b6001546000540303905090565b6000610bef82611f99565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c56576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6284612067565b91509150610c788187610c73611f88565b61208e565b610cc457610c8d86610c88611f88565b611e11565b610cc3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d2b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3886868660016120d2565b8015610d4357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1185610ded8888876120d8565b7c020000000000000000000000000000000000000000000000000000000017612100565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e99576000600185019050600060046000838152602001908152602001600020541415610e97576000548114610e96578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f01868686600161212b565b505050505050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f969061305b565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514611052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110499061305b565b60405180910390fd5b60006110be60646110b0600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015460115461213190919063ffffffff16565b61214790919063ffffffff16565b90506000611117600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201548361215d90919063ffffffff16565b905081600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002018190555060003373ffffffffffffffffffffffffffffffffffffffff168260405161118690612f4b565b60006040518083038185875af1925050503d80600081146111c3576040519150601f19603f3d011682016040523d82523d6000602084013e6111c8565b606091505b505090508061120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061311b565b60405180910390fd5b505050565b61122c83838360405180602001604052806000815250611c8f565b505050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff161515146112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be9061305b565b60405180910390fd5b81600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff02191690831515021790555080600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550505050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa9061305b565b60405180910390fd5b8181600e919061141492919061273d565b505050565b600b60019054906101000a900460ff1681565b600061143782611f99565b9050919050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff161515146114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb9061305b565b60405180910390fd5b80600c8190555050565b60115481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561154c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115a5612173565b6115af60006121f1565b565b600a5481565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115f6906133c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611622906133c5565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b5050505050905090565b60006116836122b7565b905060001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514156118c857600b60019054906101000a900460ff1615611731576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611728906130fb565b60405180910390fd5b6000600954905060011515600b60009054906101000a900460ff16151514156117ed57600a54905060011515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e39061307b565b60405180910390fd5b5b600c5461180384846122ca90919063ffffffff16565b1115611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b906130bb565b60405180910390fd5b611857838261213190919063ffffffff16565b341015611899576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118909061303b565b60405180910390fd5b6118c06118af848361213190919063ffffffff16565b6011546122ca90919063ffffffff16565b601181905550505b6118d233836122e0565b5050565b80600760006118e3611f88565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611990611f88565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d59190612fc7565b60405180910390a35050565b600d60009054906101000a900460ff1681565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a819061305b565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514611b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b349061305b565b60405180910390fd5b6000808484905090505b80821015611be0578260106000878786818110611b6757611b666134fe565b5b9050602002016020810190611b7c9190612965565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508180611bd890613428565b925050611b47565b5050505050565b60011515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff16151514611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c749061305b565b60405180910390fd5b8160098190555080600a819055505050565b611c9a848484610be4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cfc57611cc58484848461249d565b611cfb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60106020528060005260406000206000915054906101000a900460ff1681565b600c5481565b6060611d3382611f29565b611d69576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d736125fd565b9050600081511415611d945760405180602001604052806000815250611dbf565b80611d9e846126c3565b604051602001611daf929190612f27565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900460ff1681565b600f6020528060005260406000206000915090508060000160009054906101000a900460ff16908060010154908060020154905083565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ead612173565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f149061309b565b60405180910390fd5b611f26816121f1565b50565b600081611f34611f90565b11158015611f43575060005482105b8015611f81575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611fa8611f90565b116120305760005481101561202f5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561202d575b6000811415612023576004600083600190039350838152602001908152602001600020549050611ff8565b8092505050612062565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120ef86868461271c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000818361213f9190613281565b905092915050565b600081836121559190613250565b905092915050565b6000818361216b91906132db565b905092915050565b61217b612725565b73ffffffffffffffffffffffffffffffffffffffff166121996115bd565b73ffffffffffffffffffffffffffffffffffffffff16146121ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e6906130db565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006122c1611f90565b60005403905090565b600081836122d891906131fa565b905092915050565b6000805490506000821415612321576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61232e60008483856120d2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123a58361239660008660006120d8565b61239f8561272d565b17612100565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461244657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061240b565b506000821415612482576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612498600084838561212b565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124c3611f88565b8786866040518563ffffffff1660e01b81526004016124e59493929190612f7b565b602060405180830381600087803b1580156124ff57600080fd5b505af192505050801561253057506040513d601f19601f8201168201806040525081019061252d9190612c35565b60015b6125aa573d8060008114612560576040519150601f19603f3d011682016040523d82523d6000602084013e612565565b606091505b506000815114156125a2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060011515600d60009054906101000a900460ff16151514156126ad57600e8054612628906133c5565b80601f0160208091040260200160405190810160405280929190818152602001828054612654906133c5565b80156126a15780601f10612676576101008083540402835291602001916126a1565b820191906000526020600020905b81548152906001019060200180831161268457829003601f168201915b505050505090506126c0565b6040518060200160405280600081525090505b90565b606060a060405101806040526020810391506000825281835b60011561270757600184039350600a81066030018453600a810490508061270257612707565b6126dc565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b828054612749906133c5565b90600052602060002090601f01602090048101928261276b57600085556127b2565b82601f1061278457803560ff19168380011785556127b2565b828001600101855582156127b2579182015b828111156127b1578235825591602001919060010190612796565b5b5090506127bf91906127c3565b5090565b5b808211156127dc5760008160009055506001016127c4565b5090565b60006127f36127ee8461317b565b613156565b90508281526020810184848401111561280f5761280e61356b565b5b61281a848285613383565b509392505050565b60008135905061283181613748565b92915050565b60008083601f84011261284d5761284c613561565b5b8235905067ffffffffffffffff81111561286a5761286961355c565b5b60208301915083602082028301111561288657612885613566565b5b9250929050565b60008135905061289c8161375f565b92915050565b6000813590506128b181613776565b92915050565b6000815190506128c681613776565b92915050565b600082601f8301126128e1576128e0613561565b5b81356128f18482602086016127e0565b91505092915050565b60008083601f8401126129105761290f613561565b5b8235905067ffffffffffffffff81111561292d5761292c61355c565b5b60208301915083600182028301111561294957612948613566565b5b9250929050565b60008135905061295f8161378d565b92915050565b60006020828403121561297b5761297a613575565b5b600061298984828501612822565b91505092915050565b600080604083850312156129a9576129a8613575565b5b60006129b785828601612822565b92505060206129c885828601612822565b9150509250929050565b6000806000606084860312156129eb576129ea613575565b5b60006129f986828701612822565b9350506020612a0a86828701612822565b9250506040612a1b86828701612950565b9150509250925092565b60008060008060808587031215612a3f57612a3e613575565b5b6000612a4d87828801612822565b9450506020612a5e87828801612822565b9350506040612a6f87828801612950565b925050606085013567ffffffffffffffff811115612a9057612a8f613570565b5b612a9c878288016128cc565b91505092959194509250565b60008060408385031215612abf57612abe613575565b5b6000612acd85828601612822565b9250506020612ade8582860161288d565b9150509250929050565b600080600060608486031215612b0157612b00613575565b5b6000612b0f86828701612822565b9350506020612b208682870161288d565b9250506040612b3186828701612950565b9150509250925092565b60008060408385031215612b5257612b51613575565b5b6000612b6085828601612822565b9250506020612b7185828601612950565b9150509250929050565b600080600060408486031215612b9457612b93613575565b5b600084013567ffffffffffffffff811115612bb257612bb1613570565b5b612bbe86828701612837565b93509350506020612bd18682870161288d565b9150509250925092565b600060208284031215612bf157612bf0613575565b5b6000612bff8482850161288d565b91505092915050565b600060208284031215612c1e57612c1d613575565b5b6000612c2c848285016128a2565b91505092915050565b600060208284031215612c4b57612c4a613575565b5b6000612c59848285016128b7565b91505092915050565b60008060208385031215612c7957612c78613575565b5b600083013567ffffffffffffffff811115612c9757612c96613570565b5b612ca3858286016128fa565b92509250509250929050565b600060208284031215612cc557612cc4613575565b5b6000612cd384828501612950565b91505092915050565b60008060408385031215612cf357612cf2613575565b5b6000612d0185828601612950565b9250506020612d1285828601612950565b9150509250929050565b612d258161330f565b82525050565b612d3481613321565b82525050565b6000612d45826131ac565b612d4f81856131c2565b9350612d5f818560208601613392565b612d688161357a565b840191505092915050565b6000612d7e826131b7565b612d8881856131de565b9350612d98818560208601613392565b612da18161357a565b840191505092915050565b6000612db7826131b7565b612dc181856131ef565b9350612dd1818560208601613392565b80840191505092915050565b6000612dea6022836131de565b9150612df58261358b565b604082019050919050565b6000612e0d6020836131de565b9150612e18826135da565b602082019050919050565b6000612e306032836131de565b9150612e3b82613603565b604082019050919050565b6000612e536026836131de565b9150612e5e82613652565b604082019050919050565b6000612e766015836131de565b9150612e81826136a1565b602082019050919050565b6000612e996020836131de565b9150612ea4826136ca565b602082019050919050565b6000612ebc6016836131de565b9150612ec7826136f3565b602082019050919050565b6000612edf6000836131d3565b9150612eea8261371c565b600082019050919050565b6000612f026010836131de565b9150612f0d8261371f565b602082019050919050565b612f2181613379565b82525050565b6000612f338285612dac565b9150612f3f8284612dac565b91508190509392505050565b6000612f5682612ed2565b9150819050919050565b6000602082019050612f756000830184612d1c565b92915050565b6000608082019050612f906000830187612d1c565b612f9d6020830186612d1c565b612faa6040830185612f18565b8181036060830152612fbc8184612d3a565b905095945050505050565b6000602082019050612fdc6000830184612d2b565b92915050565b6000606082019050612ff76000830186612d2b565b6130046020830185612f18565b6130116040830184612f18565b949350505050565b600060208201905081810360008301526130338184612d73565b905092915050565b6000602082019050818103600083015261305481612ddd565b9050919050565b6000602082019050818103600083015261307481612e00565b9050919050565b6000602082019050818103600083015261309481612e23565b9050919050565b600060208201905081810360008301526130b481612e46565b9050919050565b600060208201905081810360008301526130d481612e69565b9050919050565b600060208201905081810360008301526130f481612e8c565b9050919050565b6000602082019050818103600083015261311481612eaf565b9050919050565b6000602082019050818103600083015261313481612ef5565b9050919050565b60006020820190506131506000830184612f18565b92915050565b6000613160613171565b905061316c82826133f7565b919050565b6000604051905090565b600067ffffffffffffffff8211156131965761319561352d565b5b61319f8261357a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061320582613379565b915061321083613379565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561324557613244613471565b5b828201905092915050565b600061325b82613379565b915061326683613379565b925082613276576132756134a0565b5b828204905092915050565b600061328c82613379565b915061329783613379565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132d0576132cf613471565b5b828202905092915050565b60006132e682613379565b91506132f183613379565b92508282101561330457613303613471565b5b828203905092915050565b600061331a82613359565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133b0578082015181840152602081019050613395565b838111156133bf576000848401525b50505050565b600060028204905060018216806133dd57607f821691505b602082108114156133f1576133f06134cf565b5b50919050565b6134008261357a565b810181811067ffffffffffffffff8211171561341f5761341e61352d565b5b80604052505050565b600061343382613379565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561346657613465613471565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f756768206d6174696320746f207075726368617365204e465460008201527f732e000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f7420616c6c6f77656420746f20646f20746861742e2e2e600082015250565b7f596f75277265206e6f74206f6e20746865206c6973742c206f7220746865206360008201527f6f6e7472616374206973207061757365642e0000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204e465473206c656674210000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6137518161330f565b811461375c57600080fd5b50565b61376881613321565b811461377357600080fd5b50565b61377f8161332d565b811461378a57600080fd5b50565b61379681613379565b81146137a157600080fd5b5056fea2646970667358221220a841aa73efac1f4cb1bd9448e68c057b598bcd3ebcdb4db6b5a8b8f86e3ec42564736f6c63430008070033

Deployed Bytecode Sourcemap

62134:4215:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29038:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29940:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36431:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35864:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64074:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25691:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40070:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63165:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65531:421;;;;;;;;;;;;;:::i;:::-;;42991:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62912:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64250:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62325:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31333:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64435:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62707:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26875:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9817:103;;;;;;;;;;;;;:::i;:::-;;62250:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62213:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9169:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30116:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64634:870;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36989:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62389:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63888:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63335:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63661:219;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43782:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62657:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62357:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30326:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62288:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62606:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;37380:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10075:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29038:639;29123:4;29462:10;29447:25;;:11;:25;;;;:102;;;;29539:10;29524:25;;:11;:25;;;;29447:102;:179;;;;29616:10;29601:25;;:11;:25;;;;29447:179;29427:199;;29038:639;;;:::o;29940:100::-;29994:13;30027:5;30020:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29940:100;:::o;36431:218::-;36507:7;36532:16;36540:7;36532;:16::i;:::-;36527:64;;36557:34;;;;;;;;;;;;;;36527:64;36611:15;:24;36627:7;36611:24;;;;;;;;;;;:30;;;;;;;;;;;;36604:37;;36431:218;;;:::o;35864:408::-;35953:13;35969:16;35977:7;35969;:16::i;:::-;35953:32;;36025:5;36002:28;;:19;:17;:19::i;:::-;:28;;;35998:175;;36050:44;36067:5;36074:19;:17;:19::i;:::-;36050:16;:44::i;:::-;36045:128;;36122:35;;;;;;;;;;;;;;36045:128;35998:175;36218:2;36185:15;:24;36201:7;36185:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36256:7;36252:2;36236:28;;36245:5;36236:28;;;;;;;;;;;;35942:330;35864:408;;:::o;64074:168::-;64167:4;64132:39;;:8;:20;64141:10;64132:20;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:39;;;64124:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;64228:6;64219;;:15;;;;;;;;;;;;;;;;;;64074:168;:::o;25691:323::-;25752:7;25980:15;:13;:15::i;:::-;25965:12;;25949:13;;:28;:46;25942:53;;25691:323;:::o;40070:2825::-;40212:27;40242;40261:7;40242:18;:27::i;:::-;40212:57;;40327:4;40286:45;;40302:19;40286:45;;;40282:86;;40340:28;;;;;;;;;;;;;;40282:86;40382:27;40411:23;40438:35;40465:7;40438:26;:35::i;:::-;40381:92;;;;40573:68;40598:15;40615:4;40621:19;:17;:19::i;:::-;40573:24;:68::i;:::-;40568:180;;40661:43;40678:4;40684:19;:17;:19::i;:::-;40661:16;:43::i;:::-;40656:92;;40713:35;;;;;;;;;;;;;;40656:92;40568:180;40779:1;40765:16;;:2;:16;;;40761:52;;;40790:23;;;;;;;;;;;;;;40761:52;40826:43;40848:4;40854:2;40858:7;40867:1;40826:21;:43::i;:::-;40962:15;40959:160;;;41102:1;41081:19;41074:30;40959:160;41499:18;:24;41518:4;41499:24;;;;;;;;;;;;;;;;41497:26;;;;;;;;;;;;41568:18;:22;41587:2;41568:22;;;;;;;;;;;;;;;;41566:24;;;;;;;;;;;41890:146;41927:2;41976:45;41991:4;41997:2;42001:19;41976:14;:45::i;:::-;22090:8;41948:73;41890:18;:146::i;:::-;41861:17;:26;41879:7;41861:26;;;;;;;;;;;:175;;;;42207:1;22090:8;42156:19;:47;:52;42152:627;;;42229:19;42261:1;42251:7;:11;42229:33;;42418:1;42384:17;:30;42402:11;42384:30;;;;;;;;;;;;:35;42380:384;;;42522:13;;42507:11;:28;42503:242;;42702:19;42669:17;:30;42687:11;42669:30;;;;;;;;;;;:52;;;;42503:242;42380:384;42210:569;42152:627;42826:7;42822:2;42807:27;;42816:4;42807:27;;;;;;;;;;;;42845:42;42866:4;42872:2;42876:7;42885:1;42845:20;:42::i;:::-;40201:2694;;;40070:2825;;;:::o;63165:162::-;63255:4;63220:39;;:8;:20;63229:10;63220:20;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:39;;;63212:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;63316:3;63307:6;;:12;;;;;;;;;;;;;;;;;;63165:162;:::o;65531:421::-;65612:4;65577:39;;:8;:20;65586:10;65577:20;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:39;;;65569:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;65664:9;65676:50;65722:3;65676:41;65692:8;:20;65701:10;65692:20;;;;;;;;;;;;;;;:24;;;65676:11;;:15;;:41;;;;:::i;:::-;:45;;:50;;;;:::i;:::-;65664:62;;65737:11;65751:36;65760:8;:20;65769:10;65760:20;;;;;;;;;;;;;;;:26;;;65751:4;:8;;:36;;;;:::i;:::-;65737:50;;65827:4;65798:8;:20;65807:10;65798:20;;;;;;;;;;;;;;;:26;;:33;;;;65843:12;65862:10;65861:17;;65886:6;65861:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65842:55;;;65916:7;65908:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;65558:394;;;65531:421::o;42991:193::-;43137:39;43154:4;43160:2;43164:7;43137:39;;;;;;;;;;;;:16;:39::i;:::-;42991:193;;;:::o;62912:245::-;63029:4;62994:39;;:8;:20;63003:10;62994:20;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:39;;;62986:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;63109:4;63081:8;:14;63090:4;63081:14;;;;;;;;;;;;;;;:25;;;:32;;;;;;;;;;;;;;;;;;63145:4;63124:8;:14;63133:4;63124:14;;;;;;;;;;;;;;;:18;;:25;;;;62912:245;;;:::o;64250:177::-;64353:4;64318:39;;:8;:20;64327:10;64318:20;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:39;;;64310:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;64415:4;;64405:7;:14;;;;;;;:::i;:::-;;64250:177;;:::o;62325:25::-;;;;;;;;;;;;;:::o;31333:152::-;31405:7;31448:27;31467:7;31448:18;:27::i;:::-;31425:52;;31333:152;;;:::o;64435:173::-;64532:4;64497:39;;:8;:20;64506:10;64497:20;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:39;;;64489:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;64593:7;64584:6;:16;;;;64435:173;:::o;62707:23::-;;;;:::o;26875:233::-;26947:7;26988:1;26971:19;;:5;:19;;;26967:60;;;26999:28;;;;;;;;;;;;;;26967:60;21034:13;27045:18;:25;27064:5;27045:25;;;;;;;;;;;;;;;;:55;27038:62;;26875:233;;;:::o;9817:103::-;9055:13;:11;:13::i;:::-;9882:30:::1;9909:1;9882:18;:30::i;:::-;9817:103::o:0;62250:31::-;;;;:::o;62213:30::-;;;;:::o;9169:87::-;9215:7;9242:6;;;;;;;;;;;9235:13;;9169:87;:::o;30116:104::-;30172:13;30205:7;30198:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30116:104;:::o;64634:870::-;64774:11;64788:14;:12;:14::i;:::-;64774:28;;64852:5;64817:40;;:8;:20;64826:10;64817:20;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:40;;;64813:638;;;64882:6;;;;;;;;;;;64881:7;64873:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;64930:11;64944:5;;64930:19;;64983:4;64968:19;;:11;;;;;;;;;;;:19;;;64964:186;;;65016:7;;65007:16;;65075:4;65050:29;;:9;:21;65060:10;65050:21;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;65042:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;64964:186;65208:6;;65186:18;65197:6;65186;:10;;:18;;;;:::i;:::-;:28;;65178:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;65290:18;65301:6;65290;:10;;:18;;;;:::i;:::-;65277:9;:31;;65269:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;65390:35;65406:18;65417:6;65406;:10;;:18;;;;:::i;:::-;65390:11;;:15;;:35;;;;:::i;:::-;65376:11;:49;;;;64858:593;64813:638;65471:25;65477:10;65489:6;65471:5;:25::i;:::-;64681:823;64634:870;:::o;36989:234::-;37136:8;37084:18;:39;37103:19;:17;:19::i;:::-;37084:39;;;;;;;;;;;;;;;:49;37124:8;37084:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37196:8;37160:55;;37175:19;:17;:19::i;:::-;37160:55;;;37206:8;37160:55;;;;;;:::i;:::-;;;;;;;;36989:234;;:::o;62389:26::-;;;;;;;;;;;;;:::o;63888:178::-;63986:4;63951:39;;:8;:20;63960:10;63951:20;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:39;;;63943:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;64052:6;64038:11;;:20;;;;;;;;;;;;;;;;;;63888:178;:::o;63335:318::-;63460:4;63425:39;;:8;:20;63434:10;63425:20;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:39;;;63417:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;63514:6;63535:8;63546:5;;:12;;63535:23;;63569:77;63580:3;63576:1;:7;63569:77;;;63628:6;63606:9;:19;63616:5;;63622:1;63616:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;63606:19;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;63585:4;;;;;:::i;:::-;;;;63569:77;;;63406:247;;63335:318;;;:::o;63661:219::-;63774:4;63739:39;;:8;:20;63748:10;63739:20;;;;;;;;;;;;;;;:31;;;;;;;;;;;;:39;;;63731:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;63834:6;63826:5;:14;;;;63861:11;63851:7;:21;;;;63661:219;;:::o;43782:407::-;43957:31;43970:4;43976:2;43980:7;43957:12;:31::i;:::-;44021:1;44003:2;:14;;;:19;43999:183;;44042:56;44073:4;44079:2;44083:7;44092:5;44042:30;:56::i;:::-;44037:145;;44126:40;;;;;;;;;;;;;;44037:145;43999:183;43782:407;;;;:::o;62657:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;62357:25::-;;;;:::o;30326:318::-;30399:13;30430:16;30438:7;30430;:16::i;:::-;30425:59;;30455:29;;;;;;;;;;;;;;30425:59;30497:21;30521:10;:8;:10::i;:::-;30497:34;;30574:1;30555:7;30549:21;:26;;:87;;;;;;;;;;;;;;;;;30602:7;30611:18;30621:7;30611:9;:18::i;:::-;30585:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30549:87;30542:94;;;30326:318;;;:::o;62288:30::-;;;;;;;;;;;;;:::o;62606:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37380:164::-;37477:4;37501:18;:25;37520:5;37501:25;;;;;;;;;;;;;;;:35;37527:8;37501:35;;;;;;;;;;;;;;;;;;;;;;;;;37494:42;;37380:164;;;;:::o;10075:201::-;9055:13;:11;:13::i;:::-;10184:1:::1;10164:22;;:8;:22;;;;10156:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10240:28;10259:8;10240:18;:28::i;:::-;10075:201:::0;:::o;37802:282::-;37867:4;37923:7;37904:15;:13;:15::i;:::-;:26;;:66;;;;;37957:13;;37947:7;:23;37904:66;:153;;;;;38056:1;21810:8;38008:17;:26;38026:7;38008:26;;;;;;;;;;;;:44;:49;37904:153;37884:173;;37802:282;;;:::o;60110:105::-;60170:7;60197:10;60190:17;;60110:105;:::o;66163:100::-;66228:7;66254:1;66247:8;;66163:100;:::o;32488:1275::-;32555:7;32575:12;32590:7;32575:22;;32658:4;32639:15;:13;:15::i;:::-;:23;32635:1061;;32692:13;;32685:4;:20;32681:1015;;;32730:14;32747:17;:23;32765:4;32747:23;;;;;;;;;;;;32730:40;;32864:1;21810:8;32836:6;:24;:29;32832:845;;;33501:113;33518:1;33508:6;:11;33501:113;;;33561:17;:25;33579:6;;;;;;;33561:25;;;;;;;;;;;;33552:34;;33501:113;;;33647:6;33640:13;;;;;;32832:845;32707:989;32681:1015;32635:1061;33724:31;;;;;;;;;;;;;;32488:1275;;;;:::o;38965:485::-;39067:27;39096:23;39137:38;39178:15;:24;39194:7;39178:24;;;;;;;;;;;39137:65;;39355:18;39332:41;;39412:19;39406:26;39387:45;;39317:126;38965:485;;;:::o;38193:659::-;38342:11;38507:16;38500:5;38496:28;38487:37;;38667:16;38656:9;38652:32;38639:45;;38817:15;38806:9;38803:30;38795:5;38784:9;38781:20;38778:56;38768:66;;38193:659;;;;;:::o;44851:159::-;;;;;:::o;59419:311::-;59554:7;59574:16;22214:3;59600:19;:41;;59574:68;;22214:3;59668:31;59679:4;59685:2;59689:9;59668:10;:31::i;:::-;59660:40;;:62;;59653:69;;;59419:311;;;;;:::o;34311:450::-;34391:14;34559:16;34552:5;34548:28;34539:37;;34736:5;34722:11;34697:23;34693:41;34690:52;34683:5;34680:63;34670:73;;34311:450;;;;:::o;45675:158::-;;;;;:::o;3614:98::-;3672:7;3703:1;3699;:5;;;;:::i;:::-;3692:12;;3614:98;;;;:::o;4013:::-;4071:7;4102:1;4098;:5;;;;:::i;:::-;4091:12;;4013:98;;;;:::o;3257:::-;3315:7;3346:1;3342;:5;;;;:::i;:::-;3335:12;;3257:98;;;;:::o;9334:132::-;9409:12;:10;:12::i;:::-;9398:23;;:7;:5;:7::i;:::-;:23;;;9390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9334:132::o;10436:191::-;10510:16;10529:6;;;;;;;;;;;10510:25;;10555:8;10546:6;;:17;;;;;;;;;;;;;;;;;;10610:8;10579:40;;10600:8;10579:40;;;;;;;;;;;;10499:128;10436:191;:::o;26112:296::-;26167:7;26374:15;:13;:15::i;:::-;26358:13;;:31;26351:38;;26112:296;:::o;2876:98::-;2934:7;2965:1;2961;:5;;;;:::i;:::-;2954:12;;2876:98;;;;:::o;47451:2966::-;47524:20;47547:13;;47524:36;;47587:1;47575:8;:13;47571:44;;;47597:18;;;;;;;;;;;;;;47571:44;47628:61;47658:1;47662:2;47666:12;47680:8;47628:21;:61::i;:::-;48172:1;21172:2;48142:1;:26;;48141:32;48129:8;:45;48103:18;:22;48122:2;48103:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;48451:139;48488:2;48542:33;48565:1;48569:2;48573:1;48542:14;:33::i;:::-;48509:30;48530:8;48509:20;:30::i;:::-;:66;48451:18;:139::i;:::-;48417:17;:31;48435:12;48417:31;;;;;;;;;;;:173;;;;48607:16;48638:11;48667:8;48652:12;:23;48638:37;;49188:16;49184:2;49180:25;49168:37;;49560:12;49520:8;49479:1;49417:25;49358:1;49297;49270:335;49931:1;49917:12;49913:20;49871:346;49972:3;49963:7;49960:16;49871:346;;50190:7;50180:8;50177:1;50150:25;50147:1;50144;50139:59;50025:1;50016:7;50012:15;50001:26;;49871:346;;;49875:77;50262:1;50250:8;:13;50246:45;;;50272:19;;;;;;;;;;;;;;50246:45;50324:3;50308:13;:19;;;;47877:2462;;50349:60;50378:1;50382:2;50386:12;50400:8;50349:20;:60::i;:::-;47513:2904;47451:2966;;:::o;46273:716::-;46436:4;46482:2;46457:45;;;46503:19;:17;:19::i;:::-;46524:4;46530:7;46539:5;46457:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46453:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46757:1;46740:6;:13;:18;46736:235;;;46786:40;;;;;;;;;;;;;;46736:235;46929:6;46923:13;46914:6;46910:2;46906:15;46899:38;46453:529;46626:54;;;46616:64;;;:6;:64;;;;46609:71;;;46273:716;;;;;;:::o;65960:195::-;66020:13;66060:4;66050:14;;:6;;;;;;;;;;;:14;;;66046:102;;;66087:7;66080:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66046:102;66127:9;;;;;;;;;;;;;;65960:195;;:::o;60317:1745::-;60382:17;60816:4;60809;60803:11;60799:22;60908:1;60902:4;60895:15;60983:4;60980:1;60976:12;60969:19;;61065:1;61060:3;61053:14;61169:3;61408:5;61390:428;61416:1;61390:428;;;61456:1;61451:3;61447:11;61440:18;;61627:2;61621:4;61617:13;61613:2;61609:22;61604:3;61596:36;61721:2;61715:4;61711:13;61703:21;;61788:4;61778:25;;61796:5;;61778:25;61390:428;;;61394:21;61857:3;61852;61848:13;61972:4;61967:3;61963:14;61956:21;;62037:6;62032:3;62025:19;60421:1634;;;60317:1745;;;:::o;59120:147::-;59257:6;59120:147;;;;;:::o;7720:98::-;7773:7;7800:10;7793:17;;7720:98;:::o;34863:324::-;34933:14;35166:1;35156:8;35153:15;35127:24;35123:46;35113:56;;34863: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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:122;;1713:79;;:::i;:::-;1672:122;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;1601:338;;;;:::o;1959:553::-;2017:8;2027:6;2077:3;2070:4;2062:6;2058:17;2054:27;2044:122;;2085:79;;:::i;:::-;2044:122;2198:6;2185:20;2175:30;;2228:18;2220:6;2217:30;2214:117;;;2250:79;;:::i;:::-;2214:117;2364:4;2356:6;2352:17;2340:29;;2418:3;2410:4;2402:6;2398:17;2388:8;2384:32;2381:41;2378:128;;;2425:79;;:::i;:::-;2378:128;1959:553;;;;;:::o;2518:139::-;2564:5;2602:6;2589:20;2580:29;;2618:33;2645:5;2618:33;:::i;:::-;2518:139;;;;:::o;2663:329::-;2722:6;2771:2;2759:9;2750:7;2746:23;2742:32;2739:119;;;2777:79;;:::i;:::-;2739:119;2897:1;2922:53;2967:7;2958:6;2947:9;2943:22;2922:53;:::i;:::-;2912:63;;2868:117;2663:329;;;;:::o;2998:474::-;3066:6;3074;3123:2;3111:9;3102:7;3098:23;3094:32;3091:119;;;3129:79;;:::i;:::-;3091:119;3249:1;3274:53;3319:7;3310:6;3299:9;3295:22;3274:53;:::i;:::-;3264:63;;3220:117;3376:2;3402:53;3447:7;3438:6;3427:9;3423:22;3402:53;:::i;:::-;3392:63;;3347:118;2998:474;;;;;:::o;3478:619::-;3555:6;3563;3571;3620:2;3608:9;3599:7;3595:23;3591:32;3588:119;;;3626:79;;:::i;:::-;3588:119;3746:1;3771:53;3816:7;3807:6;3796:9;3792:22;3771:53;:::i;:::-;3761:63;;3717:117;3873:2;3899:53;3944:7;3935:6;3924:9;3920:22;3899:53;:::i;:::-;3889:63;;3844:118;4001:2;4027:53;4072:7;4063:6;4052:9;4048:22;4027:53;:::i;:::-;4017:63;;3972:118;3478:619;;;;;:::o;4103:943::-;4198:6;4206;4214;4222;4271:3;4259:9;4250:7;4246:23;4242:33;4239:120;;;4278:79;;:::i;:::-;4239:120;4398:1;4423:53;4468:7;4459:6;4448:9;4444:22;4423:53;:::i;:::-;4413:63;;4369:117;4525:2;4551:53;4596:7;4587:6;4576:9;4572:22;4551:53;:::i;:::-;4541:63;;4496:118;4653:2;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4624:118;4809:2;4798:9;4794:18;4781:32;4840:18;4832:6;4829:30;4826:117;;;4862:79;;:::i;:::-;4826:117;4967:62;5021:7;5012:6;5001:9;4997:22;4967:62;:::i;:::-;4957:72;;4752:287;4103:943;;;;;;;:::o;5052:468::-;5117:6;5125;5174:2;5162:9;5153:7;5149:23;5145:32;5142:119;;;5180:79;;:::i;:::-;5142:119;5300:1;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5271:117;5427:2;5453:50;5495:7;5486:6;5475:9;5471:22;5453:50;:::i;:::-;5443:60;;5398:115;5052:468;;;;;:::o;5526:613::-;5600:6;5608;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:50;5986:7;5977:6;5966:9;5962:22;5944:50;:::i;:::-;5934:60;;5889:115;6043:2;6069:53;6114:7;6105:6;6094:9;6090:22;6069:53;:::i;:::-;6059:63;;6014:118;5526:613;;;;;:::o;6145:474::-;6213:6;6221;6270:2;6258:9;6249:7;6245:23;6241:32;6238:119;;;6276:79;;:::i;:::-;6238:119;6396:1;6421:53;6466:7;6457:6;6446:9;6442:22;6421:53;:::i;:::-;6411:63;;6367:117;6523:2;6549:53;6594:7;6585:6;6574:9;6570:22;6549:53;:::i;:::-;6539:63;;6494:118;6145:474;;;;;:::o;6625:698::-;6717:6;6725;6733;6782:2;6770:9;6761:7;6757:23;6753:32;6750:119;;;6788:79;;:::i;:::-;6750:119;6936:1;6925:9;6921:17;6908:31;6966:18;6958:6;6955:30;6952:117;;;6988:79;;:::i;:::-;6952:117;7101:80;7173:7;7164:6;7153:9;7149:22;7101:80;:::i;:::-;7083:98;;;;6879:312;7230:2;7256:50;7298:7;7289:6;7278:9;7274:22;7256:50;:::i;:::-;7246:60;;7201:115;6625:698;;;;;:::o;7329:323::-;7385:6;7434:2;7422:9;7413:7;7409:23;7405:32;7402:119;;;7440:79;;:::i;:::-;7402:119;7560:1;7585:50;7627:7;7618:6;7607:9;7603:22;7585:50;:::i;:::-;7575:60;;7531:114;7329:323;;;;:::o;7658:327::-;7716:6;7765:2;7753:9;7744:7;7740:23;7736:32;7733:119;;;7771:79;;:::i;:::-;7733:119;7891:1;7916:52;7960:7;7951:6;7940:9;7936:22;7916:52;:::i;:::-;7906:62;;7862:116;7658:327;;;;:::o;7991:349::-;8060:6;8109:2;8097:9;8088:7;8084:23;8080:32;8077:119;;;8115:79;;:::i;:::-;8077:119;8235:1;8260:63;8315:7;8306:6;8295:9;8291:22;8260:63;:::i;:::-;8250:73;;8206:127;7991:349;;;;:::o;8346:529::-;8417:6;8425;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8793:65;8850:7;8841:6;8830:9;8826:22;8793:65;:::i;:::-;8775:83;;;;8571:297;8346:529;;;;;:::o;8881:329::-;8940:6;8989:2;8977:9;8968:7;8964:23;8960:32;8957:119;;;8995:79;;:::i;:::-;8957:119;9115:1;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9086:117;8881:329;;;;:::o;9216:474::-;9284:6;9292;9341:2;9329:9;9320:7;9316:23;9312:32;9309:119;;;9347:79;;:::i;:::-;9309:119;9467:1;9492:53;9537:7;9528:6;9517:9;9513:22;9492:53;:::i;:::-;9482:63;;9438:117;9594:2;9620:53;9665:7;9656:6;9645:9;9641:22;9620:53;:::i;:::-;9610:63;;9565:118;9216:474;;;;;:::o;9696:118::-;9783:24;9801:5;9783:24;:::i;:::-;9778:3;9771:37;9696:118;;:::o;9820:109::-;9901:21;9916:5;9901:21;:::i;:::-;9896:3;9889:34;9820:109;;:::o;9935:360::-;10021:3;10049:38;10081:5;10049:38;:::i;:::-;10103:70;10166:6;10161:3;10103:70;:::i;:::-;10096:77;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:29;10281:6;10259:29;:::i;:::-;10254:3;10250:39;10243:46;;10025:270;9935:360;;;;:::o;10301:364::-;10389:3;10417:39;10450:5;10417:39;:::i;:::-;10472:71;10536:6;10531:3;10472:71;:::i;:::-;10465:78;;10552:52;10597:6;10592:3;10585:4;10578:5;10574:16;10552:52;:::i;:::-;10629:29;10651:6;10629:29;:::i;:::-;10624:3;10620:39;10613:46;;10393:272;10301:364;;;;:::o;10671:377::-;10777:3;10805:39;10838:5;10805:39;:::i;:::-;10860:89;10942:6;10937:3;10860:89;:::i;:::-;10853:96;;10958:52;11003:6;10998:3;10991:4;10984:5;10980:16;10958:52;:::i;:::-;11035:6;11030:3;11026:16;11019:23;;10781:267;10671:377;;;;:::o;11054:366::-;11196:3;11217:67;11281:2;11276:3;11217:67;:::i;:::-;11210:74;;11293:93;11382:3;11293:93;:::i;:::-;11411:2;11406:3;11402:12;11395:19;;11054:366;;;:::o;11426:::-;11568:3;11589:67;11653:2;11648:3;11589:67;:::i;:::-;11582:74;;11665:93;11754:3;11665:93;:::i;:::-;11783:2;11778:3;11774:12;11767:19;;11426:366;;;:::o;11798:::-;11940:3;11961:67;12025:2;12020:3;11961:67;:::i;:::-;11954:74;;12037:93;12126:3;12037:93;:::i;:::-;12155:2;12150:3;12146:12;12139:19;;11798:366;;;:::o;12170:::-;12312:3;12333:67;12397:2;12392:3;12333:67;:::i;:::-;12326:74;;12409:93;12498:3;12409:93;:::i;:::-;12527:2;12522:3;12518:12;12511:19;;12170:366;;;:::o;12542:::-;12684:3;12705:67;12769:2;12764:3;12705:67;:::i;:::-;12698:74;;12781:93;12870:3;12781:93;:::i;:::-;12899:2;12894:3;12890:12;12883:19;;12542:366;;;:::o;12914:::-;13056:3;13077:67;13141:2;13136:3;13077:67;:::i;:::-;13070:74;;13153:93;13242:3;13153:93;:::i;:::-;13271:2;13266:3;13262:12;13255:19;;12914:366;;;:::o;13286:::-;13428:3;13449:67;13513:2;13508:3;13449:67;:::i;:::-;13442:74;;13525:93;13614:3;13525:93;:::i;:::-;13643:2;13638:3;13634:12;13627:19;;13286:366;;;:::o;13658:398::-;13817:3;13838:83;13919:1;13914:3;13838:83;:::i;:::-;13831:90;;13930:93;14019:3;13930:93;:::i;:::-;14048:1;14043:3;14039:11;14032:18;;13658:398;;;:::o;14062:366::-;14204:3;14225:67;14289:2;14284:3;14225:67;:::i;:::-;14218:74;;14301:93;14390:3;14301:93;:::i;:::-;14419:2;14414:3;14410:12;14403:19;;14062:366;;;:::o;14434:118::-;14521:24;14539:5;14521:24;:::i;:::-;14516:3;14509:37;14434:118;;:::o;14558:435::-;14738:3;14760:95;14851:3;14842:6;14760:95;:::i;:::-;14753:102;;14872:95;14963:3;14954:6;14872:95;:::i;:::-;14865:102;;14984:3;14977:10;;14558:435;;;;;:::o;14999:379::-;15183:3;15205:147;15348:3;15205:147;:::i;:::-;15198:154;;15369:3;15362:10;;14999:379;;;:::o;15384:222::-;15477:4;15515:2;15504:9;15500:18;15492:26;;15528:71;15596:1;15585:9;15581:17;15572:6;15528:71;:::i;:::-;15384:222;;;;:::o;15612:640::-;15807:4;15845:3;15834:9;15830:19;15822:27;;15859:71;15927:1;15916:9;15912:17;15903:6;15859:71;:::i;:::-;15940:72;16008:2;15997:9;15993:18;15984:6;15940:72;:::i;:::-;16022;16090:2;16079:9;16075:18;16066:6;16022:72;:::i;:::-;16141:9;16135:4;16131:20;16126:2;16115:9;16111:18;16104:48;16169:76;16240:4;16231:6;16169:76;:::i;:::-;16161:84;;15612:640;;;;;;;:::o;16258:210::-;16345:4;16383:2;16372:9;16368:18;16360:26;;16396:65;16458:1;16447:9;16443:17;16434:6;16396:65;:::i;:::-;16258:210;;;;:::o;16474:430::-;16617:4;16655:2;16644:9;16640:18;16632:26;;16668:65;16730:1;16719:9;16715:17;16706:6;16668:65;:::i;:::-;16743:72;16811:2;16800:9;16796:18;16787:6;16743:72;:::i;:::-;16825;16893:2;16882:9;16878:18;16869:6;16825:72;:::i;:::-;16474:430;;;;;;:::o;16910:313::-;17023:4;17061:2;17050:9;17046:18;17038:26;;17110:9;17104:4;17100:20;17096:1;17085:9;17081:17;17074:47;17138:78;17211:4;17202:6;17138:78;:::i;:::-;17130:86;;16910:313;;;;:::o;17229:419::-;17395:4;17433:2;17422:9;17418:18;17410:26;;17482:9;17476:4;17472:20;17468:1;17457:9;17453:17;17446:47;17510:131;17636:4;17510:131;:::i;:::-;17502:139;;17229:419;;;:::o;17654:::-;17820:4;17858:2;17847:9;17843:18;17835:26;;17907:9;17901:4;17897:20;17893:1;17882:9;17878:17;17871:47;17935:131;18061:4;17935:131;:::i;:::-;17927:139;;17654:419;;;:::o;18079:::-;18245:4;18283:2;18272:9;18268:18;18260:26;;18332:9;18326:4;18322:20;18318:1;18307:9;18303:17;18296:47;18360:131;18486:4;18360:131;:::i;:::-;18352:139;;18079:419;;;:::o;18504:::-;18670:4;18708:2;18697:9;18693:18;18685:26;;18757:9;18751:4;18747:20;18743:1;18732:9;18728:17;18721:47;18785:131;18911:4;18785:131;:::i;:::-;18777:139;;18504:419;;;:::o;18929:::-;19095:4;19133:2;19122:9;19118:18;19110:26;;19182:9;19176:4;19172:20;19168:1;19157:9;19153:17;19146:47;19210:131;19336:4;19210:131;:::i;:::-;19202:139;;18929:419;;;:::o;19354:::-;19520:4;19558:2;19547:9;19543:18;19535:26;;19607:9;19601:4;19597:20;19593:1;19582:9;19578:17;19571:47;19635:131;19761:4;19635:131;:::i;:::-;19627:139;;19354:419;;;:::o;19779:::-;19945:4;19983:2;19972:9;19968:18;19960:26;;20032:9;20026:4;20022:20;20018:1;20007:9;20003:17;19996:47;20060:131;20186:4;20060:131;:::i;:::-;20052:139;;19779:419;;;:::o;20204:::-;20370:4;20408:2;20397:9;20393:18;20385:26;;20457:9;20451:4;20447:20;20443:1;20432:9;20428:17;20421:47;20485:131;20611:4;20485:131;:::i;:::-;20477:139;;20204:419;;;:::o;20629:222::-;20722:4;20760:2;20749:9;20745:18;20737:26;;20773:71;20841:1;20830:9;20826:17;20817:6;20773:71;:::i;:::-;20629:222;;;;:::o;20857:129::-;20891:6;20918:20;;:::i;:::-;20908:30;;20947:33;20975:4;20967:6;20947:33;:::i;:::-;20857:129;;;:::o;20992:75::-;21025:6;21058:2;21052:9;21042:19;;20992:75;:::o;21073:307::-;21134:4;21224:18;21216:6;21213:30;21210:56;;;21246:18;;:::i;:::-;21210:56;21284:29;21306:6;21284:29;:::i;:::-;21276:37;;21368:4;21362;21358:15;21350:23;;21073:307;;;:::o;21386:98::-;21437:6;21471:5;21465:12;21455:22;;21386:98;;;:::o;21490:99::-;21542:6;21576:5;21570:12;21560:22;;21490:99;;;:::o;21595:168::-;21678:11;21712:6;21707:3;21700:19;21752:4;21747:3;21743:14;21728:29;;21595:168;;;;:::o;21769:147::-;21870:11;21907:3;21892:18;;21769:147;;;;:::o;21922:169::-;22006:11;22040:6;22035:3;22028:19;22080:4;22075:3;22071:14;22056:29;;21922:169;;;;:::o;22097:148::-;22199:11;22236:3;22221:18;;22097:148;;;;:::o;22251:305::-;22291:3;22310:20;22328:1;22310:20;:::i;:::-;22305:25;;22344:20;22362:1;22344:20;:::i;:::-;22339:25;;22498:1;22430:66;22426:74;22423:1;22420:81;22417:107;;;22504:18;;:::i;:::-;22417:107;22548:1;22545;22541:9;22534:16;;22251:305;;;;:::o;22562:185::-;22602:1;22619:20;22637:1;22619:20;:::i;:::-;22614:25;;22653:20;22671:1;22653:20;:::i;:::-;22648:25;;22692:1;22682:35;;22697:18;;:::i;:::-;22682:35;22739:1;22736;22732:9;22727:14;;22562:185;;;;:::o;22753:348::-;22793:7;22816:20;22834:1;22816:20;:::i;:::-;22811:25;;22850:20;22868:1;22850:20;:::i;:::-;22845:25;;23038:1;22970:66;22966:74;22963:1;22960:81;22955:1;22948:9;22941:17;22937:105;22934:131;;;23045:18;;:::i;:::-;22934:131;23093:1;23090;23086:9;23075:20;;22753:348;;;;:::o;23107:191::-;23147:4;23167:20;23185:1;23167:20;:::i;:::-;23162:25;;23201:20;23219:1;23201:20;:::i;:::-;23196:25;;23240:1;23237;23234:8;23231:34;;;23245:18;;:::i;:::-;23231:34;23290:1;23287;23283:9;23275:17;;23107:191;;;;:::o;23304:96::-;23341:7;23370:24;23388:5;23370:24;:::i;:::-;23359:35;;23304:96;;;:::o;23406:90::-;23440:7;23483:5;23476:13;23469:21;23458:32;;23406:90;;;:::o;23502:149::-;23538:7;23578:66;23571:5;23567:78;23556:89;;23502:149;;;:::o;23657:126::-;23694:7;23734:42;23727:5;23723:54;23712:65;;23657:126;;;:::o;23789:77::-;23826:7;23855:5;23844:16;;23789:77;;;:::o;23872:154::-;23956:6;23951:3;23946;23933:30;24018:1;24009:6;24004:3;24000:16;23993:27;23872:154;;;:::o;24032:307::-;24100:1;24110:113;24124:6;24121:1;24118:13;24110:113;;;24209:1;24204:3;24200:11;24194:18;24190:1;24185:3;24181:11;24174:39;24146:2;24143:1;24139:10;24134:15;;24110:113;;;24241:6;24238:1;24235:13;24232:101;;;24321:1;24312:6;24307:3;24303:16;24296:27;24232:101;24081:258;24032:307;;;:::o;24345:320::-;24389:6;24426:1;24420:4;24416:12;24406:22;;24473:1;24467:4;24463:12;24494:18;24484:81;;24550:4;24542:6;24538:17;24528:27;;24484:81;24612:2;24604:6;24601:14;24581:18;24578:38;24575:84;;;24631:18;;:::i;:::-;24575:84;24396:269;24345:320;;;:::o;24671:281::-;24754:27;24776:4;24754:27;:::i;:::-;24746:6;24742:40;24884:6;24872:10;24869:22;24848:18;24836:10;24833:34;24830:62;24827:88;;;24895:18;;:::i;:::-;24827:88;24935:10;24931:2;24924:22;24714:238;24671:281;;:::o;24958:233::-;24997:3;25020:24;25038:5;25020:24;:::i;:::-;25011:33;;25066:66;25059:5;25056:77;25053:103;;;25136:18;;:::i;:::-;25053:103;25183:1;25176:5;25172:13;25165:20;;24958:233;;;:::o;25197:180::-;25245:77;25242:1;25235:88;25342:4;25339:1;25332:15;25366:4;25363:1;25356:15;25383:180;25431:77;25428:1;25421:88;25528:4;25525:1;25518:15;25552:4;25549:1;25542:15;25569:180;25617:77;25614:1;25607:88;25714:4;25711:1;25704:15;25738:4;25735:1;25728:15;25755:180;25803:77;25800:1;25793:88;25900:4;25897:1;25890:15;25924:4;25921:1;25914:15;25941:180;25989:77;25986:1;25979:88;26086:4;26083:1;26076:15;26110:4;26107:1;26100:15;26127:117;26236:1;26233;26226:12;26250:117;26359:1;26356;26349:12;26373:117;26482:1;26479;26472:12;26496:117;26605:1;26602;26595:12;26619:117;26728:1;26725;26718:12;26742:117;26851:1;26848;26841:12;26865:102;26906:6;26957:2;26953:7;26948:2;26941:5;26937:14;26933:28;26923:38;;26865:102;;;:::o;26973:221::-;27113:34;27109:1;27101:6;27097:14;27090:58;27182:4;27177:2;27169:6;27165:15;27158:29;26973:221;:::o;27200:182::-;27340:34;27336:1;27328:6;27324:14;27317:58;27200:182;:::o;27388:237::-;27528:34;27524:1;27516:6;27512:14;27505:58;27597:20;27592:2;27584:6;27580:15;27573:45;27388:237;:::o;27631:225::-;27771:34;27767:1;27759:6;27755:14;27748:58;27840:8;27835:2;27827:6;27823:15;27816:33;27631:225;:::o;27862:171::-;28002:23;27998:1;27990:6;27986:14;27979:47;27862:171;:::o;28039:182::-;28179:34;28175:1;28167:6;28163:14;28156:58;28039:182;:::o;28227:172::-;28367:24;28363:1;28355:6;28351:14;28344:48;28227:172;:::o;28405:114::-;;:::o;28525:166::-;28665:18;28661:1;28653:6;28649:14;28642:42;28525:166;:::o;28697:122::-;28770:24;28788:5;28770:24;:::i;:::-;28763:5;28760:35;28750:63;;28809:1;28806;28799:12;28750:63;28697:122;:::o;28825:116::-;28895:21;28910:5;28895:21;:::i;:::-;28888:5;28885:32;28875:60;;28931:1;28928;28921:12;28875:60;28825:116;:::o;28947:120::-;29019:23;29036:5;29019:23;:::i;:::-;29012:5;29009:34;28999:62;;29057:1;29054;29047:12;28999:62;28947:120;:::o;29073:122::-;29146:24;29164:5;29146:24;:::i;:::-;29139:5;29136:35;29126:63;;29185:1;29182;29175:12;29126:63;29073:122;:::o

Swarm Source

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