ETH Price: $3,418.18 (-0.60%)
Gas: 2 Gwei

Token

555 JPEGS By Cosmic (JPEGS)
 

Overview

Max Total Supply

555 JPEGS

Holders

265

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 JPEGS
0x801f15e1f76cbbfc6fa7fcb8790531b051c42a72
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:
JPEGSByCosmic

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/529cceeda9f5f8e28812c20042cc57626f784718/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

// File: @openzeppelin/contracts/utils/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: contracts/The Noan.sol


pragma solidity ^0.8.15;


contract JPEGSByCosmic is ERC721A, DefaultOperatorFilterer, Ownable {

    string public baseURI = "ipfs://QmPNL8QnLhqCofUky8rt4529fxq3b8DYtD4HH3eNbb5dpA/";  
    string public baseExtension = ".json";
    uint256 public price = 0.015 ether;
    uint256 public maxSupply = 555;
    uint256 public maxPerTransaction = 10; 

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }
    constructor () ERC721A("555 JPEGS By Cosmic", "JPEGS") {
    }

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

    // Mint
    function publicMint(uint256 amount) public payable callerIsUser{
        require(amount <= maxPerTransaction, "Over Max Per Transaction!");
        require(totalSupply() + amount <= maxSupply, "Sold Out!");
        uint256 mintAmount = amount;
        
        if (totalSupply() % 2 != 0 ) {
            mintAmount--;
        }

        require(msg.value > 0 || mintAmount == 0, "Insufficient Value!");
        if (msg.value >= price * mintAmount) {
            _safeMint(msg.sender, amount);
        }
    }    

    /////////////////////////////
    // CONTRACT MANAGEMENT 
    /////////////////////////////

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

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

    function withdraw() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
        
	}
    
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    } 

    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806036815260200162003aa960369139600990816200002e9190620006c7565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9081620000759190620006c7565b5066354a6ba7a18000600b5561022b600c55600a600d553480156200009957600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601381526020017f353535204a5045475320427920436f736d6963000000000000000000000000008152506040518060400160405280600581526020017f4a5045475300000000000000000000000000000000000000000000000000000081525081600290816200012e9190620006c7565b508060039081620001409190620006c7565b50620001516200037660201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200034e57801562000214576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001da929190620007f3565b600060405180830381600087803b158015620001f557600080fd5b505af11580156200020a573d6000803e3d6000fd5b505050506200034d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002ce576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000294929190620007f3565b600060405180830381600087803b158015620002af57600080fd5b505af1158015620002c4573d6000803e3d6000fd5b505050506200034c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000317919062000820565b600060405180830381600087803b1580156200033257600080fd5b505af115801562000347573d6000803e3d6000fd5b505050505b5b5b505062000370620003646200037f60201b60201c565b6200038760201b60201c565b6200083d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004cf57607f821691505b602082108103620004e557620004e462000487565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200054f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000510565b6200055b868362000510565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005a8620005a26200059c8462000573565b6200057d565b62000573565b9050919050565b6000819050919050565b620005c48362000587565b620005dc620005d382620005af565b8484546200051d565b825550505050565b600090565b620005f3620005e4565b62000600818484620005b9565b505050565b5b8181101562000628576200061c600082620005e9565b60018101905062000606565b5050565b601f82111562000677576200064181620004eb565b6200064c8462000500565b810160208510156200065c578190505b620006746200066b8562000500565b83018262000605565b50505b505050565b600082821c905092915050565b60006200069c600019846008026200067c565b1980831691505092915050565b6000620006b7838362000689565b9150826002028217905092915050565b620006d2826200044d565b67ffffffffffffffff811115620006ee57620006ed62000458565b5b620006fa8254620004b6565b620007078282856200062c565b600060209050601f8311600181146200073f57600084156200072a578287015190505b620007368582620006a9565b865550620007a6565b601f1984166200074f86620004eb565b60005b82811015620007795784890151825560018201915060208501945060208101905062000752565b8683101562000799578489015162000795601f89168262000689565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007db82620007ae565b9050919050565b620007ed81620007ce565b82525050565b60006040820190506200080a6000830185620007e2565b620008196020830184620007e2565b9392505050565b6000602082019050620008376000830184620007e2565b92915050565b61325c806200084d6000396000f3fe60806040526004361061019c5760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461054d578063d5abeb011461058a578063e985e9c5146105b5578063f2fde38b146105f25761019c565b8063a22cb465146104dd578063b88d4fde14610506578063c6682862146105225761019c565b80638da5cb5b116100c65780638da5cb5b1461043357806391b7f5ed1461045e57806395d89b4114610487578063a035b1fe146104b25761019c565b80636c0360eb146103b457806370a08231146103df578063715018a61461041c5761019c565b80632db115441161015957806342842e0e1161013357806342842e0e146103075780634b980d671461032357806355f804b31461034e5780636352211e146103775761019c565b80632db11544146102a95780633ccfd60b146102c557806341f43434146102dc5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026257806323b872dd1461028d575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612316565b61061b565b6040516101d5919061235e565b60405180910390f35b3480156101ea57600080fd5b506101f36106ad565b6040516102009190612409565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612461565b61073f565b60405161023d91906124cf565b60405180910390f35b610260600480360381019061025b9190612516565b6107be565b005b34801561026e57600080fd5b506102776108c8565b6040516102849190612565565b60405180910390f35b6102a760048036038101906102a29190612580565b6108df565b005b6102c360048036038101906102be9190612461565b610a2f565b005b3480156102d157600080fd5b506102da610bd9565b005b3480156102e857600080fd5b506102f1610c2a565b6040516102fe9190612632565b60405180910390f35b610321600480360381019061031c9190612580565b610c3c565b005b34801561032f57600080fd5b50610338610d8c565b6040516103459190612565565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612782565b610d92565b005b34801561038357600080fd5b5061039e60048036038101906103999190612461565b610dad565b6040516103ab91906124cf565b60405180910390f35b3480156103c057600080fd5b506103c9610dbf565b6040516103d69190612409565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906127cb565b610e4d565b6040516104139190612565565b60405180910390f35b34801561042857600080fd5b50610431610f05565b005b34801561043f57600080fd5b50610448610f19565b60405161045591906124cf565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612461565b610f43565b005b34801561049357600080fd5b5061049c610f55565b6040516104a99190612409565b60405180910390f35b3480156104be57600080fd5b506104c7610fe7565b6040516104d49190612565565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612824565b610fed565b005b610520600480360381019061051b9190612905565b6110f7565b005b34801561052e57600080fd5b5061053761124a565b6040516105449190612409565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612461565b6112d8565b6040516105819190612409565b60405180910390f35b34801561059657600080fd5b5061059f611376565b6040516105ac9190612565565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612988565b61137c565b6040516105e9919061235e565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906127cb565b611410565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106bc906129f7565b80601f01602080910402602001604051908101604052809291908181526020018280546106e8906129f7565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611493565b610780576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108b9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610836929190612a28565b602060405180830381865afa158015610853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108779190612a66565b6108b857806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108af91906124cf565b60405180910390fd5b5b6108c383836114f2565b505050565b60006108d2611636565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a1d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109515761094c84848461163f565b610a29565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161099a929190612a28565b602060405180830381865afa1580156109b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109db9190612a66565b610a1c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a1391906124cf565b60405180910390fd5b5b610a2884848461163f565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490612adf565b60405180910390fd5b600d54811115610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612b4b565b60405180910390fd5b600c5481610aee6108c8565b610af89190612b9a565b1115610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612c1a565b60405180910390fd5b600081905060006002610b4a6108c8565b610b549190612c69565b14610b68578080610b6490612c9a565b9150505b6000341180610b775750600081145b610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad90612d0f565b60405180910390fd5b80600b54610bc49190612d2f565b3410610bd557610bd43383611961565b5b5050565b610be161197f565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c27573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d7a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cae57610ca98484846119fd565b610d86565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cf7929190612a28565b602060405180830381865afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190612a66565b610d7957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d7091906124cf565b60405180910390fd5b5b610d858484846119fd565b5b50505050565b600d5481565b610d9a61197f565b8060099081610da99190612f13565b5050565b6000610db882611a1d565b9050919050565b60098054610dcc906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610df8906129f7565b8015610e455780601f10610e1a57610100808354040283529160200191610e45565b820191906000526020600020905b815481529060010190602001808311610e2857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f0d61197f565b610f176000611ae9565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f4b61197f565b80600b8190555050565b606060038054610f64906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f90906129f7565b8015610fdd5780601f10610fb257610100808354040283529160200191610fdd565b820191906000526020600020905b815481529060010190602001808311610fc057829003601f168201915b5050505050905090565b600b5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110e8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611065929190612a28565b602060405180830381865afa158015611082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a69190612a66565b6110e757806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110de91906124cf565b60405180910390fd5b5b6110f28383611baf565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611236573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361116a5761116585858585611cba565b611243565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111b3929190612a28565b602060405180830381865afa1580156111d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f49190612a66565b61123557336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161122c91906124cf565b60405180910390fd5b5b61124285858585611cba565b5b5050505050565b600a8054611257906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611283906129f7565b80156112d05780601f106112a5576101008083540402835291602001916112d0565b820191906000526020600020905b8154815290600101906020018083116112b357829003601f168201915b505050505081565b60606112e382611493565b611319576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611323611d2d565b90506000815103611343576040518060200160405280600081525061136e565b8061134d84611dbf565b60405160200161135e929190613021565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61141861197f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906130b7565b60405180910390fd5b61149081611ae9565b50565b60008161149e611636565b111580156114ad575060005482105b80156114eb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114fd82610dad565b90508073ffffffffffffffffffffffffffffffffffffffff1661151e611e0f565b73ffffffffffffffffffffffffffffffffffffffff16146115815761154a81611545611e0f565b61137c565b611580576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061164a82611a1d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116b1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116bd84611e17565b915091506116d381876116ce611e0f565b611e3e565b61171f576116e8866116e3611e0f565b61137c565b61171e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611785576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117928686866001611e82565b801561179d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061186b85611847888887611e88565b7c020000000000000000000000000000000000000000000000000000000017611eb0565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118f157600060018501905060006004600083815260200190815260200160002054036118ef5760005481146118ee578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119598686866001611edb565b505050505050565b61197b828260405180602001604052806000815250611ee1565b5050565b611987611f7e565b73ffffffffffffffffffffffffffffffffffffffff166119a5610f19565b73ffffffffffffffffffffffffffffffffffffffff16146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290613123565b60405180910390fd5b565b611a18838383604051806020016040528060008152506110f7565b505050565b60008082905080611a2c611636565b11611ab257600054811015611ab15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611aaf575b60008103611aa5576004600083600190039350838152602001908152602001600020549050611a7b565b8092505050611ae4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611bbc611e0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c69611e0f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cae919061235e565b60405180910390a35050565b611cc58484846108df565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d2757611cf084848484611f86565b611d26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611d3c906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611d68906129f7565b8015611db55780601f10611d8a57610100808354040283529160200191611db5565b820191906000526020600020905b815481529060010190602001808311611d9857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611dfa57600184039350600a81066030018453600a8104905080611dd8575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e9f8686846120d6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611eeb83836120df565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f7957600080549050600083820390505b611f2b6000868380600101945086611f86565b611f61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f18578160005414611f7657600080fd5b50505b505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fac611e0f565b8786866040518563ffffffff1660e01b8152600401611fce9493929190613198565b6020604051808303816000875af192505050801561200a57506040513d601f19601f8201168201806040525081019061200791906131f9565b60015b612083573d806000811461203a576040519150601f19603f3d011682016040523d82523d6000602084013e61203f565b606091505b50600081510361207b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361211f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61212c6000848385611e82565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121a3836121946000866000611e88565b61219d8561229a565b17611eb0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461224457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612209565b506000820361227f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122956000848385611edb565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122f3816122be565b81146122fe57600080fd5b50565b600081359050612310816122ea565b92915050565b60006020828403121561232c5761232b6122b4565b5b600061233a84828501612301565b91505092915050565b60008115159050919050565b61235881612343565b82525050565b6000602082019050612373600083018461234f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123b3578082015181840152602081019050612398565b60008484015250505050565b6000601f19601f8301169050919050565b60006123db82612379565b6123e58185612384565b93506123f5818560208601612395565b6123fe816123bf565b840191505092915050565b6000602082019050818103600083015261242381846123d0565b905092915050565b6000819050919050565b61243e8161242b565b811461244957600080fd5b50565b60008135905061245b81612435565b92915050565b600060208284031215612477576124766122b4565b5b60006124858482850161244c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124b98261248e565b9050919050565b6124c9816124ae565b82525050565b60006020820190506124e460008301846124c0565b92915050565b6124f3816124ae565b81146124fe57600080fd5b50565b600081359050612510816124ea565b92915050565b6000806040838503121561252d5761252c6122b4565b5b600061253b85828601612501565b925050602061254c8582860161244c565b9150509250929050565b61255f8161242b565b82525050565b600060208201905061257a6000830184612556565b92915050565b600080600060608486031215612599576125986122b4565b5b60006125a786828701612501565b93505060206125b886828701612501565b92505060406125c98682870161244c565b9150509250925092565b6000819050919050565b60006125f86125f36125ee8461248e565b6125d3565b61248e565b9050919050565b600061260a826125dd565b9050919050565b600061261c826125ff565b9050919050565b61262c81612611565b82525050565b60006020820190506126476000830184612623565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61268f826123bf565b810181811067ffffffffffffffff821117156126ae576126ad612657565b5b80604052505050565b60006126c16122aa565b90506126cd8282612686565b919050565b600067ffffffffffffffff8211156126ed576126ec612657565b5b6126f6826123bf565b9050602081019050919050565b82818337600083830152505050565b6000612725612720846126d2565b6126b7565b90508281526020810184848401111561274157612740612652565b5b61274c848285612703565b509392505050565b600082601f8301126127695761276861264d565b5b8135612779848260208601612712565b91505092915050565b600060208284031215612798576127976122b4565b5b600082013567ffffffffffffffff8111156127b6576127b56122b9565b5b6127c284828501612754565b91505092915050565b6000602082840312156127e1576127e06122b4565b5b60006127ef84828501612501565b91505092915050565b61280181612343565b811461280c57600080fd5b50565b60008135905061281e816127f8565b92915050565b6000806040838503121561283b5761283a6122b4565b5b600061284985828601612501565b925050602061285a8582860161280f565b9150509250929050565b600067ffffffffffffffff82111561287f5761287e612657565b5b612888826123bf565b9050602081019050919050565b60006128a86128a384612864565b6126b7565b9050828152602081018484840111156128c4576128c3612652565b5b6128cf848285612703565b509392505050565b600082601f8301126128ec576128eb61264d565b5b81356128fc848260208601612895565b91505092915050565b6000806000806080858703121561291f5761291e6122b4565b5b600061292d87828801612501565b945050602061293e87828801612501565b935050604061294f8782880161244c565b925050606085013567ffffffffffffffff8111156129705761296f6122b9565b5b61297c878288016128d7565b91505092959194509250565b6000806040838503121561299f5761299e6122b4565b5b60006129ad85828601612501565b92505060206129be85828601612501565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a0f57607f821691505b602082108103612a2257612a216129c8565b5b50919050565b6000604082019050612a3d60008301856124c0565b612a4a60208301846124c0565b9392505050565b600081519050612a60816127f8565b92915050565b600060208284031215612a7c57612a7b6122b4565b5b6000612a8a84828501612a51565b91505092915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612ac9601e83612384565b9150612ad482612a93565b602082019050919050565b60006020820190508181036000830152612af881612abc565b9050919050565b7f4f766572204d617820506572205472616e73616374696f6e2100000000000000600082015250565b6000612b35601983612384565b9150612b4082612aff565b602082019050919050565b60006020820190508181036000830152612b6481612b28565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ba58261242b565b9150612bb08361242b565b9250828201905080821115612bc857612bc7612b6b565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612c04600983612384565b9150612c0f82612bce565b602082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c748261242b565b9150612c7f8361242b565b925082612c8f57612c8e612c3a565b5b828206905092915050565b6000612ca58261242b565b915060008203612cb857612cb7612b6b565b5b600182039050919050565b7f496e73756666696369656e742056616c75652100000000000000000000000000600082015250565b6000612cf9601383612384565b9150612d0482612cc3565b602082019050919050565b60006020820190508181036000830152612d2881612cec565b9050919050565b6000612d3a8261242b565b9150612d458361242b565b9250828202612d538161242b565b91508282048414831517612d6a57612d69612b6b565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612dd37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d96565b612ddd8683612d96565b95508019841693508086168417925050509392505050565b6000612e10612e0b612e068461242b565b6125d3565b61242b565b9050919050565b6000819050919050565b612e2a83612df5565b612e3e612e3682612e17565b848454612da3565b825550505050565b600090565b612e53612e46565b612e5e818484612e21565b505050565b5b81811015612e8257612e77600082612e4b565b600181019050612e64565b5050565b601f821115612ec757612e9881612d71565b612ea184612d86565b81016020851015612eb0578190505b612ec4612ebc85612d86565b830182612e63565b50505b505050565b600082821c905092915050565b6000612eea60001984600802612ecc565b1980831691505092915050565b6000612f038383612ed9565b9150826002028217905092915050565b612f1c82612379565b67ffffffffffffffff811115612f3557612f34612657565b5b612f3f82546129f7565b612f4a828285612e86565b600060209050601f831160018114612f7d5760008415612f6b578287015190505b612f758582612ef7565b865550612fdd565b601f198416612f8b86612d71565b60005b82811015612fb357848901518255600182019150602085019450602081019050612f8e565b86831015612fd05784890151612fcc601f891682612ed9565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000612ffb82612379565b6130058185612fe5565b9350613015818560208601612395565b80840191505092915050565b600061302d8285612ff0565b91506130398284612ff0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130a1602683612384565b91506130ac82613045565b604082019050919050565b600060208201905081810360008301526130d081613094565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061310d602083612384565b9150613118826130d7565b602082019050919050565b6000602082019050818103600083015261313c81613100565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061316a82613143565b613174818561314e565b9350613184818560208601612395565b61318d816123bf565b840191505092915050565b60006080820190506131ad60008301876124c0565b6131ba60208301866124c0565b6131c76040830185612556565b81810360608301526131d9818461315f565b905095945050505050565b6000815190506131f3816122ea565b92915050565b60006020828403121561320f5761320e6122b4565b5b600061321d848285016131e4565b9150509291505056fea2646970667358221220673ef0d05925636a5eedaa00e8cde41edada99bdbd34cbd47f52aa62f882be8364736f6c63430008110033697066733a2f2f516d504e4c38516e4c6871436f66556b79387274343532396678713362384459744434484833654e6262356470412f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461054d578063d5abeb011461058a578063e985e9c5146105b5578063f2fde38b146105f25761019c565b8063a22cb465146104dd578063b88d4fde14610506578063c6682862146105225761019c565b80638da5cb5b116100c65780638da5cb5b1461043357806391b7f5ed1461045e57806395d89b4114610487578063a035b1fe146104b25761019c565b80636c0360eb146103b457806370a08231146103df578063715018a61461041c5761019c565b80632db115441161015957806342842e0e1161013357806342842e0e146103075780634b980d671461032357806355f804b31461034e5780636352211e146103775761019c565b80632db11544146102a95780633ccfd60b146102c557806341f43434146102dc5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026257806323b872dd1461028d575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612316565b61061b565b6040516101d5919061235e565b60405180910390f35b3480156101ea57600080fd5b506101f36106ad565b6040516102009190612409565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612461565b61073f565b60405161023d91906124cf565b60405180910390f35b610260600480360381019061025b9190612516565b6107be565b005b34801561026e57600080fd5b506102776108c8565b6040516102849190612565565b60405180910390f35b6102a760048036038101906102a29190612580565b6108df565b005b6102c360048036038101906102be9190612461565b610a2f565b005b3480156102d157600080fd5b506102da610bd9565b005b3480156102e857600080fd5b506102f1610c2a565b6040516102fe9190612632565b60405180910390f35b610321600480360381019061031c9190612580565b610c3c565b005b34801561032f57600080fd5b50610338610d8c565b6040516103459190612565565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612782565b610d92565b005b34801561038357600080fd5b5061039e60048036038101906103999190612461565b610dad565b6040516103ab91906124cf565b60405180910390f35b3480156103c057600080fd5b506103c9610dbf565b6040516103d69190612409565b60405180910390f35b3480156103eb57600080fd5b50610406600480360381019061040191906127cb565b610e4d565b6040516104139190612565565b60405180910390f35b34801561042857600080fd5b50610431610f05565b005b34801561043f57600080fd5b50610448610f19565b60405161045591906124cf565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612461565b610f43565b005b34801561049357600080fd5b5061049c610f55565b6040516104a99190612409565b60405180910390f35b3480156104be57600080fd5b506104c7610fe7565b6040516104d49190612565565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612824565b610fed565b005b610520600480360381019061051b9190612905565b6110f7565b005b34801561052e57600080fd5b5061053761124a565b6040516105449190612409565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612461565b6112d8565b6040516105819190612409565b60405180910390f35b34801561059657600080fd5b5061059f611376565b6040516105ac9190612565565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612988565b61137c565b6040516105e9919061235e565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906127cb565b611410565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106bc906129f7565b80601f01602080910402602001604051908101604052809291908181526020018280546106e8906129f7565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611493565b610780576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108b9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610836929190612a28565b602060405180830381865afa158015610853573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108779190612a66565b6108b857806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108af91906124cf565b60405180910390fd5b5b6108c383836114f2565b505050565b60006108d2611636565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a1d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109515761094c84848461163f565b610a29565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161099a929190612a28565b602060405180830381865afa1580156109b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109db9190612a66565b610a1c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a1391906124cf565b60405180910390fd5b5b610a2884848461163f565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490612adf565b60405180910390fd5b600d54811115610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612b4b565b60405180910390fd5b600c5481610aee6108c8565b610af89190612b9a565b1115610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612c1a565b60405180910390fd5b600081905060006002610b4a6108c8565b610b549190612c69565b14610b68578080610b6490612c9a565b9150505b6000341180610b775750600081145b610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad90612d0f565b60405180910390fd5b80600b54610bc49190612d2f565b3410610bd557610bd43383611961565b5b5050565b610be161197f565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c27573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d7a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cae57610ca98484846119fd565b610d86565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cf7929190612a28565b602060405180830381865afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190612a66565b610d7957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d7091906124cf565b60405180910390fd5b5b610d858484846119fd565b5b50505050565b600d5481565b610d9a61197f565b8060099081610da99190612f13565b5050565b6000610db882611a1d565b9050919050565b60098054610dcc906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610df8906129f7565b8015610e455780601f10610e1a57610100808354040283529160200191610e45565b820191906000526020600020905b815481529060010190602001808311610e2857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f0d61197f565b610f176000611ae9565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f4b61197f565b80600b8190555050565b606060038054610f64906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f90906129f7565b8015610fdd5780601f10610fb257610100808354040283529160200191610fdd565b820191906000526020600020905b815481529060010190602001808311610fc057829003601f168201915b5050505050905090565b600b5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110e8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611065929190612a28565b602060405180830381865afa158015611082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a69190612a66565b6110e757806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110de91906124cf565b60405180910390fd5b5b6110f28383611baf565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611236573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361116a5761116585858585611cba565b611243565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111b3929190612a28565b602060405180830381865afa1580156111d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f49190612a66565b61123557336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161122c91906124cf565b60405180910390fd5b5b61124285858585611cba565b5b5050505050565b600a8054611257906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611283906129f7565b80156112d05780601f106112a5576101008083540402835291602001916112d0565b820191906000526020600020905b8154815290600101906020018083116112b357829003601f168201915b505050505081565b60606112e382611493565b611319576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611323611d2d565b90506000815103611343576040518060200160405280600081525061136e565b8061134d84611dbf565b60405160200161135e929190613021565b6040516020818303038152906040525b915050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61141861197f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906130b7565b60405180910390fd5b61149081611ae9565b50565b60008161149e611636565b111580156114ad575060005482105b80156114eb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114fd82610dad565b90508073ffffffffffffffffffffffffffffffffffffffff1661151e611e0f565b73ffffffffffffffffffffffffffffffffffffffff16146115815761154a81611545611e0f565b61137c565b611580576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061164a82611a1d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116b1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116bd84611e17565b915091506116d381876116ce611e0f565b611e3e565b61171f576116e8866116e3611e0f565b61137c565b61171e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611785576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117928686866001611e82565b801561179d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061186b85611847888887611e88565b7c020000000000000000000000000000000000000000000000000000000017611eb0565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118f157600060018501905060006004600083815260200190815260200160002054036118ef5760005481146118ee578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119598686866001611edb565b505050505050565b61197b828260405180602001604052806000815250611ee1565b5050565b611987611f7e565b73ffffffffffffffffffffffffffffffffffffffff166119a5610f19565b73ffffffffffffffffffffffffffffffffffffffff16146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290613123565b60405180910390fd5b565b611a18838383604051806020016040528060008152506110f7565b505050565b60008082905080611a2c611636565b11611ab257600054811015611ab15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611aaf575b60008103611aa5576004600083600190039350838152602001908152602001600020549050611a7b565b8092505050611ae4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611bbc611e0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c69611e0f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cae919061235e565b60405180910390a35050565b611cc58484846108df565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d2757611cf084848484611f86565b611d26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611d3c906129f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611d68906129f7565b8015611db55780601f10611d8a57610100808354040283529160200191611db5565b820191906000526020600020905b815481529060010190602001808311611d9857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611dfa57600184039350600a81066030018453600a8104905080611dd8575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e9f8686846120d6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611eeb83836120df565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f7957600080549050600083820390505b611f2b6000868380600101945086611f86565b611f61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f18578160005414611f7657600080fd5b50505b505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fac611e0f565b8786866040518563ffffffff1660e01b8152600401611fce9493929190613198565b6020604051808303816000875af192505050801561200a57506040513d601f19601f8201168201806040525081019061200791906131f9565b60015b612083573d806000811461203a576040519150601f19603f3d011682016040523d82523d6000602084013e61203f565b606091505b50600081510361207b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361211f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61212c6000848385611e82565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121a3836121946000866000611e88565b61219d8561229a565b17611eb0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461224457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612209565b506000820361227f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122956000848385611edb565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122f3816122be565b81146122fe57600080fd5b50565b600081359050612310816122ea565b92915050565b60006020828403121561232c5761232b6122b4565b5b600061233a84828501612301565b91505092915050565b60008115159050919050565b61235881612343565b82525050565b6000602082019050612373600083018461234f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123b3578082015181840152602081019050612398565b60008484015250505050565b6000601f19601f8301169050919050565b60006123db82612379565b6123e58185612384565b93506123f5818560208601612395565b6123fe816123bf565b840191505092915050565b6000602082019050818103600083015261242381846123d0565b905092915050565b6000819050919050565b61243e8161242b565b811461244957600080fd5b50565b60008135905061245b81612435565b92915050565b600060208284031215612477576124766122b4565b5b60006124858482850161244c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124b98261248e565b9050919050565b6124c9816124ae565b82525050565b60006020820190506124e460008301846124c0565b92915050565b6124f3816124ae565b81146124fe57600080fd5b50565b600081359050612510816124ea565b92915050565b6000806040838503121561252d5761252c6122b4565b5b600061253b85828601612501565b925050602061254c8582860161244c565b9150509250929050565b61255f8161242b565b82525050565b600060208201905061257a6000830184612556565b92915050565b600080600060608486031215612599576125986122b4565b5b60006125a786828701612501565b93505060206125b886828701612501565b92505060406125c98682870161244c565b9150509250925092565b6000819050919050565b60006125f86125f36125ee8461248e565b6125d3565b61248e565b9050919050565b600061260a826125dd565b9050919050565b600061261c826125ff565b9050919050565b61262c81612611565b82525050565b60006020820190506126476000830184612623565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61268f826123bf565b810181811067ffffffffffffffff821117156126ae576126ad612657565b5b80604052505050565b60006126c16122aa565b90506126cd8282612686565b919050565b600067ffffffffffffffff8211156126ed576126ec612657565b5b6126f6826123bf565b9050602081019050919050565b82818337600083830152505050565b6000612725612720846126d2565b6126b7565b90508281526020810184848401111561274157612740612652565b5b61274c848285612703565b509392505050565b600082601f8301126127695761276861264d565b5b8135612779848260208601612712565b91505092915050565b600060208284031215612798576127976122b4565b5b600082013567ffffffffffffffff8111156127b6576127b56122b9565b5b6127c284828501612754565b91505092915050565b6000602082840312156127e1576127e06122b4565b5b60006127ef84828501612501565b91505092915050565b61280181612343565b811461280c57600080fd5b50565b60008135905061281e816127f8565b92915050565b6000806040838503121561283b5761283a6122b4565b5b600061284985828601612501565b925050602061285a8582860161280f565b9150509250929050565b600067ffffffffffffffff82111561287f5761287e612657565b5b612888826123bf565b9050602081019050919050565b60006128a86128a384612864565b6126b7565b9050828152602081018484840111156128c4576128c3612652565b5b6128cf848285612703565b509392505050565b600082601f8301126128ec576128eb61264d565b5b81356128fc848260208601612895565b91505092915050565b6000806000806080858703121561291f5761291e6122b4565b5b600061292d87828801612501565b945050602061293e87828801612501565b935050604061294f8782880161244c565b925050606085013567ffffffffffffffff8111156129705761296f6122b9565b5b61297c878288016128d7565b91505092959194509250565b6000806040838503121561299f5761299e6122b4565b5b60006129ad85828601612501565b92505060206129be85828601612501565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a0f57607f821691505b602082108103612a2257612a216129c8565b5b50919050565b6000604082019050612a3d60008301856124c0565b612a4a60208301846124c0565b9392505050565b600081519050612a60816127f8565b92915050565b600060208284031215612a7c57612a7b6122b4565b5b6000612a8a84828501612a51565b91505092915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612ac9601e83612384565b9150612ad482612a93565b602082019050919050565b60006020820190508181036000830152612af881612abc565b9050919050565b7f4f766572204d617820506572205472616e73616374696f6e2100000000000000600082015250565b6000612b35601983612384565b9150612b4082612aff565b602082019050919050565b60006020820190508181036000830152612b6481612b28565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ba58261242b565b9150612bb08361242b565b9250828201905080821115612bc857612bc7612b6b565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612c04600983612384565b9150612c0f82612bce565b602082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c748261242b565b9150612c7f8361242b565b925082612c8f57612c8e612c3a565b5b828206905092915050565b6000612ca58261242b565b915060008203612cb857612cb7612b6b565b5b600182039050919050565b7f496e73756666696369656e742056616c75652100000000000000000000000000600082015250565b6000612cf9601383612384565b9150612d0482612cc3565b602082019050919050565b60006020820190508181036000830152612d2881612cec565b9050919050565b6000612d3a8261242b565b9150612d458361242b565b9250828202612d538161242b565b91508282048414831517612d6a57612d69612b6b565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612dd37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d96565b612ddd8683612d96565b95508019841693508086168417925050509392505050565b6000612e10612e0b612e068461242b565b6125d3565b61242b565b9050919050565b6000819050919050565b612e2a83612df5565b612e3e612e3682612e17565b848454612da3565b825550505050565b600090565b612e53612e46565b612e5e818484612e21565b505050565b5b81811015612e8257612e77600082612e4b565b600181019050612e64565b5050565b601f821115612ec757612e9881612d71565b612ea184612d86565b81016020851015612eb0578190505b612ec4612ebc85612d86565b830182612e63565b50505b505050565b600082821c905092915050565b6000612eea60001984600802612ecc565b1980831691505092915050565b6000612f038383612ed9565b9150826002028217905092915050565b612f1c82612379565b67ffffffffffffffff811115612f3557612f34612657565b5b612f3f82546129f7565b612f4a828285612e86565b600060209050601f831160018114612f7d5760008415612f6b578287015190505b612f758582612ef7565b865550612fdd565b601f198416612f8b86612d71565b60005b82811015612fb357848901518255600182019150602085019450602081019050612f8e565b86831015612fd05784890151612fcc601f891682612ed9565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000612ffb82612379565b6130058185612fe5565b9350613015818560208601612395565b80840191505092915050565b600061302d8285612ff0565b91506130398284612ff0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130a1602683612384565b91506130ac82613045565b604082019050919050565b600060208201905081810360008301526130d081613094565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061310d602083612384565b9150613118826130d7565b602082019050919050565b6000602082019050818103600083015261313c81613100565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061316a82613143565b613174818561314e565b9350613184818560208601612395565b61318d816123bf565b840191505092915050565b60006080820190506131ad60008301876124c0565b6131ba60208301866124c0565b6131c76040830185612556565b81810360608301526131d9818461315f565b905095945050505050565b6000815190506131f3816122ea565b92915050565b60006020828403121561320f5761320e6122b4565b5b600061321d848285016131e4565b9150509291505056fea2646970667358221220673ef0d05925636a5eedaa00e8cde41edada99bdbd34cbd47f52aa62f882be8364736f6c63430008110033

Deployed Bytecode Sourcemap

64046:2806:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24409:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25311:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31802:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66065:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21062:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66238:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64701:521;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65547:108;;;;;;;;;;;;;:::i;:::-;;3191:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66417:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64334:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65667:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26704:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64123:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22246:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63162:103;;;;;;;;;;;;;:::i;:::-;;62514:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65335:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25487:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64256:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65881:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66604:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64212:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25697:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64297:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32751:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63420:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24409:639;24494:4;24833:10;24818:25;;:11;:25;;;;:102;;;;24910:10;24895:25;;:11;:25;;;;24818:102;:179;;;;24987:10;24972:25;;:11;:25;;;;24818:179;24798:199;;24409:639;;;:::o;25311:100::-;25365:13;25398:5;25391:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25311:100;:::o;31802:218::-;31878:7;31903:16;31911:7;31903;:16::i;:::-;31898:64;;31928:34;;;;;;;;;;;;;;31898:64;31982:15;:24;31998:7;31982:24;;;;;;;;;;;:30;;;;;;;;;;;;31975:37;;31802:218;;;:::o;66065:165::-;66169:8;5233:1;3291:42;5185:45;;;:49;5181:225;;;3291:42;5256;;;5307:4;5314:8;5256:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5251:144;;5370:8;5351:28;;;;;;;;;;;:::i;:::-;;;;;;;;5251:144;5181:225;66190:32:::1;66204:8;66214:7;66190:13;:32::i;:::-;66065:165:::0;;;:::o;21062:323::-;21123:7;21351:15;:13;:15::i;:::-;21336:12;;21320:13;;:28;:46;21313:53;;21062:323;:::o;66238:171::-;66347:4;4487:1;3291:42;4439:45;;;:49;4435:539;;;4728:10;4720:18;;:4;:18;;;4716:85;;66364:37:::1;66383:4;66389:2;66393:7;66364:18;:37::i;:::-;4779:7:::0;;4716:85;3291:42;4820;;;4871:4;4878:10;4820:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4815:148;;4936:10;4917:30;;;;;;;;;;;:::i;:::-;;;;;;;;4815:148;4435:539;66364:37:::1;66383:4;66389:2;66393:7;66364:18;:37::i;:::-;66238:171:::0;;;;;:::o;64701:521::-;64437:10;64424:23;;:9;:23;;;64416:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;64793:17:::1;;64783:6;:27;;64775:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;64885:9;;64875:6;64859:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;64851:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;64919:18;64940:6;64919:27;;64992:1;64987;64971:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:22;64967:68;;65011:12;;;;;:::i;:::-;;;;64967:68;65067:1;65055:9;:13;:32;;;;65086:1;65072:10;:15;65055:32;65047:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;65147:10;65139:5;;:18;;;;:::i;:::-;65126:9;:31;65122:93;;65174:29;65184:10;65196:6;65174:9;:29::i;:::-;65122:93;64764:458;64701:521:::0;:::o;65547:108::-;62400:13;:11;:13::i;:::-;65597:10:::1;65589:28;;:51;65618:21;65589:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65547:108::o:0;3191:143::-;3291:42;3191:143;:::o;66417:179::-;66530:4;4487:1;3291:42;4439:45;;;:49;4435:539;;;4728:10;4720:18;;:4;:18;;;4716:85;;66547:41:::1;66570:4;66576:2;66580:7;66547:22;:41::i;:::-;4779:7:::0;;4716:85;3291:42;4820;;;4871:4;4878:10;4820:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4815:148;;4936:10;4917:30;;;;;;;;;;;:::i;:::-;;;;;;;;4815:148;4435:539;66547:41:::1;66570:4;66576:2;66580:7;66547:22;:41::i;:::-;66417:179:::0;;;;;:::o;64334:37::-;;;;:::o;65667:100::-;62400:13;:11;:13::i;:::-;65751:8:::1;65741:7;:18;;;;;;:::i;:::-;;65667:100:::0;:::o;26704:152::-;26776:7;26819:27;26838:7;26819:18;:27::i;:::-;26796:52;;26704:152;;;:::o;64123:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22246:233::-;22318:7;22359:1;22342:19;;:5;:19;;;22338:60;;22370:28;;;;;;;;;;;;;;22338:60;16405:13;22416:18;:25;22435:5;22416:25;;;;;;;;;;;;;;;;:55;22409:62;;22246:233;;;:::o;63162:103::-;62400:13;:11;:13::i;:::-;63227:30:::1;63254:1;63227:18;:30::i;:::-;63162:103::o:0;62514:87::-;62560:7;62587:6;;;;;;;;;;;62580:13;;62514:87;:::o;65335:88::-;62400:13;:11;:13::i;:::-;65407:8:::1;65399:5;:16;;;;65335:88:::0;:::o;25487:104::-;25543:13;25576:7;25569:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25487:104;:::o;64256:34::-;;;;:::o;65881:176::-;65985:8;5233:1;3291:42;5185:45;;;:49;5181:225;;;3291:42;5256;;;5307:4;5314:8;5256:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5251:144;;5370:8;5351:28;;;;;;;;;;;:::i;:::-;;;;;;;;5251:144;5181:225;66006:43:::1;66030:8;66040;66006:23;:43::i;:::-;65881:176:::0;;;:::o;66604:245::-;66772:4;4487:1;3291:42;4439:45;;;:49;4435:539;;;4728:10;4720:18;;:4;:18;;;4716:85;;66794:47:::1;66817:4;66823:2;66827:7;66836:4;66794:22;:47::i;:::-;4779:7:::0;;4716:85;3291:42;4820;;;4871:4;4878:10;4820:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4815:148;;4936:10;4917:30;;;;;;;;;;;:::i;:::-;;;;;;;;4815:148;4435:539;66794:47:::1;66817:4;66823:2;66827:7;66836:4;66794:22;:47::i;:::-;66604:245:::0;;;;;;:::o;64212:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25697:318::-;25770:13;25801:16;25809:7;25801;:16::i;:::-;25796:59;;25826:29;;;;;;;;;;;;;;25796:59;25868:21;25892:10;:8;:10::i;:::-;25868:34;;25945:1;25926:7;25920:21;:26;:87;;;;;;;;;;;;;;;;;25973:7;25982:18;25992:7;25982:9;:18::i;:::-;25956:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25920:87;25913:94;;;25697:318;;;:::o;64297:30::-;;;;:::o;32751:164::-;32848:4;32872:18;:25;32891:5;32872:25;;;;;;;;;;;;;;;:35;32898:8;32872:35;;;;;;;;;;;;;;;;;;;;;;;;;32865:42;;32751:164;;;;:::o;63420:201::-;62400:13;:11;:13::i;:::-;63529:1:::1;63509:22;;:8;:22;;::::0;63501:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63585:28;63604:8;63585:18;:28::i;:::-;63420:201:::0;:::o;33173:282::-;33238:4;33294:7;33275:15;:13;:15::i;:::-;:26;;:66;;;;;33328:13;;33318:7;:23;33275:66;:153;;;;;33427:1;17181:8;33379:17;:26;33397:7;33379:26;;;;;;;;;;;;:44;:49;33275:153;33255:173;;33173:282;;;:::o;31235:408::-;31324:13;31340:16;31348:7;31340;:16::i;:::-;31324:32;;31396:5;31373:28;;:19;:17;:19::i;:::-;:28;;;31369:175;;31421:44;31438:5;31445:19;:17;:19::i;:::-;31421:16;:44::i;:::-;31416:128;;31493:35;;;;;;;;;;;;;;31416:128;31369:175;31589:2;31556:15;:24;31572:7;31556:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31627:7;31623:2;31607:28;;31616:5;31607:28;;;;;;;;;;;;31313:330;31235:408;;:::o;64579:101::-;64644:7;64671:1;64664:8;;64579:101;:::o;35441:2825::-;35583:27;35613;35632:7;35613:18;:27::i;:::-;35583:57;;35698:4;35657:45;;35673:19;35657:45;;;35653:86;;35711:28;;;;;;;;;;;;;;35653:86;35753:27;35782:23;35809:35;35836:7;35809:26;:35::i;:::-;35752:92;;;;35944:68;35969:15;35986:4;35992:19;:17;:19::i;:::-;35944:24;:68::i;:::-;35939:180;;36032:43;36049:4;36055:19;:17;:19::i;:::-;36032:16;:43::i;:::-;36027:92;;36084:35;;;;;;;;;;;;;;36027:92;35939:180;36150:1;36136:16;;:2;:16;;;36132:52;;36161:23;;;;;;;;;;;;;;36132:52;36197:43;36219:4;36225:2;36229:7;36238:1;36197:21;:43::i;:::-;36333:15;36330:160;;;36473:1;36452:19;36445:30;36330:160;36870:18;:24;36889:4;36870:24;;;;;;;;;;;;;;;;36868:26;;;;;;;;;;;;36939:18;:22;36958:2;36939:22;;;;;;;;;;;;;;;;36937:24;;;;;;;;;;;37261:146;37298:2;37347:45;37362:4;37368:2;37372:19;37347:14;:45::i;:::-;17461:8;37319:73;37261:18;:146::i;:::-;37232:17;:26;37250:7;37232:26;;;;;;;;;;;:175;;;;37578:1;17461:8;37527:19;:47;:52;37523:627;;37600:19;37632:1;37622:7;:11;37600:33;;37789:1;37755:17;:30;37773:11;37755:30;;;;;;;;;;;;:35;37751:384;;37893:13;;37878:11;:28;37874:242;;38073:19;38040:17;:30;38058:11;38040:30;;;;;;;;;;;:52;;;;37874:242;37751:384;37581:569;37523:627;38197:7;38193:2;38178:27;;38187:4;38178:27;;;;;;;;;;;;38216:42;38237:4;38243:2;38247:7;38256:1;38216:20;:42::i;:::-;35572:2694;;;35441:2825;;;:::o;49313:112::-;49390:27;49400:2;49404:8;49390:27;;;;;;;;;;;;:9;:27::i;:::-;49313:112;;:::o;62679:132::-;62754:12;:10;:12::i;:::-;62743:23;;:7;:5;:7::i;:::-;:23;;;62735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62679:132::o;38362:193::-;38508:39;38525:4;38531:2;38535:7;38508:39;;;;;;;;;;;;:16;:39::i;:::-;38362:193;;;:::o;27859:1275::-;27926:7;27946:12;27961:7;27946:22;;28029:4;28010:15;:13;:15::i;:::-;:23;28006:1061;;28063:13;;28056:4;:20;28052:1015;;;28101:14;28118:17;:23;28136:4;28118:23;;;;;;;;;;;;28101:40;;28235:1;17181:8;28207:6;:24;:29;28203:845;;28872:113;28889:1;28879:6;:11;28872:113;;28932:17;:25;28950:6;;;;;;;28932:25;;;;;;;;;;;;28923:34;;28872:113;;;29018:6;29011:13;;;;;;28203:845;28078:989;28052:1015;28006:1061;29095:31;;;;;;;;;;;;;;27859:1275;;;;:::o;63781:191::-;63855:16;63874:6;;;;;;;;;;;63855:25;;63900:8;63891:6;;:17;;;;;;;;;;;;;;;;;;63955:8;63924:40;;63945:8;63924:40;;;;;;;;;;;;63844:128;63781:191;:::o;32360:234::-;32507:8;32455:18;:39;32474:19;:17;:19::i;:::-;32455:39;;;;;;;;;;;;;;;:49;32495:8;32455:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32567:8;32531:55;;32546:19;:17;:19::i;:::-;32531:55;;;32577:8;32531:55;;;;;;:::i;:::-;;;;;;;;32360:234;;:::o;39153:407::-;39328:31;39341:4;39347:2;39351:7;39328:12;:31::i;:::-;39392:1;39374:2;:14;;;:19;39370:183;;39413:56;39444:4;39450:2;39454:7;39463:5;39413:30;:56::i;:::-;39408:145;;39497:40;;;;;;;;;;;;;;39408:145;39370:183;39153:407;;;;:::o;65431:108::-;65491:13;65524:7;65517:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65431:108;:::o;55688:1745::-;55753:17;56187:4;56180;56174:11;56170:22;56279:1;56273:4;56266:15;56354:4;56351:1;56347:12;56340:19;;56436:1;56431:3;56424:14;56540:3;56779:5;56761:428;56787:1;56761:428;;;56827:1;56822:3;56818:11;56811:18;;56998:2;56992:4;56988:13;56984:2;56980:22;56975:3;56967:36;57092:2;57086:4;57082:13;57074:21;;57159:4;56761:428;57149:25;56761:428;56765:21;57228:3;57223;57219:13;57343:4;57338:3;57334:14;57327:21;;57408:6;57403:3;57396:19;55792:1634;;;55688:1745;;;:::o;55481:105::-;55541:7;55568:10;55561:17;;55481:105;:::o;34336:485::-;34438:27;34467:23;34508:38;34549:15;:24;34565:7;34549:24;;;;;;;;;;;34508:65;;34726:18;34703:41;;34783:19;34777:26;34758:45;;34688:126;34336:485;;;:::o;33564:659::-;33713:11;33878:16;33871:5;33867:28;33858:37;;34038:16;34027:9;34023:32;34010:45;;34188:15;34177:9;34174:30;34166:5;34155:9;34152:20;34149:56;34139:66;;33564:659;;;;;:::o;40222:159::-;;;;;:::o;54790:311::-;54925:7;54945:16;17585:3;54971:19;:41;;54945:68;;17585:3;55039:31;55050:4;55056:2;55060:9;55039:10;:31::i;:::-;55031:40;;:62;;55024:69;;;54790:311;;;;;:::o;29682:450::-;29762:14;29930:16;29923:5;29919:28;29910:37;;30107:5;30093:11;30068:23;30064:41;30061:52;30054:5;30051:63;30041:73;;29682:450;;;;:::o;41046:158::-;;;;;:::o;48540:689::-;48671:19;48677:2;48681:8;48671:5;:19::i;:::-;48750:1;48732:2;:14;;;:19;48728:483;;48772:11;48786:13;;48772:27;;48818:13;48840:8;48834:3;:14;48818:30;;48867:233;48898:62;48937:1;48941:2;48945:7;;;;;;48954:5;48898:30;:62::i;:::-;48893:167;;48996:40;;;;;;;;;;;;;;48893:167;49095:3;49087:5;:11;48867:233;;49182:3;49165:13;;:20;49161:34;;49187:8;;;49161:34;48753:458;;48728:483;48540:689;;;:::o;61065:98::-;61118:7;61145:10;61138:17;;61065:98;:::o;41644:716::-;41807:4;41853:2;41828:45;;;41874:19;:17;:19::i;:::-;41895:4;41901:7;41910:5;41828:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41824:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42128:1;42111:6;:13;:18;42107:235;;42157:40;;;;;;;;;;;;;;42107:235;42300:6;42294:13;42285:6;42281:2;42277:15;42270:38;41824:529;41997:54;;;41987:64;;;:6;:64;;;;41980:71;;;41644:716;;;;;;:::o;54491:147::-;54628:6;54491:147;;;;;:::o;42822:2966::-;42895:20;42918:13;;42895:36;;42958:1;42946:8;:13;42942:44;;42968:18;;;;;;;;;;;;;;42942:44;42999:61;43029:1;43033:2;43037:12;43051:8;42999:21;:61::i;:::-;43543:1;16543:2;43513:1;:26;;43512:32;43500:8;:45;43474:18;:22;43493:2;43474:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43822:139;43859:2;43913:33;43936:1;43940:2;43944:1;43913:14;:33::i;:::-;43880:30;43901:8;43880:20;:30::i;:::-;:66;43822:18;:139::i;:::-;43788:17;:31;43806:12;43788:31;;;;;;;;;;;:173;;;;43978:16;44009:11;44038:8;44023:12;:23;44009:37;;44559:16;44555:2;44551:25;44539:37;;44931:12;44891:8;44850:1;44788:25;44729:1;44668;44641:335;45302:1;45288:12;45284:20;45242:346;45343:3;45334:7;45331:16;45242:346;;45561:7;45551:8;45548:1;45521:25;45518:1;45515;45510:59;45396:1;45387:7;45383:15;45372:26;;45242:346;;;45246:77;45633:1;45621:8;:13;45617:45;;45643:19;;;;;;;;;;;;;;45617:45;45695:3;45679:13;:19;;;;43248:2462;;45720:60;45749:1;45753:2;45757:12;45771:8;45720:20;:60::i;:::-;42884:2904;42822:2966;;:::o;30234:324::-;30304:14;30537:1;30527:8;30524:15;30498:24;30494:46;30484:56;;30234:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:332::-;13722:4;13760:2;13749:9;13745:18;13737:26;;13773:71;13841:1;13830:9;13826:17;13817:6;13773:71;:::i;:::-;13854:72;13922:2;13911:9;13907:18;13898:6;13854:72;:::i;:::-;13601:332;;;;;:::o;13939:137::-;13993:5;14024:6;14018:13;14009:22;;14040:30;14064:5;14040:30;:::i;:::-;13939:137;;;;:::o;14082:345::-;14149:6;14198:2;14186:9;14177:7;14173:23;14169:32;14166:119;;;14204:79;;:::i;:::-;14166:119;14324:1;14349:61;14402:7;14393:6;14382:9;14378:22;14349:61;:::i;:::-;14339:71;;14295:125;14082:345;;;;:::o;14433:180::-;14573:32;14569:1;14561:6;14557:14;14550:56;14433:180;:::o;14619:366::-;14761:3;14782:67;14846:2;14841:3;14782:67;:::i;:::-;14775:74;;14858:93;14947:3;14858:93;:::i;:::-;14976:2;14971:3;14967:12;14960:19;;14619:366;;;:::o;14991:419::-;15157:4;15195:2;15184:9;15180:18;15172:26;;15244:9;15238:4;15234:20;15230:1;15219:9;15215:17;15208:47;15272:131;15398:4;15272:131;:::i;:::-;15264:139;;14991:419;;;:::o;15416:175::-;15556:27;15552:1;15544:6;15540:14;15533:51;15416:175;:::o;15597:366::-;15739:3;15760:67;15824:2;15819:3;15760:67;:::i;:::-;15753:74;;15836:93;15925:3;15836:93;:::i;:::-;15954:2;15949:3;15945:12;15938:19;;15597:366;;;:::o;15969:419::-;16135:4;16173:2;16162:9;16158:18;16150:26;;16222:9;16216:4;16212:20;16208:1;16197:9;16193:17;16186:47;16250:131;16376:4;16250:131;:::i;:::-;16242:139;;15969:419;;;:::o;16394:180::-;16442:77;16439:1;16432:88;16539:4;16536:1;16529:15;16563:4;16560:1;16553:15;16580:191;16620:3;16639:20;16657:1;16639:20;:::i;:::-;16634:25;;16673:20;16691:1;16673:20;:::i;:::-;16668:25;;16716:1;16713;16709:9;16702:16;;16737:3;16734:1;16731:10;16728:36;;;16744:18;;:::i;:::-;16728:36;16580:191;;;;:::o;16777:159::-;16917:11;16913:1;16905:6;16901:14;16894:35;16777:159;:::o;16942:365::-;17084:3;17105:66;17169:1;17164:3;17105:66;:::i;:::-;17098:73;;17180:93;17269:3;17180:93;:::i;:::-;17298:2;17293:3;17289:12;17282:19;;16942:365;;;:::o;17313:419::-;17479:4;17517:2;17506:9;17502:18;17494:26;;17566:9;17560:4;17556:20;17552:1;17541:9;17537:17;17530:47;17594:131;17720:4;17594:131;:::i;:::-;17586:139;;17313:419;;;:::o;17738:180::-;17786:77;17783:1;17776:88;17883:4;17880:1;17873:15;17907:4;17904:1;17897:15;17924:176;17956:1;17973:20;17991:1;17973:20;:::i;:::-;17968:25;;18007:20;18025:1;18007:20;:::i;:::-;18002:25;;18046:1;18036:35;;18051:18;;:::i;:::-;18036:35;18092:1;18089;18085:9;18080:14;;17924:176;;;;:::o;18106:171::-;18145:3;18168:24;18186:5;18168:24;:::i;:::-;18159:33;;18214:4;18207:5;18204:15;18201:41;;18222:18;;:::i;:::-;18201:41;18269:1;18262:5;18258:13;18251:20;;18106:171;;;:::o;18283:169::-;18423:21;18419:1;18411:6;18407:14;18400:45;18283:169;:::o;18458:366::-;18600:3;18621:67;18685:2;18680:3;18621:67;:::i;:::-;18614:74;;18697:93;18786:3;18697:93;:::i;:::-;18815:2;18810:3;18806:12;18799:19;;18458:366;;;:::o;18830:419::-;18996:4;19034:2;19023:9;19019:18;19011:26;;19083:9;19077:4;19073:20;19069:1;19058:9;19054:17;19047:47;19111:131;19237:4;19111:131;:::i;:::-;19103:139;;18830:419;;;:::o;19255:410::-;19295:7;19318:20;19336:1;19318:20;:::i;:::-;19313:25;;19352:20;19370:1;19352:20;:::i;:::-;19347:25;;19407:1;19404;19400:9;19429:30;19447:11;19429:30;:::i;:::-;19418:41;;19608:1;19599:7;19595:15;19592:1;19589:22;19569:1;19562:9;19542:83;19519:139;;19638:18;;:::i;:::-;19519:139;19303:362;19255:410;;;;:::o;19671:141::-;19720:4;19743:3;19735:11;;19766:3;19763:1;19756:14;19800:4;19797:1;19787:18;19779:26;;19671:141;;;:::o;19818:93::-;19855:6;19902:2;19897;19890:5;19886:14;19882:23;19872:33;;19818:93;;;:::o;19917:107::-;19961:8;20011:5;20005:4;20001:16;19980:37;;19917:107;;;;:::o;20030:393::-;20099:6;20149:1;20137:10;20133:18;20172:97;20202:66;20191:9;20172:97;:::i;:::-;20290:39;20320:8;20309:9;20290:39;:::i;:::-;20278:51;;20362:4;20358:9;20351:5;20347:21;20338:30;;20411:4;20401:8;20397:19;20390:5;20387:30;20377:40;;20106:317;;20030:393;;;;;:::o;20429:142::-;20479:9;20512:53;20530:34;20539:24;20557:5;20539:24;:::i;:::-;20530:34;:::i;:::-;20512:53;:::i;:::-;20499:66;;20429:142;;;:::o;20577:75::-;20620:3;20641:5;20634:12;;20577:75;;;:::o;20658:269::-;20768:39;20799:7;20768:39;:::i;:::-;20829:91;20878:41;20902:16;20878:41;:::i;:::-;20870:6;20863:4;20857:11;20829:91;:::i;:::-;20823:4;20816:105;20734:193;20658:269;;;:::o;20933:73::-;20978:3;20933:73;:::o;21012:189::-;21089:32;;:::i;:::-;21130:65;21188:6;21180;21174:4;21130:65;:::i;:::-;21065:136;21012:189;;:::o;21207:186::-;21267:120;21284:3;21277:5;21274:14;21267:120;;;21338:39;21375:1;21368:5;21338:39;:::i;:::-;21311:1;21304:5;21300:13;21291:22;;21267:120;;;21207:186;;:::o;21399:543::-;21500:2;21495:3;21492:11;21489:446;;;21534:38;21566:5;21534:38;:::i;:::-;21618:29;21636:10;21618:29;:::i;:::-;21608:8;21604:44;21801:2;21789:10;21786:18;21783:49;;;21822:8;21807:23;;21783:49;21845:80;21901:22;21919:3;21901:22;:::i;:::-;21891:8;21887:37;21874:11;21845:80;:::i;:::-;21504:431;;21489:446;21399:543;;;:::o;21948:117::-;22002:8;22052:5;22046:4;22042:16;22021:37;;21948:117;;;;:::o;22071:169::-;22115:6;22148:51;22196:1;22192:6;22184:5;22181:1;22177:13;22148:51;:::i;:::-;22144:56;22229:4;22223;22219:15;22209:25;;22122:118;22071:169;;;;:::o;22245:295::-;22321:4;22467:29;22492:3;22486:4;22467:29;:::i;:::-;22459:37;;22529:3;22526:1;22522:11;22516:4;22513:21;22505:29;;22245:295;;;;:::o;22545:1395::-;22662:37;22695:3;22662:37;:::i;:::-;22764:18;22756:6;22753:30;22750:56;;;22786:18;;:::i;:::-;22750:56;22830:38;22862:4;22856:11;22830:38;:::i;:::-;22915:67;22975:6;22967;22961:4;22915:67;:::i;:::-;23009:1;23033:4;23020:17;;23065:2;23057:6;23054:14;23082:1;23077:618;;;;23739:1;23756:6;23753:77;;;23805:9;23800:3;23796:19;23790:26;23781:35;;23753:77;23856:67;23916:6;23909:5;23856:67;:::i;:::-;23850:4;23843:81;23712:222;23047:887;;23077:618;23129:4;23125:9;23117:6;23113:22;23163:37;23195:4;23163:37;:::i;:::-;23222:1;23236:208;23250:7;23247:1;23244:14;23236:208;;;23329:9;23324:3;23320:19;23314:26;23306:6;23299:42;23380:1;23372:6;23368:14;23358:24;;23427:2;23416:9;23412:18;23399:31;;23273:4;23270:1;23266:12;23261:17;;23236:208;;;23472:6;23463:7;23460:19;23457:179;;;23530:9;23525:3;23521:19;23515:26;23573:48;23615:4;23607:6;23603:17;23592:9;23573:48;:::i;:::-;23565:6;23558:64;23480:156;23457:179;23682:1;23678;23670:6;23666:14;23662:22;23656:4;23649:36;23084:611;;;23047:887;;22637:1303;;;22545:1395;;:::o;23946:148::-;24048:11;24085:3;24070:18;;23946:148;;;;:::o;24100:390::-;24206:3;24234:39;24267:5;24234:39;:::i;:::-;24289:89;24371:6;24366:3;24289:89;:::i;:::-;24282:96;;24387:65;24445:6;24440:3;24433:4;24426:5;24422:16;24387:65;:::i;:::-;24477:6;24472:3;24468:16;24461:23;;24210:280;24100:390;;;;:::o;24496:435::-;24676:3;24698:95;24789:3;24780:6;24698:95;:::i;:::-;24691:102;;24810:95;24901:3;24892:6;24810:95;:::i;:::-;24803:102;;24922:3;24915:10;;24496:435;;;;;:::o;24937:225::-;25077:34;25073:1;25065:6;25061:14;25054:58;25146:8;25141:2;25133:6;25129:15;25122:33;24937:225;:::o;25168:366::-;25310:3;25331:67;25395:2;25390:3;25331:67;:::i;:::-;25324:74;;25407:93;25496:3;25407:93;:::i;:::-;25525:2;25520:3;25516:12;25509:19;;25168:366;;;:::o;25540:419::-;25706:4;25744:2;25733:9;25729:18;25721:26;;25793:9;25787:4;25783:20;25779:1;25768:9;25764:17;25757:47;25821:131;25947:4;25821:131;:::i;:::-;25813:139;;25540:419;;;:::o;25965:182::-;26105:34;26101:1;26093:6;26089:14;26082:58;25965:182;:::o;26153:366::-;26295:3;26316:67;26380:2;26375:3;26316:67;:::i;:::-;26309:74;;26392:93;26481:3;26392:93;:::i;:::-;26510:2;26505:3;26501:12;26494:19;;26153:366;;;:::o;26525:419::-;26691:4;26729:2;26718:9;26714:18;26706:26;;26778:9;26772:4;26768:20;26764:1;26753:9;26749:17;26742:47;26806:131;26932:4;26806:131;:::i;:::-;26798:139;;26525:419;;;:::o;26950:98::-;27001:6;27035:5;27029:12;27019:22;;26950:98;;;:::o;27054:168::-;27137:11;27171:6;27166:3;27159:19;27211:4;27206:3;27202:14;27187:29;;27054:168;;;;:::o;27228:373::-;27314:3;27342:38;27374:5;27342:38;:::i;:::-;27396:70;27459:6;27454:3;27396:70;:::i;:::-;27389:77;;27475:65;27533:6;27528:3;27521:4;27514:5;27510:16;27475:65;:::i;:::-;27565:29;27587:6;27565:29;:::i;:::-;27560:3;27556:39;27549:46;;27318:283;27228:373;;;;:::o;27607:640::-;27802:4;27840:3;27829:9;27825:19;27817:27;;27854:71;27922:1;27911:9;27907:17;27898:6;27854:71;:::i;:::-;27935:72;28003:2;27992:9;27988:18;27979:6;27935:72;:::i;:::-;28017;28085:2;28074:9;28070:18;28061:6;28017:72;:::i;:::-;28136:9;28130:4;28126:20;28121:2;28110:9;28106:18;28099:48;28164:76;28235:4;28226:6;28164:76;:::i;:::-;28156:84;;27607:640;;;;;;;:::o;28253:141::-;28309:5;28340:6;28334:13;28325:22;;28356:32;28382:5;28356:32;:::i;:::-;28253:141;;;;:::o;28400:349::-;28469:6;28518:2;28506:9;28497:7;28493:23;28489:32;28486:119;;;28524:79;;:::i;:::-;28486:119;28644:1;28669:63;28724:7;28715:6;28704:9;28700:22;28669:63;:::i;:::-;28659:73;;28615:127;28400:349;;;;:::o

Swarm Source

ipfs://673ef0d05925636a5eedaa00e8cde41edada99bdbd34cbd47f52aa62f882be83
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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