ETH Price: $2,516.51 (-0.24%)

Karma Genesis NFT (KRM)
 

Overview

TokenID

105

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
KarmaGenesisNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-12
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ownerOf(tokenId);

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/NFT.sol



pragma solidity >=0.8.0;




/**
 * @dev contract module which defines Cannaverse NFT Collection
 * and all the interactions it uses
 */
contract KarmaGenesisNFT is ERC721A, Ownable {
    // using Strings for uint256;

    //@dev Attributes for NFT configuration
    string internal baseURI;
    uint256 public cost = 0.1 ether;
    uint256 public maxSupply = 333;
    uint256 public maxMintAmount = 10;
    mapping(uint256 => string) private _tokenURIs;
    bool public paused = true;

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

    /**
     * @dev Create an instance of Couch Heroes contract
     */
    constructor() ERC721A("Karma Genesis NFT", "KRM") {}

    /**
     * @dev pause de contract
     * _state of the contract
     */
    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    /**
     * @dev get base URI for NFT metadata
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function mintFirst() external onlyOwner {
        _safeMint(msg.sender, 1);
    }

    /**
     * @dev Mint edition to a wallet
     * @param _to wallet receiving the edition(s).
     * @param _mintAmount number of editions to mint.
     */
    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(!paused, "Contract is paused");
        require(
            supply + _mintAmount <= maxSupply,
            "Not enough mintable editions !"
        );

        require(msg.value == cost * _mintAmount, "Incorrect ETH value");
        _safeMint(_to, _mintAmount);
    }

    /**
     * @dev change cost of NFT
     * @param _newCost new cost of each edition
     */
    function setCost(uint256 _newCost) external onlyOwner {
        cost = _newCost;
    }

    /**
     * @dev restrict max mintable amount of edition at a time
     * @param _newmaxMintAmount new max mintable amount
     */
    function setmaxMintAmount(uint256 _newmaxMintAmount) external onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    /**
     * @dev change metadata uri
     * @param _newBaseURI new URI for metadata
     */
    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    /**
     * @dev Get token URI
     * @param tokenId ID of the token to retrieve
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "URI query for nonexistent token");

        if (bytes(_tokenURIs[tokenId]).length == 0) {
            string memory currentBaseURI = _baseURI();
            return
                bytes(currentBaseURI).length > 0
                    ? string(
                        abi.encodePacked(
                            currentBaseURI,
                            Strings.toString(tokenId),
                            ".json"
                        )
                    )
                    : "";
        } else return _tokenURIs[tokenId];
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(owner()).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFirst","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267016345785d8a0000600a5561014d600b55600a600c556001600e60006101000a81548160ff0219169083151502179055503480156200004357600080fd5b506040518060400160405280601181526020017f4b61726d612047656e65736973204e46540000000000000000000000000000008152506040518060400160405280600381526020017f4b524d00000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000c8929190620001f7565b508060039080519060200190620000e1929190620001f7565b50620000f26200012060201b60201c565b60008190555050506200011a6200010e6200012960201b60201c565b6200013160201b60201c565b6200030c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020590620002a7565b90600052602060002090601f01602090048101928262000229576000855562000275565b82601f106200024457805160ff191683800117855562000275565b8280016001018555821562000275579182015b828111156200027457825182559160200191906001019062000257565b5b50905062000284919062000288565b5090565b5b80821115620002a357600081600090555060010162000289565b5090565b60006002820490506001821680620002c057607f821691505b60208210811415620002d757620002d6620002dd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612c8e806200031c6000396000f3fe6080604052600436106101b75760003560e01c80635c975abb116100ec578063a22cb4651161008a578063d267870711610064578063d2678707146105d5578063d5abeb01146105ec578063e985e9c514610617578063f2fde38b14610654576101b7565b8063a22cb46514610546578063b88d4fde1461056f578063c87b56dd14610598576101b7565b8063715018a6116100c6578063715018a6146104b05780637f00c7a6146104c75780638da5cb5b146104f057806395d89b411461051b576101b7565b80635c975abb1461040b5780636352211e1461043657806370a0823114610473576101b7565b8063239c70ae1161015957806340c10f191161013357806340c10f191461037457806342842e0e1461039057806344a0d68a146103b957806355f804b3146103e2576101b7565b8063239c70ae1461030957806323b872dd146103345780633ccfd60b1461035d576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806313faede6146102b357806318160ddd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906121f2565b61067d565b6040516101f0919061251d565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b91906121c5565b61070f565b005b34801561022e57600080fd5b50610237610734565b6040516102449190612538565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612295565b6107c6565b60405161028191906124b6565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612185565b610845565b005b3480156102bf57600080fd5b506102c8610989565b6040516102d5919061261a565b60405180910390f35b3480156102ea57600080fd5b506102f361098f565b604051610300919061261a565b60405180910390f35b34801561031557600080fd5b5061031e6109a6565b60405161032b919061261a565b60405180910390f35b34801561034057600080fd5b5061035b6004803603810190610356919061206f565b6109ac565b005b34801561036957600080fd5b50610372610cd1565b005b61038e60048036038101906103899190612185565b610d2f565b005b34801561039c57600080fd5b506103b760048036038101906103b2919061206f565b610e39565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612295565b610e59565b005b3480156103ee57600080fd5b506104096004803603810190610404919061224c565b610e6b565b005b34801561041757600080fd5b50610420610e8d565b60405161042d919061251d565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190612295565b610ea0565b60405161046a91906124b6565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612002565b610eb2565b6040516104a7919061261a565b60405180910390f35b3480156104bc57600080fd5b506104c5610f6b565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190612295565b610f7f565b005b3480156104fc57600080fd5b50610505610f91565b60405161051291906124b6565b60405180910390f35b34801561052757600080fd5b50610530610fbb565b60405161053d9190612538565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612145565b61104d565b005b34801561057b57600080fd5b50610596600480360381019061059191906120c2565b6111c5565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190612295565b611238565b6040516105cc9190612538565b60405180910390f35b3480156105e157600080fd5b506105ea6113ab565b005b3480156105f857600080fd5b506106016113c0565b60405161060e919061261a565b60405180910390f35b34801561062357600080fd5b5061063e6004803603810190610639919061202f565b6113c6565b60405161064b919061251d565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190612002565b61145a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106d857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107085750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6107176114de565b80600e60006101000a81548160ff02191690831515021790555050565b606060028054610743906128ca565b80601f016020809104026020016040519081016040528092919081815260200182805461076f906128ca565b80156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b5050505050905090565b60006107d18261155c565b610807576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085082610ea0565b90508073ffffffffffffffffffffffffffffffffffffffff166108716115bb565b73ffffffffffffffffffffffffffffffffffffffff16146108d45761089d816108986115bb565b6113c6565b6108d3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b60006109996115c3565b6001546000540303905090565b600c5481565b60006109b7826115cc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a1e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a2a8461169a565b91509150610a408187610a3b6115bb565b6116c1565b610a8c57610a5586610a506115bb565b6113c6565b610a8b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610af3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b008686866001611705565b8015610b0b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bd985610bb588888761170b565b7c020000000000000000000000000000000000000000000000000000000017611733565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c61576000600185019050600060046000838152602001908152602001600020541415610c5f576000548114610c5e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cc9868686600161175e565b505050505050565b610cd96114de565b6000479050610ce6610f91565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d2b573d6000803e3d6000fd5b5050565b6000610d3961098f565b9050600e60009054906101000a900460ff1615610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d82906125da565b60405180910390fd5b600b548282610d9a91906126ff565b1115610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906125ba565b60405180910390fd5b81600a54610de99190612786565b3414610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e21906125fa565b60405180910390fd5b610e348383611764565b505050565b610e54838383604051806020016040528060008152506111c5565b505050565b610e616114de565b80600a8190555050565b610e736114de565b8060099080519060200190610e89929190611e16565b5050565b600e60009054906101000a900460ff1681565b6000610eab826115cc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f736114de565b610f7d6000611782565b565b610f876114de565b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fca906128ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff6906128ca565b80156110435780601f1061101857610100808354040283529160200191611043565b820191906000526020600020905b81548152906001019060200180831161102657829003601f168201915b5050505050905090565b6110556115bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ba576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110c76115bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111746115bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111b9919061251d565b60405180910390a35050565b6111d08484846109ac565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611232576111fb84848484611848565b611231576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112438261155c565b611282576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112799061255a565b60405180910390fd5b6000600d600084815260200190815260200160002080546112a2906128ca565b905014156113075760006112b46119a8565b905060008151116112d457604051806020016040528060008152506112ff565b806112de84611a3a565b6040516020016112ef929190612487565b6040516020818303038152906040525b9150506113a6565b600d60008381526020019081526020016000208054611325906128ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611351906128ca565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b505050505090505b919050565b6113b36114de565b6113be336001611764565b565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114626114de565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c99061257a565b60405180910390fd5b6114db81611782565b50565b6114e6611b9b565b73ffffffffffffffffffffffffffffffffffffffff16611504610f91565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115519061259a565b60405180910390fd5b565b6000816115676115c3565b11158015611576575060005482105b80156115b4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806115db6115c3565b11611663576000548110156116625760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611660575b600081141561165657600460008360019003935083815260200190815260200160002054905061162b565b8092505050611695565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611722868684611ba3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61177e828260405180602001604052806000815250611bac565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261186e6115bb565b8786866040518563ffffffff1660e01b815260040161189094939291906124d1565b602060405180830381600087803b1580156118aa57600080fd5b505af19250505080156118db57506040513d601f19601f820116820180604052508101906118d8919061221f565b60015b611955573d806000811461190b576040519150601f19603f3d011682016040523d82523d6000602084013e611910565b606091505b5060008151141561194d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546119b7906128ca565b80601f01602080910402602001604051908101604052809291908181526020018280546119e3906128ca565b8015611a305780601f10611a0557610100808354040283529160200191611a30565b820191906000526020600020905b815481529060010190602001808311611a1357829003601f168201915b5050505050905090565b60606000821415611a82576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b96565b600082905060005b60008214611ab4578080611a9d9061292d565b915050600a82611aad9190612755565b9150611a8a565b60008167ffffffffffffffff811115611ad057611acf612a63565b5b6040519080825280601f01601f191660200182016040528015611b025781602001600182028036833780820191505090505b5090505b60008514611b8f57600182611b1b91906127e0565b9150600a85611b2a9190612976565b6030611b3691906126ff565b60f81b818381518110611b4c57611b4b612a34565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b889190612755565b9450611b06565b8093505050505b919050565b600033905090565b60009392505050565b611bb68383611c49565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c4457600080549050600083820390505b611bf66000868380600101945086611848565b611c2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611be3578160005414611c4157600080fd5b50505b505050565b6000805490506000821415611c8a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c976000848385611705565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d0e83611cff600086600061170b565b611d0885611e06565b17611733565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611daf57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d74565b506000821415611deb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e01600084838561175e565b505050565b60006001821460e11b9050919050565b828054611e22906128ca565b90600052602060002090601f016020900481019282611e445760008555611e8b565b82601f10611e5d57805160ff1916838001178555611e8b565b82800160010185558215611e8b579182015b82811115611e8a578251825591602001919060010190611e6f565b5b509050611e989190611e9c565b5090565b5b80821115611eb5576000816000905550600101611e9d565b5090565b6000611ecc611ec78461265a565b612635565b905082815260208101848484011115611ee857611ee7612a97565b5b611ef3848285612888565b509392505050565b6000611f0e611f098461268b565b612635565b905082815260208101848484011115611f2a57611f29612a97565b5b611f35848285612888565b509392505050565b600081359050611f4c81612bfc565b92915050565b600081359050611f6181612c13565b92915050565b600081359050611f7681612c2a565b92915050565b600081519050611f8b81612c2a565b92915050565b600082601f830112611fa657611fa5612a92565b5b8135611fb6848260208601611eb9565b91505092915050565b600082601f830112611fd457611fd3612a92565b5b8135611fe4848260208601611efb565b91505092915050565b600081359050611ffc81612c41565b92915050565b60006020828403121561201857612017612aa1565b5b600061202684828501611f3d565b91505092915050565b6000806040838503121561204657612045612aa1565b5b600061205485828601611f3d565b925050602061206585828601611f3d565b9150509250929050565b60008060006060848603121561208857612087612aa1565b5b600061209686828701611f3d565b93505060206120a786828701611f3d565b92505060406120b886828701611fed565b9150509250925092565b600080600080608085870312156120dc576120db612aa1565b5b60006120ea87828801611f3d565b94505060206120fb87828801611f3d565b935050604061210c87828801611fed565b925050606085013567ffffffffffffffff81111561212d5761212c612a9c565b5b61213987828801611f91565b91505092959194509250565b6000806040838503121561215c5761215b612aa1565b5b600061216a85828601611f3d565b925050602061217b85828601611f52565b9150509250929050565b6000806040838503121561219c5761219b612aa1565b5b60006121aa85828601611f3d565b92505060206121bb85828601611fed565b9150509250929050565b6000602082840312156121db576121da612aa1565b5b60006121e984828501611f52565b91505092915050565b60006020828403121561220857612207612aa1565b5b600061221684828501611f67565b91505092915050565b60006020828403121561223557612234612aa1565b5b600061224384828501611f7c565b91505092915050565b60006020828403121561226257612261612aa1565b5b600082013567ffffffffffffffff8111156122805761227f612a9c565b5b61228c84828501611fbf565b91505092915050565b6000602082840312156122ab576122aa612aa1565b5b60006122b984828501611fed565b91505092915050565b6122cb81612814565b82525050565b6122da81612826565b82525050565b60006122eb826126bc565b6122f581856126d2565b9350612305818560208601612897565b61230e81612aa6565b840191505092915050565b6000612324826126c7565b61232e81856126e3565b935061233e818560208601612897565b61234781612aa6565b840191505092915050565b600061235d826126c7565b61236781856126f4565b9350612377818560208601612897565b80840191505092915050565b6000612390601f836126e3565b915061239b82612ab7565b602082019050919050565b60006123b36026836126e3565b91506123be82612ae0565b604082019050919050565b60006123d66005836126f4565b91506123e182612b2f565b600582019050919050565b60006123f96020836126e3565b915061240482612b58565b602082019050919050565b600061241c601e836126e3565b915061242782612b81565b602082019050919050565b600061243f6012836126e3565b915061244a82612baa565b602082019050919050565b60006124626013836126e3565b915061246d82612bd3565b602082019050919050565b6124818161287e565b82525050565b60006124938285612352565b915061249f8284612352565b91506124aa826123c9565b91508190509392505050565b60006020820190506124cb60008301846122c2565b92915050565b60006080820190506124e660008301876122c2565b6124f360208301866122c2565b6125006040830185612478565b818103606083015261251281846122e0565b905095945050505050565b600060208201905061253260008301846122d1565b92915050565b600060208201905081810360008301526125528184612319565b905092915050565b6000602082019050818103600083015261257381612383565b9050919050565b60006020820190508181036000830152612593816123a6565b9050919050565b600060208201905081810360008301526125b3816123ec565b9050919050565b600060208201905081810360008301526125d38161240f565b9050919050565b600060208201905081810360008301526125f381612432565b9050919050565b6000602082019050818103600083015261261381612455565b9050919050565b600060208201905061262f6000830184612478565b92915050565b600061263f612650565b905061264b82826128fc565b919050565b6000604051905090565b600067ffffffffffffffff82111561267557612674612a63565b5b61267e82612aa6565b9050602081019050919050565b600067ffffffffffffffff8211156126a6576126a5612a63565b5b6126af82612aa6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061270a8261287e565b91506127158361287e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561274a576127496129a7565b5b828201905092915050565b60006127608261287e565b915061276b8361287e565b92508261277b5761277a6129d6565b5b828204905092915050565b60006127918261287e565b915061279c8361287e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127d5576127d46129a7565b5b828202905092915050565b60006127eb8261287e565b91506127f68361287e565b925082821015612809576128086129a7565b5b828203905092915050565b600061281f8261285e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156128b557808201518184015260208101905061289a565b838111156128c4576000848401525b50505050565b600060028204905060018216806128e257607f821691505b602082108114156128f6576128f5612a05565b5b50919050565b61290582612aa6565b810181811067ffffffffffffffff8211171561292457612923612a63565b5b80604052505050565b60006129388261287e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561296b5761296a6129a7565b5b600182019050919050565b60006129818261287e565b915061298c8361287e565b92508261299c5761299b6129d6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768206d696e7461626c652065646974696f6e7320210000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c756500000000000000000000000000600082015250565b612c0581612814565b8114612c1057600080fd5b50565b612c1c81612826565b8114612c2757600080fd5b50565b612c3381612832565b8114612c3e57600080fd5b50565b612c4a8161287e565b8114612c5557600080fd5b5056fea264697066735822122086d03f46dcc9a27555b475018281244e3349b4f2770d17de853b9796114e071964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80635c975abb116100ec578063a22cb4651161008a578063d267870711610064578063d2678707146105d5578063d5abeb01146105ec578063e985e9c514610617578063f2fde38b14610654576101b7565b8063a22cb46514610546578063b88d4fde1461056f578063c87b56dd14610598576101b7565b8063715018a6116100c6578063715018a6146104b05780637f00c7a6146104c75780638da5cb5b146104f057806395d89b411461051b576101b7565b80635c975abb1461040b5780636352211e1461043657806370a0823114610473576101b7565b8063239c70ae1161015957806340c10f191161013357806340c10f191461037457806342842e0e1461039057806344a0d68a146103b957806355f804b3146103e2576101b7565b8063239c70ae1461030957806323b872dd146103345780633ccfd60b1461035d576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806313faede6146102b357806318160ddd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906121f2565b61067d565b6040516101f0919061251d565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b91906121c5565b61070f565b005b34801561022e57600080fd5b50610237610734565b6040516102449190612538565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612295565b6107c6565b60405161028191906124b6565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612185565b610845565b005b3480156102bf57600080fd5b506102c8610989565b6040516102d5919061261a565b60405180910390f35b3480156102ea57600080fd5b506102f361098f565b604051610300919061261a565b60405180910390f35b34801561031557600080fd5b5061031e6109a6565b60405161032b919061261a565b60405180910390f35b34801561034057600080fd5b5061035b6004803603810190610356919061206f565b6109ac565b005b34801561036957600080fd5b50610372610cd1565b005b61038e60048036038101906103899190612185565b610d2f565b005b34801561039c57600080fd5b506103b760048036038101906103b2919061206f565b610e39565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612295565b610e59565b005b3480156103ee57600080fd5b506104096004803603810190610404919061224c565b610e6b565b005b34801561041757600080fd5b50610420610e8d565b60405161042d919061251d565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190612295565b610ea0565b60405161046a91906124b6565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612002565b610eb2565b6040516104a7919061261a565b60405180910390f35b3480156104bc57600080fd5b506104c5610f6b565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190612295565b610f7f565b005b3480156104fc57600080fd5b50610505610f91565b60405161051291906124b6565b60405180910390f35b34801561052757600080fd5b50610530610fbb565b60405161053d9190612538565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612145565b61104d565b005b34801561057b57600080fd5b50610596600480360381019061059191906120c2565b6111c5565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190612295565b611238565b6040516105cc9190612538565b60405180910390f35b3480156105e157600080fd5b506105ea6113ab565b005b3480156105f857600080fd5b506106016113c0565b60405161060e919061261a565b60405180910390f35b34801561062357600080fd5b5061063e6004803603810190610639919061202f565b6113c6565b60405161064b919061251d565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190612002565b61145a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106d857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107085750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6107176114de565b80600e60006101000a81548160ff02191690831515021790555050565b606060028054610743906128ca565b80601f016020809104026020016040519081016040528092919081815260200182805461076f906128ca565b80156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b5050505050905090565b60006107d18261155c565b610807576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085082610ea0565b90508073ffffffffffffffffffffffffffffffffffffffff166108716115bb565b73ffffffffffffffffffffffffffffffffffffffff16146108d45761089d816108986115bb565b6113c6565b6108d3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b60006109996115c3565b6001546000540303905090565b600c5481565b60006109b7826115cc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a1e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a2a8461169a565b91509150610a408187610a3b6115bb565b6116c1565b610a8c57610a5586610a506115bb565b6113c6565b610a8b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610af3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b008686866001611705565b8015610b0b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bd985610bb588888761170b565b7c020000000000000000000000000000000000000000000000000000000017611733565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c61576000600185019050600060046000838152602001908152602001600020541415610c5f576000548114610c5e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cc9868686600161175e565b505050505050565b610cd96114de565b6000479050610ce6610f91565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d2b573d6000803e3d6000fd5b5050565b6000610d3961098f565b9050600e60009054906101000a900460ff1615610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d82906125da565b60405180910390fd5b600b548282610d9a91906126ff565b1115610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906125ba565b60405180910390fd5b81600a54610de99190612786565b3414610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e21906125fa565b60405180910390fd5b610e348383611764565b505050565b610e54838383604051806020016040528060008152506111c5565b505050565b610e616114de565b80600a8190555050565b610e736114de565b8060099080519060200190610e89929190611e16565b5050565b600e60009054906101000a900460ff1681565b6000610eab826115cc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f736114de565b610f7d6000611782565b565b610f876114de565b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fca906128ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff6906128ca565b80156110435780601f1061101857610100808354040283529160200191611043565b820191906000526020600020905b81548152906001019060200180831161102657829003601f168201915b5050505050905090565b6110556115bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ba576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110c76115bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111746115bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111b9919061251d565b60405180910390a35050565b6111d08484846109ac565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611232576111fb84848484611848565b611231576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112438261155c565b611282576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112799061255a565b60405180910390fd5b6000600d600084815260200190815260200160002080546112a2906128ca565b905014156113075760006112b46119a8565b905060008151116112d457604051806020016040528060008152506112ff565b806112de84611a3a565b6040516020016112ef929190612487565b6040516020818303038152906040525b9150506113a6565b600d60008381526020019081526020016000208054611325906128ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611351906128ca565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b505050505090505b919050565b6113b36114de565b6113be336001611764565b565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114626114de565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c99061257a565b60405180910390fd5b6114db81611782565b50565b6114e6611b9b565b73ffffffffffffffffffffffffffffffffffffffff16611504610f91565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115519061259a565b60405180910390fd5b565b6000816115676115c3565b11158015611576575060005482105b80156115b4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806115db6115c3565b11611663576000548110156116625760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611660575b600081141561165657600460008360019003935083815260200190815260200160002054905061162b565b8092505050611695565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611722868684611ba3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61177e828260405180602001604052806000815250611bac565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261186e6115bb565b8786866040518563ffffffff1660e01b815260040161189094939291906124d1565b602060405180830381600087803b1580156118aa57600080fd5b505af19250505080156118db57506040513d601f19601f820116820180604052508101906118d8919061221f565b60015b611955573d806000811461190b576040519150601f19603f3d011682016040523d82523d6000602084013e611910565b606091505b5060008151141561194d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546119b7906128ca565b80601f01602080910402602001604051908101604052809291908181526020018280546119e3906128ca565b8015611a305780601f10611a0557610100808354040283529160200191611a30565b820191906000526020600020905b815481529060010190602001808311611a1357829003601f168201915b5050505050905090565b60606000821415611a82576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b96565b600082905060005b60008214611ab4578080611a9d9061292d565b915050600a82611aad9190612755565b9150611a8a565b60008167ffffffffffffffff811115611ad057611acf612a63565b5b6040519080825280601f01601f191660200182016040528015611b025781602001600182028036833780820191505090505b5090505b60008514611b8f57600182611b1b91906127e0565b9150600a85611b2a9190612976565b6030611b3691906126ff565b60f81b818381518110611b4c57611b4b612a34565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b889190612755565b9450611b06565b8093505050505b919050565b600033905090565b60009392505050565b611bb68383611c49565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c4457600080549050600083820390505b611bf66000868380600101945086611848565b611c2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611be3578160005414611c4157600080fd5b50505b505050565b6000805490506000821415611c8a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c976000848385611705565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d0e83611cff600086600061170b565b611d0885611e06565b17611733565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611daf57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d74565b506000821415611deb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e01600084838561175e565b505050565b60006001821460e11b9050919050565b828054611e22906128ca565b90600052602060002090601f016020900481019282611e445760008555611e8b565b82601f10611e5d57805160ff1916838001178555611e8b565b82800160010185558215611e8b579182015b82811115611e8a578251825591602001919060010190611e6f565b5b509050611e989190611e9c565b5090565b5b80821115611eb5576000816000905550600101611e9d565b5090565b6000611ecc611ec78461265a565b612635565b905082815260208101848484011115611ee857611ee7612a97565b5b611ef3848285612888565b509392505050565b6000611f0e611f098461268b565b612635565b905082815260208101848484011115611f2a57611f29612a97565b5b611f35848285612888565b509392505050565b600081359050611f4c81612bfc565b92915050565b600081359050611f6181612c13565b92915050565b600081359050611f7681612c2a565b92915050565b600081519050611f8b81612c2a565b92915050565b600082601f830112611fa657611fa5612a92565b5b8135611fb6848260208601611eb9565b91505092915050565b600082601f830112611fd457611fd3612a92565b5b8135611fe4848260208601611efb565b91505092915050565b600081359050611ffc81612c41565b92915050565b60006020828403121561201857612017612aa1565b5b600061202684828501611f3d565b91505092915050565b6000806040838503121561204657612045612aa1565b5b600061205485828601611f3d565b925050602061206585828601611f3d565b9150509250929050565b60008060006060848603121561208857612087612aa1565b5b600061209686828701611f3d565b93505060206120a786828701611f3d565b92505060406120b886828701611fed565b9150509250925092565b600080600080608085870312156120dc576120db612aa1565b5b60006120ea87828801611f3d565b94505060206120fb87828801611f3d565b935050604061210c87828801611fed565b925050606085013567ffffffffffffffff81111561212d5761212c612a9c565b5b61213987828801611f91565b91505092959194509250565b6000806040838503121561215c5761215b612aa1565b5b600061216a85828601611f3d565b925050602061217b85828601611f52565b9150509250929050565b6000806040838503121561219c5761219b612aa1565b5b60006121aa85828601611f3d565b92505060206121bb85828601611fed565b9150509250929050565b6000602082840312156121db576121da612aa1565b5b60006121e984828501611f52565b91505092915050565b60006020828403121561220857612207612aa1565b5b600061221684828501611f67565b91505092915050565b60006020828403121561223557612234612aa1565b5b600061224384828501611f7c565b91505092915050565b60006020828403121561226257612261612aa1565b5b600082013567ffffffffffffffff8111156122805761227f612a9c565b5b61228c84828501611fbf565b91505092915050565b6000602082840312156122ab576122aa612aa1565b5b60006122b984828501611fed565b91505092915050565b6122cb81612814565b82525050565b6122da81612826565b82525050565b60006122eb826126bc565b6122f581856126d2565b9350612305818560208601612897565b61230e81612aa6565b840191505092915050565b6000612324826126c7565b61232e81856126e3565b935061233e818560208601612897565b61234781612aa6565b840191505092915050565b600061235d826126c7565b61236781856126f4565b9350612377818560208601612897565b80840191505092915050565b6000612390601f836126e3565b915061239b82612ab7565b602082019050919050565b60006123b36026836126e3565b91506123be82612ae0565b604082019050919050565b60006123d66005836126f4565b91506123e182612b2f565b600582019050919050565b60006123f96020836126e3565b915061240482612b58565b602082019050919050565b600061241c601e836126e3565b915061242782612b81565b602082019050919050565b600061243f6012836126e3565b915061244a82612baa565b602082019050919050565b60006124626013836126e3565b915061246d82612bd3565b602082019050919050565b6124818161287e565b82525050565b60006124938285612352565b915061249f8284612352565b91506124aa826123c9565b91508190509392505050565b60006020820190506124cb60008301846122c2565b92915050565b60006080820190506124e660008301876122c2565b6124f360208301866122c2565b6125006040830185612478565b818103606083015261251281846122e0565b905095945050505050565b600060208201905061253260008301846122d1565b92915050565b600060208201905081810360008301526125528184612319565b905092915050565b6000602082019050818103600083015261257381612383565b9050919050565b60006020820190508181036000830152612593816123a6565b9050919050565b600060208201905081810360008301526125b3816123ec565b9050919050565b600060208201905081810360008301526125d38161240f565b9050919050565b600060208201905081810360008301526125f381612432565b9050919050565b6000602082019050818103600083015261261381612455565b9050919050565b600060208201905061262f6000830184612478565b92915050565b600061263f612650565b905061264b82826128fc565b919050565b6000604051905090565b600067ffffffffffffffff82111561267557612674612a63565b5b61267e82612aa6565b9050602081019050919050565b600067ffffffffffffffff8211156126a6576126a5612a63565b5b6126af82612aa6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061270a8261287e565b91506127158361287e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561274a576127496129a7565b5b828201905092915050565b60006127608261287e565b915061276b8361287e565b92508261277b5761277a6129d6565b5b828204905092915050565b60006127918261287e565b915061279c8361287e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127d5576127d46129a7565b5b828202905092915050565b60006127eb8261287e565b91506127f68361287e565b925082821015612809576128086129a7565b5b828203905092915050565b600061281f8261285e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156128b557808201518184015260208101905061289a565b838111156128c4576000848401525b50505050565b600060028204905060018216806128e257607f821691505b602082108114156128f6576128f5612a05565b5b50919050565b61290582612aa6565b810181811067ffffffffffffffff8211171561292457612923612a63565b5b80604052505050565b60006129388261287e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561296b5761296a6129a7565b5b600182019050919050565b60006129818261287e565b915061298c8361287e565b92508261299c5761299b6129d6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768206d696e7461626c652065646974696f6e7320210000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c756500000000000000000000000000600082015250565b612c0581612814565b8114612c1057600080fd5b50565b612c1c81612826565b8114612c2757600080fd5b50565b612c3381612832565b8114612c3e57600080fd5b50565b612c4a8161287e565b8114612c5557600080fd5b5056fea264697066735822122086d03f46dcc9a27555b475018281244e3349b4f2770d17de853b9796114e071964736f6c63430008070033

Deployed Bytecode Sourcemap

57096:3274:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24525:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57785:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31910:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31351:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57260:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21178:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57335:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35617:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60227:140;;;;;;;;;;;;;:::i;:::-;;58305:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38530:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58811:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59276:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57427:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26820:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22362:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;59045:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25603:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32468:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39313:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59486:733;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58051:83;;;;;;;;;;;;;:::i;:::-;;57298:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32933:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24525:639;24610:4;24949:10;24934:25;;:11;:25;;;;:102;;;;25026:10;25011:25;;:11;:25;;;;24934:102;:179;;;;25103:10;25088:25;;:11;:25;;;;24934:179;24914:199;;24525:639;;;:::o;57785:81::-;4511:13;:11;:13::i;:::-;57852:6:::1;57843;;:15;;;;;;;;;;;;;;;;;;57785:81:::0;:::o;25427:100::-;25481:13;25514:5;25507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25427:100;:::o;31910:218::-;31986:7;32011:16;32019:7;32011;:16::i;:::-;32006:64;;32036:34;;;;;;;;;;;;;;32006:64;32090:15;:24;32106:7;32090:24;;;;;;;;;;;:30;;;;;;;;;;;;32083:37;;31910:218;;;:::o;31351:400::-;31432:13;31448:16;31456:7;31448;:16::i;:::-;31432:32;;31504:5;31481:28;;:19;:17;:19::i;:::-;:28;;;31477:175;;31529:44;31546:5;31553:19;:17;:19::i;:::-;31529:16;:44::i;:::-;31524:128;;31601:35;;;;;;;;;;;;;;31524:128;31477:175;31697:2;31664:15;:24;31680:7;31664:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31735:7;31731:2;31715:28;;31724:5;31715:28;;;;;;;;;;;;31421:330;31351:400;;:::o;57260:31::-;;;;:::o;21178:323::-;21239:7;21467:15;:13;:15::i;:::-;21452:12;;21436:13;;:28;:46;21429:53;;21178:323;:::o;57335:33::-;;;;:::o;35617:2817::-;35751:27;35781;35800:7;35781:18;:27::i;:::-;35751:57;;35866:4;35825:45;;35841:19;35825:45;;;35821:86;;35879:28;;;;;;;;;;;;;;35821:86;35921:27;35950:23;35977:35;36004:7;35977:26;:35::i;:::-;35920:92;;;;36112:68;36137:15;36154:4;36160:19;:17;:19::i;:::-;36112:24;:68::i;:::-;36107:180;;36200:43;36217:4;36223:19;:17;:19::i;:::-;36200:16;:43::i;:::-;36195:92;;36252:35;;;;;;;;;;;;;;36195:92;36107:180;36318:1;36304:16;;:2;:16;;;36300:52;;;36329:23;;;;;;;;;;;;;;36300:52;36365:43;36387:4;36393:2;36397:7;36406:1;36365:21;:43::i;:::-;36501:15;36498:160;;;36641:1;36620:19;36613:30;36498:160;37038:18;:24;37057:4;37038:24;;;;;;;;;;;;;;;;37036:26;;;;;;;;;;;;37107:18;:22;37126:2;37107:22;;;;;;;;;;;;;;;;37105:24;;;;;;;;;;;37429:146;37466:2;37515:45;37530:4;37536:2;37540:19;37515:14;:45::i;:::-;17577:8;37487:73;37429:18;:146::i;:::-;37400:17;:26;37418:7;37400:26;;;;;;;;;;;:175;;;;37746:1;17577:8;37695:19;:47;:52;37691:627;;;37768:19;37800:1;37790:7;:11;37768:33;;37957:1;37923:17;:30;37941:11;37923:30;;;;;;;;;;;;:35;37919:384;;;38061:13;;38046:11;:28;38042:242;;38241:19;38208:17;:30;38226:11;38208:30;;;;;;;;;;;:52;;;;38042:242;37919:384;37749:569;37691:627;38365:7;38361:2;38346:27;;38355:4;38346:27;;;;;;;;;;;;38384:42;38405:4;38411:2;38415:7;38424:1;38384:20;:42::i;:::-;35740:2694;;;35617:2817;;;:::o;60227:140::-;4511:13;:11;:13::i;:::-;60275:15:::1;60293:21;60275:39;;60333:7;:5;:7::i;:::-;60325:25;;:34;60351:7;60325:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60264:103;60227:140::o:0;58305:399::-;58379:14;58396:13;:11;:13::i;:::-;58379:30;;58429:6;;;;;;;;;;;58428:7;58420:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;58515:9;;58500:11;58491:6;:20;;;;:::i;:::-;:33;;58469:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;58623:11;58616:4;;:18;;;;:::i;:::-;58603:9;:31;58595:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58669:27;58679:3;58684:11;58669:9;:27::i;:::-;58368:336;58305:399;;:::o;38530:185::-;38668:39;38685:4;38691:2;38695:7;38668:39;;;;;;;;;;;;:16;:39::i;:::-;38530:185;;;:::o;58811:88::-;4511:13;:11;:13::i;:::-;58883:8:::1;58876:4;:15;;;;58811:88:::0;:::o;59276:106::-;4511:13;:11;:13::i;:::-;59363:11:::1;59353:7;:21;;;;;;;;;;;;:::i;:::-;;59276:106:::0;:::o;57427:25::-;;;;;;;;;;;;;:::o;26820:152::-;26892:7;26935:27;26954:7;26935:18;:27::i;:::-;26912:52;;26820:152;;;:::o;22362:233::-;22434:7;22475:1;22458:19;;:5;:19;;;22454:60;;;22486:28;;;;;;;;;;;;;;22454:60;16521:13;22532:18;:25;22551:5;22532:25;;;;;;;;;;;;;;;;:55;22525:62;;22362:233;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;59045:124::-;4511:13;:11;:13::i;:::-;59144:17:::1;59128:13;:33;;;;59045:124:::0;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;25603:104::-;25659:13;25692:7;25685:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25603:104;:::o;32468:308::-;32579:19;:17;:19::i;:::-;32567:31;;:8;:31;;;32563:61;;;32607:17;;;;;;;;;;;;;;32563:61;32689:8;32637:18;:39;32656:19;:17;:19::i;:::-;32637:39;;;;;;;;;;;;;;;:49;32677:8;32637:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32749:8;32713:55;;32728:19;:17;:19::i;:::-;32713:55;;;32759:8;32713:55;;;;;;:::i;:::-;;;;;;;;32468:308;;:::o;39313:399::-;39480:31;39493:4;39499:2;39503:7;39480:12;:31::i;:::-;39544:1;39526:2;:14;;;:19;39522:183;;39565:56;39596:4;39602:2;39606:7;39615:5;39565:30;:56::i;:::-;39560:145;;39649:40;;;;;;;;;;;;;;39560:145;39522:183;39313:399;;;;:::o;59486:733::-;59604:13;59643:16;59651:7;59643;:16::i;:::-;59635:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;59749:1;59718:10;:19;59729:7;59718:19;;;;;;;;;;;59712:33;;;;;:::i;:::-;;;:38;59708:503;;;59767:28;59798:10;:8;:10::i;:::-;59767:41;;59878:1;59853:14;59847:28;:32;:320;;;;;;;;;;;;;;;;;59983:14;60028:25;60045:7;60028:16;:25::i;:::-;59936:182;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59847:320;59823:344;;;;;59708:503;60192:10;:19;60203:7;60192:19;;;;;;;;;;;60185:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59486:733;;;;:::o;58051:83::-;4511:13;:11;:13::i;:::-;58102:24:::1;58112:10;58124:1;58102:9;:24::i;:::-;58051:83::o:0;57298:30::-;;;;:::o;32933:164::-;33030:4;33054:18;:25;33073:5;33054:25;;;;;;;;;;;;;;;:35;33080:8;33054:35;;;;;;;;;;;;;;;;;;;;;;;;;33047:42;;32933:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;33355:282::-;33420:4;33476:7;33457:15;:13;:15::i;:::-;:26;;:66;;;;;33510:13;;33500:7;:23;33457:66;:153;;;;;33609:1;17297:8;33561:17;:26;33579:7;33561:26;;;;;;;;;;;;:44;:49;33457:153;33437:173;;33355:282;;;:::o;55121:105::-;55181:7;55208:10;55201:17;;55121:105;:::o;57461:101::-;57526:7;57553:1;57546:8;;57461:101;:::o;27975:1275::-;28042:7;28062:12;28077:7;28062:22;;28145:4;28126:15;:13;:15::i;:::-;:23;28122:1061;;28179:13;;28172:4;:20;28168:1015;;;28217:14;28234:17;:23;28252:4;28234:23;;;;;;;;;;;;28217:40;;28351:1;17297:8;28323:6;:24;:29;28319:845;;;28988:113;29005:1;28995:6;:11;28988:113;;;29048:17;:25;29066:6;;;;;;;29048:25;;;;;;;;;;;;29039:34;;28988:113;;;29134:6;29127:13;;;;;;28319:845;28194:989;28168:1015;28122:1061;29211:31;;;;;;;;;;;;;;27975:1275;;;;:::o;34518:479::-;34620:27;34649:23;34690:38;34731:15;:24;34747:7;34731:24;;;;;;;;;;;34690:65;;34902:18;34879:41;;34959:19;34953:26;34934:45;;34864:126;34518:479;;;:::o;33746:659::-;33895:11;34060:16;34053:5;34049:28;34040:37;;34220:16;34209:9;34205:32;34192:45;;34370:15;34359:9;34356:30;34348:5;34337:9;34334:20;34331:56;34321:66;;33746:659;;;;;:::o;40374:159::-;;;;;:::o;54430:311::-;54565:7;54585:16;17701:3;54611:19;:41;;54585:68;;17701:3;54679:31;54690:4;54696:2;54700:9;54679:10;:31::i;:::-;54671:40;;:62;;54664:69;;;54430:311;;;;;:::o;29798:450::-;29878:14;30046:16;30039:5;30035:28;30026:37;;30223:5;30209:11;30184:23;30180:41;30177:52;30170:5;30167:63;30157:73;;29798:450;;;;:::o;41198:158::-;;;;;:::o;48953:112::-;49030:27;49040:2;49044:8;49030:27;;;;;;;;;;;;:9;:27::i;:::-;48953:112;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;41796:716::-;41959:4;42005:2;41980:45;;;42026:19;:17;:19::i;:::-;42047:4;42053:7;42062:5;41980:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41976:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42280:1;42263:6;:13;:18;42259:235;;;42309:40;;;;;;;;;;;;;;42259:235;42452:6;42446:13;42437:6;42433:2;42429:15;42422:38;41976:529;42149:54;;;42139:64;;;:6;:64;;;;42132:71;;;41796:716;;;;;;:::o;57935:108::-;57995:13;58028:7;58021:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57935:108;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;54131:147::-;54268:6;54131:147;;;;;:::o;48180:689::-;48311:19;48317:2;48321:8;48311:5;:19::i;:::-;48390:1;48372:2;:14;;;:19;48368:483;;48412:11;48426:13;;48412:27;;48458:13;48480:8;48474:3;:14;48458:30;;48507:233;48538:62;48577:1;48581:2;48585:7;;;;;;48594:5;48538:30;:62::i;:::-;48533:167;;48636:40;;;;;;;;;;;;;;48533:167;48735:3;48727:5;:11;48507:233;;48822:3;48805:13;;:20;48801:34;;48827:8;;;48801:34;48393:458;;48368:483;48180:689;;;:::o;42974:2454::-;43047:20;43070:13;;43047:36;;43110:1;43098:8;:13;43094:44;;;43120:18;;;;;;;;;;;;;;43094:44;43151:61;43181:1;43185:2;43189:12;43203:8;43151:21;:61::i;:::-;43695:1;16659:2;43665:1;:26;;43664:32;43652:8;:45;43626:18;:22;43645:2;43626:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43974:139;44011:2;44065:33;44088:1;44092:2;44096:1;44065:14;:33::i;:::-;44032:30;44053:8;44032:20;:30::i;:::-;:66;43974:18;:139::i;:::-;43940:17;:31;43958:12;43940:31;;;;;;;;;;;:173;;;;44130:16;44161:11;44190:8;44175:12;:23;44161:37;;44445:16;44441:2;44437:25;44425:37;;44817:12;44777:8;44736:1;44674:25;44615:1;44554;44527:335;44942:1;44928:12;44924:20;44882:346;44983:3;44974:7;44971:16;44882:346;;45201:7;45191:8;45188:1;45161:25;45158:1;45155;45150:59;45036:1;45027:7;45023:15;45012:26;;44882:346;;;44886:77;45273:1;45261:8;:13;45257:45;;;45283:19;;;;;;;;;;;;;;45257:45;45335:3;45319:13;:19;;;;43400:1950;;45360:60;45389:1;45393:2;45397:12;45411:8;45360:20;:60::i;:::-;43036:2392;42974:2454;;:::o;30350:324::-;30420:14;30653:1;30643:8;30640:15;30614:24;30610:46;30600:56;;30350:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:400::-;9749:3;9770:84;9852:1;9847:3;9770:84;:::i;:::-;9763:91;;9863:93;9952:3;9863:93;:::i;:::-;9981:1;9976:3;9972:11;9965:18;;9589:400;;;:::o;9995:366::-;10137:3;10158:67;10222:2;10217:3;10158:67;:::i;:::-;10151:74;;10234:93;10323:3;10234:93;:::i;:::-;10352:2;10347:3;10343:12;10336:19;;9995:366;;;:::o;10367:::-;10509:3;10530:67;10594:2;10589:3;10530:67;:::i;:::-;10523:74;;10606:93;10695:3;10606:93;:::i;:::-;10724:2;10719:3;10715:12;10708:19;;10367:366;;;:::o;10739:::-;10881:3;10902:67;10966:2;10961:3;10902:67;:::i;:::-;10895:74;;10978:93;11067:3;10978:93;:::i;:::-;11096:2;11091:3;11087:12;11080:19;;10739:366;;;:::o;11111:::-;11253:3;11274:67;11338:2;11333:3;11274:67;:::i;:::-;11267:74;;11350:93;11439:3;11350:93;:::i;:::-;11468:2;11463:3;11459:12;11452:19;;11111:366;;;:::o;11483:118::-;11570:24;11588:5;11570:24;:::i;:::-;11565:3;11558:37;11483:118;;:::o;11607:701::-;11888:3;11910:95;12001:3;11992:6;11910:95;:::i;:::-;11903:102;;12022:95;12113:3;12104:6;12022:95;:::i;:::-;12015:102;;12134:148;12278:3;12134:148;:::i;:::-;12127:155;;12299:3;12292:10;;11607:701;;;;;:::o;12314:222::-;12407:4;12445:2;12434:9;12430:18;12422:26;;12458:71;12526:1;12515:9;12511:17;12502:6;12458:71;:::i;:::-;12314:222;;;;:::o;12542:640::-;12737:4;12775:3;12764:9;12760:19;12752:27;;12789:71;12857:1;12846:9;12842:17;12833:6;12789:71;:::i;:::-;12870:72;12938:2;12927:9;12923:18;12914:6;12870:72;:::i;:::-;12952;13020:2;13009:9;13005:18;12996:6;12952:72;:::i;:::-;13071:9;13065:4;13061:20;13056:2;13045:9;13041:18;13034:48;13099:76;13170:4;13161:6;13099:76;:::i;:::-;13091:84;;12542:640;;;;;;;:::o;13188:210::-;13275:4;13313:2;13302:9;13298:18;13290:26;;13326:65;13388:1;13377:9;13373:17;13364:6;13326:65;:::i;:::-;13188:210;;;;:::o;13404:313::-;13517:4;13555:2;13544:9;13540:18;13532:26;;13604:9;13598:4;13594:20;13590:1;13579:9;13575:17;13568:47;13632:78;13705:4;13696:6;13632:78;:::i;:::-;13624:86;;13404:313;;;;:::o;13723:419::-;13889:4;13927:2;13916:9;13912:18;13904:26;;13976:9;13970:4;13966:20;13962:1;13951:9;13947:17;13940:47;14004:131;14130:4;14004:131;:::i;:::-;13996:139;;13723:419;;;:::o;14148:::-;14314:4;14352:2;14341:9;14337:18;14329:26;;14401:9;14395:4;14391:20;14387:1;14376:9;14372:17;14365:47;14429:131;14555:4;14429:131;:::i;:::-;14421:139;;14148:419;;;:::o;14573:::-;14739:4;14777:2;14766:9;14762:18;14754:26;;14826:9;14820:4;14816:20;14812:1;14801:9;14797:17;14790:47;14854:131;14980:4;14854:131;:::i;:::-;14846:139;;14573:419;;;:::o;14998:::-;15164:4;15202:2;15191:9;15187:18;15179:26;;15251:9;15245:4;15241:20;15237:1;15226:9;15222:17;15215:47;15279:131;15405:4;15279:131;:::i;:::-;15271:139;;14998:419;;;:::o;15423:::-;15589:4;15627:2;15616:9;15612:18;15604:26;;15676:9;15670:4;15666:20;15662:1;15651:9;15647:17;15640:47;15704:131;15830:4;15704:131;:::i;:::-;15696:139;;15423:419;;;:::o;15848:::-;16014:4;16052:2;16041:9;16037:18;16029:26;;16101:9;16095:4;16091:20;16087:1;16076:9;16072:17;16065:47;16129:131;16255:4;16129:131;:::i;:::-;16121:139;;15848:419;;;:::o;16273:222::-;16366:4;16404:2;16393:9;16389:18;16381:26;;16417:71;16485:1;16474:9;16470:17;16461:6;16417:71;:::i;:::-;16273:222;;;;:::o;16501:129::-;16535:6;16562:20;;:::i;:::-;16552:30;;16591:33;16619:4;16611:6;16591:33;:::i;:::-;16501:129;;;:::o;16636:75::-;16669:6;16702:2;16696:9;16686:19;;16636:75;:::o;16717:307::-;16778:4;16868:18;16860:6;16857:30;16854:56;;;16890:18;;:::i;:::-;16854:56;16928:29;16950:6;16928:29;:::i;:::-;16920:37;;17012:4;17006;17002:15;16994:23;;16717:307;;;:::o;17030:308::-;17092:4;17182:18;17174:6;17171:30;17168:56;;;17204:18;;:::i;:::-;17168:56;17242:29;17264:6;17242:29;:::i;:::-;17234:37;;17326:4;17320;17316:15;17308:23;;17030:308;;;:::o;17344:98::-;17395:6;17429:5;17423:12;17413:22;;17344:98;;;:::o;17448:99::-;17500:6;17534:5;17528:12;17518:22;;17448:99;;;:::o;17553:168::-;17636:11;17670:6;17665:3;17658:19;17710:4;17705:3;17701:14;17686:29;;17553:168;;;;:::o;17727:169::-;17811:11;17845:6;17840:3;17833:19;17885:4;17880:3;17876:14;17861:29;;17727:169;;;;:::o;17902:148::-;18004:11;18041:3;18026:18;;17902:148;;;;:::o;18056:305::-;18096:3;18115:20;18133:1;18115:20;:::i;:::-;18110:25;;18149:20;18167:1;18149:20;:::i;:::-;18144:25;;18303:1;18235:66;18231:74;18228:1;18225:81;18222:107;;;18309:18;;:::i;:::-;18222:107;18353:1;18350;18346:9;18339:16;;18056:305;;;;:::o;18367:185::-;18407:1;18424:20;18442:1;18424:20;:::i;:::-;18419:25;;18458:20;18476:1;18458:20;:::i;:::-;18453:25;;18497:1;18487:35;;18502:18;;:::i;:::-;18487:35;18544:1;18541;18537:9;18532:14;;18367:185;;;;:::o;18558:348::-;18598:7;18621:20;18639:1;18621:20;:::i;:::-;18616:25;;18655:20;18673:1;18655:20;:::i;:::-;18650:25;;18843:1;18775:66;18771:74;18768:1;18765:81;18760:1;18753:9;18746:17;18742:105;18739:131;;;18850:18;;:::i;:::-;18739:131;18898:1;18895;18891:9;18880:20;;18558:348;;;;:::o;18912:191::-;18952:4;18972:20;18990:1;18972:20;:::i;:::-;18967:25;;19006:20;19024:1;19006:20;:::i;:::-;19001:25;;19045:1;19042;19039:8;19036:34;;;19050:18;;:::i;:::-;19036:34;19095:1;19092;19088:9;19080:17;;18912:191;;;;:::o;19109:96::-;19146:7;19175:24;19193:5;19175:24;:::i;:::-;19164:35;;19109:96;;;:::o;19211:90::-;19245:7;19288:5;19281:13;19274:21;19263:32;;19211:90;;;:::o;19307:149::-;19343:7;19383:66;19376:5;19372:78;19361:89;;19307:149;;;:::o;19462:126::-;19499:7;19539:42;19532:5;19528:54;19517:65;;19462:126;;;:::o;19594:77::-;19631:7;19660:5;19649:16;;19594:77;;;:::o;19677:154::-;19761:6;19756:3;19751;19738:30;19823:1;19814:6;19809:3;19805:16;19798:27;19677:154;;;:::o;19837:307::-;19905:1;19915:113;19929:6;19926:1;19923:13;19915:113;;;20014:1;20009:3;20005:11;19999:18;19995:1;19990:3;19986:11;19979:39;19951:2;19948:1;19944:10;19939:15;;19915:113;;;20046:6;20043:1;20040:13;20037:101;;;20126:1;20117:6;20112:3;20108:16;20101:27;20037:101;19886:258;19837:307;;;:::o;20150:320::-;20194:6;20231:1;20225:4;20221:12;20211:22;;20278:1;20272:4;20268:12;20299:18;20289:81;;20355:4;20347:6;20343:17;20333:27;;20289:81;20417:2;20409:6;20406:14;20386:18;20383:38;20380:84;;;20436:18;;:::i;:::-;20380:84;20201:269;20150:320;;;:::o;20476:281::-;20559:27;20581:4;20559:27;:::i;:::-;20551:6;20547:40;20689:6;20677:10;20674:22;20653:18;20641:10;20638:34;20635:62;20632:88;;;20700:18;;:::i;:::-;20632:88;20740:10;20736:2;20729:22;20519:238;20476:281;;:::o;20763:233::-;20802:3;20825:24;20843:5;20825:24;:::i;:::-;20816:33;;20871:66;20864:5;20861:77;20858:103;;;20941:18;;:::i;:::-;20858:103;20988:1;20981:5;20977:13;20970:20;;20763:233;;;:::o;21002:176::-;21034:1;21051:20;21069:1;21051:20;:::i;:::-;21046:25;;21085:20;21103:1;21085:20;:::i;:::-;21080:25;;21124:1;21114:35;;21129:18;;:::i;:::-;21114:35;21170:1;21167;21163:9;21158:14;;21002:176;;;;:::o;21184:180::-;21232:77;21229:1;21222:88;21329:4;21326:1;21319:15;21353:4;21350:1;21343:15;21370:180;21418:77;21415:1;21408:88;21515:4;21512:1;21505:15;21539:4;21536:1;21529:15;21556:180;21604:77;21601:1;21594:88;21701:4;21698:1;21691:15;21725:4;21722:1;21715:15;21742:180;21790:77;21787:1;21780:88;21887:4;21884:1;21877:15;21911:4;21908:1;21901:15;21928:180;21976:77;21973:1;21966:88;22073:4;22070:1;22063:15;22097:4;22094:1;22087:15;22114:117;22223:1;22220;22213:12;22237:117;22346:1;22343;22336:12;22360:117;22469:1;22466;22459:12;22483:117;22592:1;22589;22582:12;22606:102;22647:6;22698:2;22694:7;22689:2;22682:5;22678:14;22674:28;22664:38;;22606:102;;;:::o;22714:181::-;22854:33;22850:1;22842:6;22838:14;22831:57;22714:181;:::o;22901:225::-;23041:34;23037:1;23029:6;23025:14;23018:58;23110:8;23105:2;23097:6;23093:15;23086:33;22901:225;:::o;23132:155::-;23272:7;23268:1;23260:6;23256:14;23249:31;23132:155;:::o;23293:182::-;23433:34;23429:1;23421:6;23417:14;23410:58;23293:182;:::o;23481:180::-;23621:32;23617:1;23609:6;23605:14;23598:56;23481:180;:::o;23667:168::-;23807:20;23803:1;23795:6;23791:14;23784:44;23667:168;:::o;23841:169::-;23981:21;23977:1;23969:6;23965:14;23958:45;23841:169;:::o;24016:122::-;24089:24;24107:5;24089:24;:::i;:::-;24082:5;24079:35;24069:63;;24128:1;24125;24118:12;24069:63;24016:122;:::o;24144:116::-;24214:21;24229:5;24214:21;:::i;:::-;24207:5;24204:32;24194:60;;24250:1;24247;24240:12;24194:60;24144:116;:::o;24266:120::-;24338:23;24355:5;24338:23;:::i;:::-;24331:5;24328:34;24318:62;;24376:1;24373;24366:12;24318:62;24266:120;:::o;24392:122::-;24465:24;24483:5;24465:24;:::i;:::-;24458:5;24455:35;24445:63;;24504:1;24501;24494:12;24445:63;24392:122;:::o

Swarm Source

ipfs://86d03f46dcc9a27555b475018281244e3349b4f2770d17de853b9796114e0719
Loading...
Loading
Loading...
Loading
[ 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.