ETH Price: $3,285.73 (+0.63%)
Gas: 33 Gwei

Token

Save the Stoics by Stoic DAO (StoicDAO)
 

Overview

Max Total Supply

1,444 StoicDAO

Holders

297

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 StoicDAO
0x6ee699fd21866a6947a440bedeb3b31c39dbd662
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:
StoicDAO

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.11.2 https://hardhat.org
// SPDX-License-Identifier: MIT
// File @openzeppelin/contracts/utils/[email protected]


// 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/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// File erc721a/contracts/[email protected]


// 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/[email protected]


// 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/utils/cryptography/[email protected]


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


// File @openzeppelin/contracts/interfaces/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}


// File @openzeppelin/contracts/utils/introspection/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File @openzeppelin/contracts/token/common/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}


// File contracts/StoicDAO.sol


pragma solidity 0.8.14;

contract StoicDAO is ERC721A, Ownable, ERC2981 {
  enum SaleConfig {
    PAUSED,
    FREESALE,
    PRESALE,
    PUBLIC
  }
  mapping(address=>bool) isBlacklisted;

  using Strings for uint256;
  string private uriPrefix = "";
  string private uriSuffix = ".json";
  string public hiddenMetadataUri;
  bool public revealed = false;

  event Blacklist(address indexed _address, bool blacklisted);

  /*///////////////////////////////////////////////////////////////
                        SET SALE PAUSED
    //////////////////////////////////////////////////////////////*/

  SaleConfig public saleConfig = SaleConfig.PAUSED;

  /*///////////////////////////////////////////////////////////////
                        PROJECT INFO
    //////////////////////////////////////////////////////////////*/

  uint256 private TOTAL_SUPPLY = 4444;
  uint256 private PRESALECOST = 0.1 ether;
  uint256 private PUBLICCOST = 0.1 ether;
  uint256 private MAX_MINT_LIMIT_PUBLIC = 10;
  uint256 private MAX_MINT_LIMIT_PRESALE = 5;
  uint256 private MAX_MINT_LIMIT_FREESALE = 1;
  uint256 private MAX_WALLET_LIMIT = 10;
  uint256 private MAX_WALLET_LIMIT_FREESALE = 1;

  /*///////////////////////////////////////////////////////////////
                        TRACKING
    //////////////////////////////////////////////////////////////*/

  bytes32 private merkleRoot;
  bytes32 private merkleRootFree;

  constructor () ERC721A ("Save the Stoics by Stoic DAO", "StoicDAO") {
    // 750 Bips = 7.5%
    setRoyalty(msg.sender, 750);
  }

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

   /*///////////////////////////////////////////////////////////////
                        MerkleRoots & Sale Functions
    //////////////////////////////////////////////////////////////*/

  function setSaleConfig(SaleConfig _status) external onlyOwner {
      saleConfig = _status;
  }

  function setMerkleRoots(bytes32 _merkleRoot) external onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setFreeMerkleRoots(bytes32 _merkleRootFree) external onlyOwner {
    merkleRootFree = _merkleRootFree;
  }

  /*///////////////////////////////////////////////////////////////
                    Modifiers And Check Functions
    //////////////////////////////////////////////////////////////*/

  function isFreesaleActive() public view returns(bool) {
      if(saleConfig == SaleConfig.FREESALE) return true;

      return false;
  }

  function isPresaleActive() public view returns(bool) {
      if(saleConfig == SaleConfig.PRESALE) return true;

      return false;
  }

  function isSaleActive() public view returns(bool) {
      if(saleConfig == SaleConfig.PUBLIC) return true;

      return false;
  }

  function cost() public view returns(uint256) {
      if(isPresaleActive()) return PRESALECOST;

      return PUBLICCOST;
  }

  function maxSupply() public view returns(uint256) {
      return TOTAL_SUPPLY;
  }

  function maxMintAmountPerTx() public view returns(uint256) {
      if(isPresaleActive()) {
          return MAX_MINT_LIMIT_PRESALE;
      }

      if(isFreesaleActive()) {
          return MAX_MINT_LIMIT_FREESALE;
      }

      return MAX_MINT_LIMIT_PUBLIC;
  }

  function maxWalletLimit() public view returns(uint256) {
    if(isFreesaleActive()) {
        return MAX_WALLET_LIMIT_FREESALE;
    }

    return MAX_WALLET_LIMIT;
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(saleConfig != SaleConfig.PAUSED, "The contract is paused!");
    require(_mintAmount <= maxMintAmountPerTx(), "Invalid mint amount!");
    require(totalSupply() + _mintAmount <= maxSupply(), "Max supply exceeded!");
    _;
  }

  modifier selfMintCompliance(uint256 _mintAmount) {
    require(totalSupply() + _mintAmount <= maxSupply(), "Max reserve supply exceeded!");
    _;
  }

  modifier isGreatorThenZero(uint256 _number) {
    require(_number > 0, "Number should be greater than zero!");
    _;
  }

  // ------ Prevention from minting off of Contract
  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  /// @inheritdoc IERC165
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId);
    }

  /*///////////////////////////////////////////////////////////////
                        MINT FUNCTIONS
    //////////////////////////////////////////////////////////////*/

  function whitelistFreeMint(uint256 _amount, bytes32[] memory _proof) external payable mintCompliance(_amount) callerIsUser {
    require(isFreesaleActive(), "Sale is not active yet");
    require(MerkleProof.verify(_proof, merkleRootFree, keccak256(abi.encodePacked(msg.sender))), "You are not a whitelist member.");
    require(numberMinted(msg.sender) + _amount <= maxWalletLimit(), "Max mint amount per wallet reached");
    _mint(msg.sender, _amount);
  }

  function whitelistMint(uint256 _amount, bytes32[] memory _proof) external payable mintCompliance(_amount) callerIsUser {
    require(isPresaleActive(), "Sale is not active yet");
    require(MerkleProof.verify(_proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "You are not a whitelist member.");
    require(msg.value >= cost() * _amount, "Insufficient funds!");
    require(numberMinted(msg.sender) + _amount <= maxWalletLimit(), "Max mint amount per wallet reached");
    _mint(msg.sender, _amount);
  }

  function mint(uint256 _amount) public payable mintCompliance(_amount) callerIsUser {
    require(isSaleActive(), "Sale is not Active" );
    require(msg.value >= cost() * _amount, "Insufficient funds!");
    require(numberMinted(msg.sender) + _amount <= maxWalletLimit(), "Max mint amount per wallet reached");
    _mint(msg.sender, _amount);
  }

  function mintForAddress(uint256 _amount, address _receiver) public mintCompliance(_amount) onlyOwner callerIsUser {
    _mint(_receiver, _amount);
  }

  function mintForSelf(uint256 _amount) public selfMintCompliance(_amount) onlyOwner callerIsUser {
    _mint(msg.sender, _amount);
  }

  function crossmint(address _to) public payable mintCompliance(1) {
        require(cost() == msg.value, "Insufficient funds!");
        require(numberMinted(_to) + 1 <= maxWalletLimit(), "Max mint amount per wallet reached");
        require(msg.sender == 0xdAb1a1854214684acE522439684a145E62505233,
            "This function is for Crossmint only."
        );
        _mint(_to, 1);
  }

  /*///////////////////////////////////////////////////////////////
                            METADATA URI
    //////////////////////////////////////////////////////////////*/
    
    function _baseURI() internal view virtual override
    returns (string memory)
  {
    return uriPrefix;
  }
	  
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  /*///////////////////////////////////////////////////////////////
                        Update Functions
    //////////////////////////////////////////////////////////////*/

	function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setMaxSupply(uint256 _state) public onlyOwner {
        TOTAL_SUPPLY = _state;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setPublicCost(uint256 _cost) public isGreatorThenZero(_cost) onlyOwner {
        PUBLICCOST = _cost;
    }

    function setPresaleCost(uint256 _cost) public isGreatorThenZero(_cost) onlyOwner {
        PRESALECOST = _cost;
    }

    function setPresaleMaxLimit(uint256 _state) public isGreatorThenZero(_state) onlyOwner {
      MAX_MINT_LIMIT_PRESALE = _state;
    }

    function setFreesaleMaxLimit(uint256 _state) public isGreatorThenZero(_state) onlyOwner {
      MAX_MINT_LIMIT_FREESALE = _state;
    }

    function setPublicSaleMaxLimit(uint256 _state) public isGreatorThenZero(_state) onlyOwner {
        MAX_MINT_LIMIT_PUBLIC = _state;
    }

    function setWalletFreeMaxLimit(uint256 _state) public isGreatorThenZero(_state) onlyOwner {
        MAX_WALLET_LIMIT_FREESALE = _state;
    }

    function setWalletMaxLimit(uint256 _state) public isGreatorThenZero(_state) onlyOwner {
        MAX_WALLET_LIMIT = _state;
    }

    function setRoyalty(address _receiver, uint96 _royaltyFeeInBips) public onlyOwner {
      _setDefaultRoyalty(_receiver, _royaltyFeeInBips);
    }

    function blackList(address _user) public onlyOwner {
        require(!isBlacklisted[_user], "user already blacklisted");
        isBlacklisted[_user] = true;
        emit Blacklist(_user, isBlacklisted[_user]);
    }
    
    function removeFromBlacklist(address _user) public onlyOwner {
        require(isBlacklisted[_user], "user not in blacklist");
        isBlacklisted[_user] = false;
        emit Blacklist(_user, isBlacklisted[_user]);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
      require(!isBlacklisted[msg.sender], "Sender is a blacklisted user");
      ERC721A.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        require(!isBlacklisted[msg.sender], "Sender is a blacklisted user");
        ERC721A.safeTransferFrom(from, to, tokenId, '');
    }

  /*///////////////////////////////////////////////////////////////
                        TRACKING NUMBER MINTED
    //////////////////////////////////////////////////////////////*/

    function numberMinted(address _owner) public view returns (uint256) {
    return _numberMinted(_owner);
  }

    function getOwnershipData(uint256 _tokenId) external view returns (TokenOwnership memory) {
        return _ownershipOf(_tokenId);
    }

  /*///////////////////////////////////////////////////////////////
                        WITHDRAW FUNDS
    //////////////////////////////////////////////////////////////*/
    
    function withdrawFunds() external onlyOwner {
        require(address(this).balance > 0, "Balance is 0");
        payable(owner()).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"Blacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"blackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"crossmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isFreesaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","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":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForSelf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":[],"name":"saleConfig","outputs":[{"internalType":"enum StoicDAO.SaleConfig","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootFree","type":"bytes32"}],"name":"setFreeMerkleRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setFreesaleMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setPresaleMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setPublicSaleMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeeInBips","type":"uint96"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum StoicDAO.SaleConfig","name":"_status","type":"uint8"}],"name":"setSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setWalletFreeMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setWalletMaxLimit","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":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistFreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600c9162000308565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600d9162000308565b50600f805461ffff1916905561115c60105567016345785d8a00006011819055601255600a60138190556005601455600160158190556016919091556017553480156200009657600080fd5b50604080518082018252601c81527f53617665207468652053746f6963732062792053746f69632044414f0000000060208083019182528351808501909452600884526753746f696344414f60c01b908401528151919291620000fc9160029162000308565b5080516200011290600390602084019062000308565b5050600160005550620001253362000139565b62000133336102ee6200018b565b620003ea565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000195620001a5565b620001a1828262000207565b5050565b6008546001600160a01b03163314620002055760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b565b6127106001600160601b0382161115620002775760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620001fc565b6001600160a01b038216620002cf5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001fc565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b8280546200031690620003ae565b90600052602060002090601f0160209004810192826200033a576000855562000385565b82601f106200035557805160ff191683800117855562000385565b8280016001018555821562000385579182015b828111156200038557825182559160200191906001019062000368565b506200039392915062000397565b5090565b5b8082111562000393576000815560010162000398565b600181811c90821680620003c357607f821691505b602082108103620003e457634e487b7160e01b600052602260045260246000fd5b50919050565b612f6180620003fa6000396000f3fe6080604052600436106103355760003560e01c806370a08231116101ab578063a0712d68116100f7578063d2cab05611610095578063e0a808531161006f578063e0a808531461093d578063e985e9c51461095d578063efbd73f4146109a6578063f2fde38b146109c657600080fd5b8063d2cab056146108f5578063d5abeb0114610908578063dc33e6811461091d57600080fd5b8063b50608f0116100d1578063b50608f014610882578063b88d4fde146108a2578063c49b3d54146108b5578063c87b56dd146108d557600080fd5b8063a0712d681461083a578063a22cb4651461084d578063a45ba8e71461086d57600080fd5b80638fdcf942116101645780639231ab2a1161013e5780639231ab2a1461078e57806394354fd0146107fb57806395d89b41146108105780639a56302c1461082557600080fd5b80638fdcf9421461072f57806390aa0b0f1461074f57806391afca551461077b57600080fd5b806370a082311461067c578063715018a61461069c5780637ec4a659146106b1578063811d2437146106d15780638da5cb5b146106f15780638f2fc60b1461070f57600080fd5b80633060cbb311610285578063518302271161022357806360d938dc116101fd57806360d938dc146106125780636352211e1461062757806366a88d96146106475780636f8b44b01461065c57600080fd5b806351830227146105c3578063537df3b6146105dd578063564566a8146105fd57600080fd5b806342842e0e1161025f57806342842e0e146105505780634838d1651461056357806348564594146105835780634fdd43cb146105a357600080fd5b80633060cbb3146104f057806340af91ec1461051057806341908b621461053057600080fd5b806322cf5917116102f257806325b568a3116102cc57806325b568a3146104515780632931ec16146104715780632a55205a146104915780632d0f14a5146104d057600080fd5b806322cf59171461041657806323b872dd1461042957806324600fc31461043c57600080fd5b806301ffc9a71461033a57806306fdde031461036f578063081812fc14610391578063095ea7b3146103c957806313faede6146103de57806318160ddd14610401575b600080fd5b34801561034657600080fd5b5061035a6103553660046126c4565b6109e6565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50610384610a06565b6040516103669190612739565b34801561039d57600080fd5b506103b16103ac36600461274c565b610a98565b6040516001600160a01b039091168152602001610366565b6103dc6103d7366004612781565b610adc565b005b3480156103ea57600080fd5b506103f3610b7c565b604051908152602001610366565b34801561040d57600080fd5b506103f3610b99565b6103dc6104243660046127f2565b610ba7565b6103dc6104373660046128a4565b610d8b565b34801561044857600080fd5b506103dc610df6565b34801561045d57600080fd5b506103dc61046c36600461274c565b610e79565b34801561047d57600080fd5b506103dc61048c36600461274c565b610ea8565b34801561049d57600080fd5b506104b16104ac3660046128e0565b610eb5565b604080516001600160a01b039093168352602083019190915201610366565b3480156104dc57600080fd5b506103dc6104eb36600461274c565b610f61565b3480156104fc57600080fd5b506103dc61050b36600461274c565b610f90565b34801561051c57600080fd5b506103dc61052b366004612902565b610fbf565b34801561053c57600080fd5b506103dc61054b36600461274c565b610ff0565b6103dc61055e3660046128a4565b610ffd565b34801561056f57600080fd5b506103dc61057e366004612923565b611078565b34801561058f57600080fd5b506103dc61059e36600461274c565b611147565b3480156105af57600080fd5b506103dc6105be366004612996565b611176565b3480156105cf57600080fd5b50600f5461035a9060ff1681565b3480156105e957600080fd5b506103dc6105f8366004612923565b611195565b34801561060957600080fd5b5061035a61124c565b34801561061e57600080fd5b5061035a61127e565b34801561063357600080fd5b506103b161064236600461274c565b611287565b34801561065357600080fd5b506103f3611292565b34801561066857600080fd5b506103dc61067736600461274c565b6112af565b34801561068857600080fd5b506103f3610697366004612923565b6112bc565b3480156106a857600080fd5b506103dc61130b565b3480156106bd57600080fd5b506103dc6106cc366004612996565b61131f565b3480156106dd57600080fd5b506103dc6106ec36600461274c565b61133a565b3480156106fd57600080fd5b506008546001600160a01b03166103b1565b34801561071b57600080fd5b506103dc61072a3660046129df565b611369565b34801561073b57600080fd5b506103dc61074a36600461274c565b61137b565b34801561075b57600080fd5b50600f5461076e90610100900460ff1681565b6040516103669190612a38565b6103dc610789366004612923565b6113aa565b34801561079a57600080fd5b506107ae6107a936600461274c565b61151c565b604051610366919081516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260609182015162ffffff169181019190915260800190565b34801561080757600080fd5b506103f3611549565b34801561081c57600080fd5b5061038461157a565b34801561083157600080fd5b5061035a611589565b6103dc61084836600461274c565b611592565b34801561085957600080fd5b506103dc610868366004612a70565b611707565b34801561087957600080fd5b50610384611773565b34801561088e57600080fd5b506103dc61089d36600461274c565b611801565b6103dc6108b0366004612aa3565b611830565b3480156108c157600080fd5b506103dc6108d036600461274c565b61187a565b3480156108e157600080fd5b506103846108f036600461274c565b61190c565b6103dc6109033660046127f2565b611a7b565b34801561091457600080fd5b506010546103f3565b34801561092957600080fd5b506103f3610938366004612923565b611c28565b34801561094957600080fd5b506103dc610958366004612b1f565b611c53565b34801561096957600080fd5b5061035a610978366004612b3a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109b257600080fd5b506103dc6109c1366004612b64565b611c6e565b3480156109d257600080fd5b506103dc6109e1366004612923565b611d36565b60006109f182611dac565b80610a005750610a0082611dfa565b92915050565b606060028054610a1590612b87565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4190612b87565b8015610a8e5780601f10610a6357610100808354040283529160200191610a8e565b820191906000526020600020905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b6000610aa382611e2f565b610ac0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ae782611287565b9050336001600160a01b03821614610b2057610b038133610978565b610b20576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b8661127e565b15610b92575060115490565b5060125490565b600154600054036000190190565b816000600f54610100900460ff166003811115610bc657610bc6612a22565b03610bec5760405162461bcd60e51b8152600401610be390612bc1565b60405180910390fd5b610bf4611549565b811115610c135760405162461bcd60e51b8152600401610be390612bf8565b60105481610c1f610b99565b610c299190612c3c565b1115610c475760405162461bcd60e51b8152600401610be390612c54565b323314610c665760405162461bcd60e51b8152600401610be390612c82565b610c6e611589565b610cb35760405162461bcd60e51b815260206004820152601660248201527514d85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b6044820152606401610be3565b6019546040516bffffffffffffffffffffffff193360601b166020820152610cf69184916034015b60405160208183030381529060405280519060200120611e64565b610d425760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f7420612077686974656c697374206d656d6265722e006044820152606401610be3565b610d4a611292565b83610d5433611c28565b610d5e9190612c3c565b1115610d7c5760405162461bcd60e51b8152600401610be390612cb9565b610d863384611e7a565b505050565b336000908152600b602052604090205460ff1615610deb5760405162461bcd60e51b815260206004820152601c60248201527f53656e646572206973206120626c61636b6c69737465642075736572000000006044820152606401610be3565b610d86838383611f78565b610dfe612110565b60004711610e3d5760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610be3565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e76573d6000803e3d6000fd5b50565b8060008111610e9a5760405162461bcd60e51b8152600401610be390612cfb565b610ea2612110565b50601355565b610eb0612110565b601855565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610f2a5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610f49906001600160601b031687612d3e565b610f539190612d73565b915196919550909350505050565b8060008111610f825760405162461bcd60e51b8152600401610be390612cfb565b610f8a612110565b50601455565b8060008111610fb15760405162461bcd60e51b8152600401610be390612cfb565b610fb9612110565b50601755565b610fc7612110565b600f805482919061ff001916610100836003811115610fe857610fe8612a22565b021790555050565b610ff8612110565b601955565b336000908152600b602052604090205460ff161561105d5760405162461bcd60e51b815260206004820152601c60248201527f53656e646572206973206120626c61636b6c69737465642075736572000000006044820152606401610be3565b610d8683838360405180602001604052806000815250611830565b611080612110565b6001600160a01b0381166000908152600b602052604090205460ff16156110e95760405162461bcd60e51b815260206004820152601860248201527f7573657220616c726561647920626c61636b6c697374656400000000000000006044820152606401610be3565b6001600160a01b0381166000818152600b6020908152604091829020805460ff1916600190811790915591519182527ff7e58a63a036e3a7ef7921f83b6ae47930cf5c293dd3bfe7a857c6863409046d91015b60405180910390a250565b80600081116111685760405162461bcd60e51b8152600401610be390612cfb565b611170612110565b50601655565b61117e612110565b805161119190600e906020840190612615565b5050565b61119d612110565b6001600160a01b0381166000908152600b602052604090205460ff166111fd5760405162461bcd60e51b81526020600482015260156024820152741d5cd95c881b9bdd081a5b88189b1858dadb1a5cdd605a1b6044820152606401610be3565b6001600160a01b0381166000818152600b60209081526040808320805460ff19169055519182527ff7e58a63a036e3a7ef7921f83b6ae47930cf5c293dd3bfe7a857c6863409046d910161113c565b600060035b600f54610100900460ff16600381111561126d5761126d612a22565b036112785750600190565b50600090565b60006002611251565b6000610a008261216a565b600061129c611589565b156112a8575060175490565b5060165490565b6112b7612110565b601055565b60006001600160a01b0382166112e5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b611313612110565b61131d60006121d9565b565b611327612110565b805161119190600c906020840190612615565b806000811161135b5760405162461bcd60e51b8152600401610be390612cfb565b611363612110565b50601255565b611371612110565b611191828261222b565b806000811161139c5760405162461bcd60e51b8152600401610be390612cfb565b6113a4612110565b50601155565b60016000600f54610100900460ff1660038111156113ca576113ca612a22565b036113e75760405162461bcd60e51b8152600401610be390612bc1565b6113ef611549565b81111561140e5760405162461bcd60e51b8152600401610be390612bf8565b6010548161141a610b99565b6114249190612c3c565b11156114425760405162461bcd60e51b8152600401610be390612c54565b3461144b610b7c565b146114685760405162461bcd60e51b8152600401610be390612d87565b611470611292565b61147983611c28565b611484906001612c3c565b11156114a25760405162461bcd60e51b8152600401610be390612cb9565b73dab1a1854214684ace522439684a145e6250523333146115115760405162461bcd60e51b8152602060048201526024808201527f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60448201526337363c9760e11b6064820152608401610be3565b611191826001611e7a565b604080516080810182526000808252602082018190529181018290526060810191909152610a0082612328565b600061155361127e565b1561155f575060145490565b611567611589565b15611573575060155490565b5060135490565b606060038054610a1590612b87565b60006001611251565b806000600f54610100900460ff1660038111156115b1576115b1612a22565b036115ce5760405162461bcd60e51b8152600401610be390612bc1565b6115d6611549565b8111156115f55760405162461bcd60e51b8152600401610be390612bf8565b60105481611601610b99565b61160b9190612c3c565b11156116295760405162461bcd60e51b8152600401610be390612c54565b3233146116485760405162461bcd60e51b8152600401610be390612c82565b61165061124c565b6116915760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610be3565b8161169a610b7c565b6116a49190612d3e565b3410156116c35760405162461bcd60e51b8152600401610be390612d87565b6116cb611292565b826116d533611c28565b6116df9190612c3c565b11156116fd5760405162461bcd60e51b8152600401610be390612cb9565b6111913383611e7a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e805461178090612b87565b80601f01602080910402602001604051908101604052809291908181526020018280546117ac90612b87565b80156117f95780601f106117ce576101008083540402835291602001916117f9565b820191906000526020600020905b8154815290600101906020018083116117dc57829003601f168201915b505050505081565b80600081116118225760405162461bcd60e51b8152600401610be390612cfb565b61182a612110565b50601555565b61183b848484610d8b565b6001600160a01b0383163b1561187457611857848484846123a0565b611874576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b8061188460105490565b8161188d610b99565b6118979190612c3c565b11156118e55760405162461bcd60e51b815260206004820152601c60248201527f4d6178207265736572766520737570706c7920657863656564656421000000006044820152606401610be3565b6118ed612110565b3233146116fd5760405162461bcd60e51b8152600401610be390612c82565b606061191782611e2f565b61197b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610be3565b600f5460ff161515600003611a1c57600e805461199790612b87565b80601f01602080910402602001604051908101604052809291908181526020018280546119c390612b87565b8015611a105780601f106119e557610100808354040283529160200191611a10565b820191906000526020600020905b8154815290600101906020018083116119f357829003601f168201915b50505050509050919050565b6000611a2661248c565b90506000815111611a465760405180602001604052806000815250611a74565b80611a508461249b565b600d604051602001611a6493929190612db4565b6040516020818303038152906040525b9392505050565b816000600f54610100900460ff166003811115611a9a57611a9a612a22565b03611ab75760405162461bcd60e51b8152600401610be390612bc1565b611abf611549565b811115611ade5760405162461bcd60e51b8152600401610be390612bf8565b60105481611aea610b99565b611af49190612c3c565b1115611b125760405162461bcd60e51b8152600401610be390612c54565b323314611b315760405162461bcd60e51b8152600401610be390612c82565b611b3961127e565b611b7e5760405162461bcd60e51b815260206004820152601660248201527514d85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b6044820152606401610be3565b6018546040516bffffffffffffffffffffffff193360601b166020820152611baa918491603401610cdb565b611bf65760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f7420612077686974656c697374206d656d6265722e006044820152606401610be3565b82611bff610b7c565b611c099190612d3e565b341015610d425760405162461bcd60e51b8152600401610be390612d87565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610a00565b611c5b612110565b600f805460ff1916911515919091179055565b816000600f54610100900460ff166003811115611c8d57611c8d612a22565b03611caa5760405162461bcd60e51b8152600401610be390612bc1565b611cb2611549565b811115611cd15760405162461bcd60e51b8152600401610be390612bf8565b60105481611cdd610b99565b611ce79190612c3c565b1115611d055760405162461bcd60e51b8152600401610be390612c54565b611d0d612110565b323314611d2c5760405162461bcd60e51b8152600401610be390612c82565b610d868284611e7a565b611d3e612110565b6001600160a01b038116611da35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610be3565b610e76816121d9565b60006301ffc9a760e01b6001600160e01b031983161480611ddd57506380ac58cd60e01b6001600160e01b03198316145b80610a005750506001600160e01b031916635b5e139f60e01b1490565b60006001600160e01b0319821663152a902d60e11b1480610a0057506301ffc9a760e01b6001600160e01b0319831614610a00565b600081600111158015611e43575060005482105b8015610a00575050600090815260046020526040902054600160e01b161590565b600082611e71858461259c565b14949350505050565b6000805490829003611e9f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611f4e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611f16565b5081600003611f6f57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000611f838261216a565b9050836001600160a01b0316816001600160a01b031614611fb65760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761200357611fe68633610978565b61200357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661202a57604051633a954ecd60e21b815260040160405180910390fd5b801561203557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036120c7576001840160008181526004602052604081205490036120c55760005481146120c55760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b0316331461131d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610be3565b600081806001116121c0576000548110156121c05760008181526004602052604081205490600160e01b821690036121be575b80600003611a7457506000190160008181526004602052604090205461219d565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b03821611156122995760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610be3565b6001600160a01b0382166122ef5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610be3565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b604080516080810182526000808252602082018190529181018290526060810191909152610a006123588361216a565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906123d5903390899088908890600401612e77565b6020604051808303816000875af1925050508015612410575060408051601f3d908101601f1916820190925261240d91810190612eb4565b60015b61246e573d80801561243e576040519150601f19603f3d011682016040523d82523d6000602084013e612443565b606091505b508051600003612466576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c8054610a1590612b87565b6060816000036124c25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124ec57806124d681612ed1565b91506124e59050600a83612d73565b91506124c6565b60008167ffffffffffffffff811115612507576125076127ab565b6040519080825280601f01601f191660200182016040528015612531576020820181803683370190505b5090505b841561248457612546600183612eea565b9150612553600a86612f01565b61255e906030612c3c565b60f81b81838151811061257357612573612f15565b60200101906001600160f81b031916908160001a905350612595600a86612d73565b9450612535565b600081815b84518110156125e1576125cd828683815181106125c0576125c0612f15565b60200260200101516125e9565b9150806125d981612ed1565b9150506125a1565b509392505050565b6000818310612605576000828152602084905260409020611a74565b5060009182526020526040902090565b82805461262190612b87565b90600052602060002090601f0160209004810192826126435760008555612689565b82601f1061265c57805160ff1916838001178555612689565b82800160010185558215612689579182015b8281111561268957825182559160200191906001019061266e565b50612695929150612699565b5090565b5b80821115612695576000815560010161269a565b6001600160e01b031981168114610e7657600080fd5b6000602082840312156126d657600080fd5b8135611a74816126ae565b60005b838110156126fc5781810151838201526020016126e4565b838111156118745750506000910152565b600081518084526127258160208601602086016126e1565b601f01601f19169290920160200192915050565b602081526000611a74602083018461270d565b60006020828403121561275e57600080fd5b5035919050565b80356001600160a01b038116811461277c57600080fd5b919050565b6000806040838503121561279457600080fd5b61279d83612765565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156127ea576127ea6127ab565b604052919050565b6000806040838503121561280557600080fd5b8235915060208084013567ffffffffffffffff8082111561282557600080fd5b818601915086601f83011261283957600080fd5b81358181111561284b5761284b6127ab565b8060051b915061285c8483016127c1565b818152918301840191848101908984111561287657600080fd5b938501935b838510156128945784358252938501939085019061287b565b8096505050505050509250929050565b6000806000606084860312156128b957600080fd5b6128c284612765565b92506128d060208501612765565b9150604084013590509250925092565b600080604083850312156128f357600080fd5b50508035926020909101359150565b60006020828403121561291457600080fd5b813560048110611a7457600080fd5b60006020828403121561293557600080fd5b611a7482612765565b600067ffffffffffffffff831115612958576129586127ab565b61296b601f8401601f19166020016127c1565b905082815283838301111561297f57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156129a857600080fd5b813567ffffffffffffffff8111156129bf57600080fd5b8201601f810184136129d057600080fd5b6124848482356020840161293e565b600080604083850312156129f257600080fd5b6129fb83612765565b915060208301356001600160601b0381168114612a1757600080fd5b809150509250929050565b634e487b7160e01b600052602160045260246000fd5b6020810160048310612a5a57634e487b7160e01b600052602160045260246000fd5b91905290565b8035801515811461277c57600080fd5b60008060408385031215612a8357600080fd5b612a8c83612765565b9150612a9a60208401612a60565b90509250929050565b60008060008060808587031215612ab957600080fd5b612ac285612765565b9350612ad060208601612765565b925060408501359150606085013567ffffffffffffffff811115612af357600080fd5b8501601f81018713612b0457600080fd5b612b138782356020840161293e565b91505092959194509250565b600060208284031215612b3157600080fd5b611a7482612a60565b60008060408385031215612b4d57600080fd5b612b5683612765565b9150612a9a60208401612765565b60008060408385031215612b7757600080fd5b82359150612a9a60208401612765565b600181811c90821680612b9b57607f821691505b602082108103612bbb57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612c4f57612c4f612c26565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b60208082526023908201527f4e756d6265722073686f756c642062652067726561746572207468616e207a65604082015262726f2160e81b606082015260800190565b6000816000190483118215151615612d5857612d58612c26565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612d8257612d82612d5d565b500490565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600084516020612dc78285838a016126e1565b855191840191612dda8184848a016126e1565b8554920191600090600181811c9080831680612df757607f831692505b8583108103612e1457634e487b7160e01b85526022600452602485fd5b808015612e285760018114612e3957612e66565b60ff19851688528388019550612e66565b60008b81526020902060005b85811015612e5e5781548a820152908401908801612e45565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612eaa9083018461270d565b9695505050505050565b600060208284031215612ec657600080fd5b8151611a74816126ae565b600060018201612ee357612ee3612c26565b5060010190565b600082821015612efc57612efc612c26565b500390565b600082612f1057612f10612d5d565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122098876894ec8cb122d4a5f05477ed5385eebdbf7f100192c0de00f7446155643664736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106103355760003560e01c806370a08231116101ab578063a0712d68116100f7578063d2cab05611610095578063e0a808531161006f578063e0a808531461093d578063e985e9c51461095d578063efbd73f4146109a6578063f2fde38b146109c657600080fd5b8063d2cab056146108f5578063d5abeb0114610908578063dc33e6811461091d57600080fd5b8063b50608f0116100d1578063b50608f014610882578063b88d4fde146108a2578063c49b3d54146108b5578063c87b56dd146108d557600080fd5b8063a0712d681461083a578063a22cb4651461084d578063a45ba8e71461086d57600080fd5b80638fdcf942116101645780639231ab2a1161013e5780639231ab2a1461078e57806394354fd0146107fb57806395d89b41146108105780639a56302c1461082557600080fd5b80638fdcf9421461072f57806390aa0b0f1461074f57806391afca551461077b57600080fd5b806370a082311461067c578063715018a61461069c5780637ec4a659146106b1578063811d2437146106d15780638da5cb5b146106f15780638f2fc60b1461070f57600080fd5b80633060cbb311610285578063518302271161022357806360d938dc116101fd57806360d938dc146106125780636352211e1461062757806366a88d96146106475780636f8b44b01461065c57600080fd5b806351830227146105c3578063537df3b6146105dd578063564566a8146105fd57600080fd5b806342842e0e1161025f57806342842e0e146105505780634838d1651461056357806348564594146105835780634fdd43cb146105a357600080fd5b80633060cbb3146104f057806340af91ec1461051057806341908b621461053057600080fd5b806322cf5917116102f257806325b568a3116102cc57806325b568a3146104515780632931ec16146104715780632a55205a146104915780632d0f14a5146104d057600080fd5b806322cf59171461041657806323b872dd1461042957806324600fc31461043c57600080fd5b806301ffc9a71461033a57806306fdde031461036f578063081812fc14610391578063095ea7b3146103c957806313faede6146103de57806318160ddd14610401575b600080fd5b34801561034657600080fd5b5061035a6103553660046126c4565b6109e6565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50610384610a06565b6040516103669190612739565b34801561039d57600080fd5b506103b16103ac36600461274c565b610a98565b6040516001600160a01b039091168152602001610366565b6103dc6103d7366004612781565b610adc565b005b3480156103ea57600080fd5b506103f3610b7c565b604051908152602001610366565b34801561040d57600080fd5b506103f3610b99565b6103dc6104243660046127f2565b610ba7565b6103dc6104373660046128a4565b610d8b565b34801561044857600080fd5b506103dc610df6565b34801561045d57600080fd5b506103dc61046c36600461274c565b610e79565b34801561047d57600080fd5b506103dc61048c36600461274c565b610ea8565b34801561049d57600080fd5b506104b16104ac3660046128e0565b610eb5565b604080516001600160a01b039093168352602083019190915201610366565b3480156104dc57600080fd5b506103dc6104eb36600461274c565b610f61565b3480156104fc57600080fd5b506103dc61050b36600461274c565b610f90565b34801561051c57600080fd5b506103dc61052b366004612902565b610fbf565b34801561053c57600080fd5b506103dc61054b36600461274c565b610ff0565b6103dc61055e3660046128a4565b610ffd565b34801561056f57600080fd5b506103dc61057e366004612923565b611078565b34801561058f57600080fd5b506103dc61059e36600461274c565b611147565b3480156105af57600080fd5b506103dc6105be366004612996565b611176565b3480156105cf57600080fd5b50600f5461035a9060ff1681565b3480156105e957600080fd5b506103dc6105f8366004612923565b611195565b34801561060957600080fd5b5061035a61124c565b34801561061e57600080fd5b5061035a61127e565b34801561063357600080fd5b506103b161064236600461274c565b611287565b34801561065357600080fd5b506103f3611292565b34801561066857600080fd5b506103dc61067736600461274c565b6112af565b34801561068857600080fd5b506103f3610697366004612923565b6112bc565b3480156106a857600080fd5b506103dc61130b565b3480156106bd57600080fd5b506103dc6106cc366004612996565b61131f565b3480156106dd57600080fd5b506103dc6106ec36600461274c565b61133a565b3480156106fd57600080fd5b506008546001600160a01b03166103b1565b34801561071b57600080fd5b506103dc61072a3660046129df565b611369565b34801561073b57600080fd5b506103dc61074a36600461274c565b61137b565b34801561075b57600080fd5b50600f5461076e90610100900460ff1681565b6040516103669190612a38565b6103dc610789366004612923565b6113aa565b34801561079a57600080fd5b506107ae6107a936600461274c565b61151c565b604051610366919081516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260609182015162ffffff169181019190915260800190565b34801561080757600080fd5b506103f3611549565b34801561081c57600080fd5b5061038461157a565b34801561083157600080fd5b5061035a611589565b6103dc61084836600461274c565b611592565b34801561085957600080fd5b506103dc610868366004612a70565b611707565b34801561087957600080fd5b50610384611773565b34801561088e57600080fd5b506103dc61089d36600461274c565b611801565b6103dc6108b0366004612aa3565b611830565b3480156108c157600080fd5b506103dc6108d036600461274c565b61187a565b3480156108e157600080fd5b506103846108f036600461274c565b61190c565b6103dc6109033660046127f2565b611a7b565b34801561091457600080fd5b506010546103f3565b34801561092957600080fd5b506103f3610938366004612923565b611c28565b34801561094957600080fd5b506103dc610958366004612b1f565b611c53565b34801561096957600080fd5b5061035a610978366004612b3a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109b257600080fd5b506103dc6109c1366004612b64565b611c6e565b3480156109d257600080fd5b506103dc6109e1366004612923565b611d36565b60006109f182611dac565b80610a005750610a0082611dfa565b92915050565b606060028054610a1590612b87565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4190612b87565b8015610a8e5780601f10610a6357610100808354040283529160200191610a8e565b820191906000526020600020905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b6000610aa382611e2f565b610ac0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ae782611287565b9050336001600160a01b03821614610b2057610b038133610978565b610b20576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b8661127e565b15610b92575060115490565b5060125490565b600154600054036000190190565b816000600f54610100900460ff166003811115610bc657610bc6612a22565b03610bec5760405162461bcd60e51b8152600401610be390612bc1565b60405180910390fd5b610bf4611549565b811115610c135760405162461bcd60e51b8152600401610be390612bf8565b60105481610c1f610b99565b610c299190612c3c565b1115610c475760405162461bcd60e51b8152600401610be390612c54565b323314610c665760405162461bcd60e51b8152600401610be390612c82565b610c6e611589565b610cb35760405162461bcd60e51b815260206004820152601660248201527514d85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b6044820152606401610be3565b6019546040516bffffffffffffffffffffffff193360601b166020820152610cf69184916034015b60405160208183030381529060405280519060200120611e64565b610d425760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f7420612077686974656c697374206d656d6265722e006044820152606401610be3565b610d4a611292565b83610d5433611c28565b610d5e9190612c3c565b1115610d7c5760405162461bcd60e51b8152600401610be390612cb9565b610d863384611e7a565b505050565b336000908152600b602052604090205460ff1615610deb5760405162461bcd60e51b815260206004820152601c60248201527f53656e646572206973206120626c61636b6c69737465642075736572000000006044820152606401610be3565b610d86838383611f78565b610dfe612110565b60004711610e3d5760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610be3565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e76573d6000803e3d6000fd5b50565b8060008111610e9a5760405162461bcd60e51b8152600401610be390612cfb565b610ea2612110565b50601355565b610eb0612110565b601855565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610f2a5750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610f49906001600160601b031687612d3e565b610f539190612d73565b915196919550909350505050565b8060008111610f825760405162461bcd60e51b8152600401610be390612cfb565b610f8a612110565b50601455565b8060008111610fb15760405162461bcd60e51b8152600401610be390612cfb565b610fb9612110565b50601755565b610fc7612110565b600f805482919061ff001916610100836003811115610fe857610fe8612a22565b021790555050565b610ff8612110565b601955565b336000908152600b602052604090205460ff161561105d5760405162461bcd60e51b815260206004820152601c60248201527f53656e646572206973206120626c61636b6c69737465642075736572000000006044820152606401610be3565b610d8683838360405180602001604052806000815250611830565b611080612110565b6001600160a01b0381166000908152600b602052604090205460ff16156110e95760405162461bcd60e51b815260206004820152601860248201527f7573657220616c726561647920626c61636b6c697374656400000000000000006044820152606401610be3565b6001600160a01b0381166000818152600b6020908152604091829020805460ff1916600190811790915591519182527ff7e58a63a036e3a7ef7921f83b6ae47930cf5c293dd3bfe7a857c6863409046d91015b60405180910390a250565b80600081116111685760405162461bcd60e51b8152600401610be390612cfb565b611170612110565b50601655565b61117e612110565b805161119190600e906020840190612615565b5050565b61119d612110565b6001600160a01b0381166000908152600b602052604090205460ff166111fd5760405162461bcd60e51b81526020600482015260156024820152741d5cd95c881b9bdd081a5b88189b1858dadb1a5cdd605a1b6044820152606401610be3565b6001600160a01b0381166000818152600b60209081526040808320805460ff19169055519182527ff7e58a63a036e3a7ef7921f83b6ae47930cf5c293dd3bfe7a857c6863409046d910161113c565b600060035b600f54610100900460ff16600381111561126d5761126d612a22565b036112785750600190565b50600090565b60006002611251565b6000610a008261216a565b600061129c611589565b156112a8575060175490565b5060165490565b6112b7612110565b601055565b60006001600160a01b0382166112e5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b611313612110565b61131d60006121d9565b565b611327612110565b805161119190600c906020840190612615565b806000811161135b5760405162461bcd60e51b8152600401610be390612cfb565b611363612110565b50601255565b611371612110565b611191828261222b565b806000811161139c5760405162461bcd60e51b8152600401610be390612cfb565b6113a4612110565b50601155565b60016000600f54610100900460ff1660038111156113ca576113ca612a22565b036113e75760405162461bcd60e51b8152600401610be390612bc1565b6113ef611549565b81111561140e5760405162461bcd60e51b8152600401610be390612bf8565b6010548161141a610b99565b6114249190612c3c565b11156114425760405162461bcd60e51b8152600401610be390612c54565b3461144b610b7c565b146114685760405162461bcd60e51b8152600401610be390612d87565b611470611292565b61147983611c28565b611484906001612c3c565b11156114a25760405162461bcd60e51b8152600401610be390612cb9565b73dab1a1854214684ace522439684a145e6250523333146115115760405162461bcd60e51b8152602060048201526024808201527f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60448201526337363c9760e11b6064820152608401610be3565b611191826001611e7a565b604080516080810182526000808252602082018190529181018290526060810191909152610a0082612328565b600061155361127e565b1561155f575060145490565b611567611589565b15611573575060155490565b5060135490565b606060038054610a1590612b87565b60006001611251565b806000600f54610100900460ff1660038111156115b1576115b1612a22565b036115ce5760405162461bcd60e51b8152600401610be390612bc1565b6115d6611549565b8111156115f55760405162461bcd60e51b8152600401610be390612bf8565b60105481611601610b99565b61160b9190612c3c565b11156116295760405162461bcd60e51b8152600401610be390612c54565b3233146116485760405162461bcd60e51b8152600401610be390612c82565b61165061124c565b6116915760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610be3565b8161169a610b7c565b6116a49190612d3e565b3410156116c35760405162461bcd60e51b8152600401610be390612d87565b6116cb611292565b826116d533611c28565b6116df9190612c3c565b11156116fd5760405162461bcd60e51b8152600401610be390612cb9565b6111913383611e7a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e805461178090612b87565b80601f01602080910402602001604051908101604052809291908181526020018280546117ac90612b87565b80156117f95780601f106117ce576101008083540402835291602001916117f9565b820191906000526020600020905b8154815290600101906020018083116117dc57829003601f168201915b505050505081565b80600081116118225760405162461bcd60e51b8152600401610be390612cfb565b61182a612110565b50601555565b61183b848484610d8b565b6001600160a01b0383163b1561187457611857848484846123a0565b611874576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b8061188460105490565b8161188d610b99565b6118979190612c3c565b11156118e55760405162461bcd60e51b815260206004820152601c60248201527f4d6178207265736572766520737570706c7920657863656564656421000000006044820152606401610be3565b6118ed612110565b3233146116fd5760405162461bcd60e51b8152600401610be390612c82565b606061191782611e2f565b61197b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610be3565b600f5460ff161515600003611a1c57600e805461199790612b87565b80601f01602080910402602001604051908101604052809291908181526020018280546119c390612b87565b8015611a105780601f106119e557610100808354040283529160200191611a10565b820191906000526020600020905b8154815290600101906020018083116119f357829003601f168201915b50505050509050919050565b6000611a2661248c565b90506000815111611a465760405180602001604052806000815250611a74565b80611a508461249b565b600d604051602001611a6493929190612db4565b6040516020818303038152906040525b9392505050565b816000600f54610100900460ff166003811115611a9a57611a9a612a22565b03611ab75760405162461bcd60e51b8152600401610be390612bc1565b611abf611549565b811115611ade5760405162461bcd60e51b8152600401610be390612bf8565b60105481611aea610b99565b611af49190612c3c565b1115611b125760405162461bcd60e51b8152600401610be390612c54565b323314611b315760405162461bcd60e51b8152600401610be390612c82565b611b3961127e565b611b7e5760405162461bcd60e51b815260206004820152601660248201527514d85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b6044820152606401610be3565b6018546040516bffffffffffffffffffffffff193360601b166020820152611baa918491603401610cdb565b611bf65760405162461bcd60e51b815260206004820152601f60248201527f596f7520617265206e6f7420612077686974656c697374206d656d6265722e006044820152606401610be3565b82611bff610b7c565b611c099190612d3e565b341015610d425760405162461bcd60e51b8152600401610be390612d87565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610a00565b611c5b612110565b600f805460ff1916911515919091179055565b816000600f54610100900460ff166003811115611c8d57611c8d612a22565b03611caa5760405162461bcd60e51b8152600401610be390612bc1565b611cb2611549565b811115611cd15760405162461bcd60e51b8152600401610be390612bf8565b60105481611cdd610b99565b611ce79190612c3c565b1115611d055760405162461bcd60e51b8152600401610be390612c54565b611d0d612110565b323314611d2c5760405162461bcd60e51b8152600401610be390612c82565b610d868284611e7a565b611d3e612110565b6001600160a01b038116611da35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610be3565b610e76816121d9565b60006301ffc9a760e01b6001600160e01b031983161480611ddd57506380ac58cd60e01b6001600160e01b03198316145b80610a005750506001600160e01b031916635b5e139f60e01b1490565b60006001600160e01b0319821663152a902d60e11b1480610a0057506301ffc9a760e01b6001600160e01b0319831614610a00565b600081600111158015611e43575060005482105b8015610a00575050600090815260046020526040902054600160e01b161590565b600082611e71858461259c565b14949350505050565b6000805490829003611e9f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611f4e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611f16565b5081600003611f6f57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000611f838261216a565b9050836001600160a01b0316816001600160a01b031614611fb65760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761200357611fe68633610978565b61200357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661202a57604051633a954ecd60e21b815260040160405180910390fd5b801561203557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036120c7576001840160008181526004602052604081205490036120c55760005481146120c55760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b0316331461131d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610be3565b600081806001116121c0576000548110156121c05760008181526004602052604081205490600160e01b821690036121be575b80600003611a7457506000190160008181526004602052604090205461219d565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b03821611156122995760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610be3565b6001600160a01b0382166122ef5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610be3565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b604080516080810182526000808252602082018190529181018290526060810191909152610a006123588361216a565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906123d5903390899088908890600401612e77565b6020604051808303816000875af1925050508015612410575060408051601f3d908101601f1916820190925261240d91810190612eb4565b60015b61246e573d80801561243e576040519150601f19603f3d011682016040523d82523d6000602084013e612443565b606091505b508051600003612466576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c8054610a1590612b87565b6060816000036124c25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124ec57806124d681612ed1565b91506124e59050600a83612d73565b91506124c6565b60008167ffffffffffffffff811115612507576125076127ab565b6040519080825280601f01601f191660200182016040528015612531576020820181803683370190505b5090505b841561248457612546600183612eea565b9150612553600a86612f01565b61255e906030612c3c565b60f81b81838151811061257357612573612f15565b60200101906001600160f81b031916908160001a905350612595600a86612d73565b9450612535565b600081815b84518110156125e1576125cd828683815181106125c0576125c0612f15565b60200260200101516125e9565b9150806125d981612ed1565b9150506125a1565b509392505050565b6000818310612605576000828152602084905260409020611a74565b5060009182526020526040902090565b82805461262190612b87565b90600052602060002090601f0160209004810192826126435760008555612689565b82601f1061265c57805160ff1916838001178555612689565b82800160010185558215612689579182015b8281111561268957825182559160200191906001019061266e565b50612695929150612699565b5090565b5b80821115612695576000815560010161269a565b6001600160e01b031981168114610e7657600080fd5b6000602082840312156126d657600080fd5b8135611a74816126ae565b60005b838110156126fc5781810151838201526020016126e4565b838111156118745750506000910152565b600081518084526127258160208601602086016126e1565b601f01601f19169290920160200192915050565b602081526000611a74602083018461270d565b60006020828403121561275e57600080fd5b5035919050565b80356001600160a01b038116811461277c57600080fd5b919050565b6000806040838503121561279457600080fd5b61279d83612765565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156127ea576127ea6127ab565b604052919050565b6000806040838503121561280557600080fd5b8235915060208084013567ffffffffffffffff8082111561282557600080fd5b818601915086601f83011261283957600080fd5b81358181111561284b5761284b6127ab565b8060051b915061285c8483016127c1565b818152918301840191848101908984111561287657600080fd5b938501935b838510156128945784358252938501939085019061287b565b8096505050505050509250929050565b6000806000606084860312156128b957600080fd5b6128c284612765565b92506128d060208501612765565b9150604084013590509250925092565b600080604083850312156128f357600080fd5b50508035926020909101359150565b60006020828403121561291457600080fd5b813560048110611a7457600080fd5b60006020828403121561293557600080fd5b611a7482612765565b600067ffffffffffffffff831115612958576129586127ab565b61296b601f8401601f19166020016127c1565b905082815283838301111561297f57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156129a857600080fd5b813567ffffffffffffffff8111156129bf57600080fd5b8201601f810184136129d057600080fd5b6124848482356020840161293e565b600080604083850312156129f257600080fd5b6129fb83612765565b915060208301356001600160601b0381168114612a1757600080fd5b809150509250929050565b634e487b7160e01b600052602160045260246000fd5b6020810160048310612a5a57634e487b7160e01b600052602160045260246000fd5b91905290565b8035801515811461277c57600080fd5b60008060408385031215612a8357600080fd5b612a8c83612765565b9150612a9a60208401612a60565b90509250929050565b60008060008060808587031215612ab957600080fd5b612ac285612765565b9350612ad060208601612765565b925060408501359150606085013567ffffffffffffffff811115612af357600080fd5b8501601f81018713612b0457600080fd5b612b138782356020840161293e565b91505092959194509250565b600060208284031215612b3157600080fd5b611a7482612a60565b60008060408385031215612b4d57600080fd5b612b5683612765565b9150612a9a60208401612765565b60008060408385031215612b7757600080fd5b82359150612a9a60208401612765565b600181811c90821680612b9b57607f821691505b602082108103612bbb57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612c4f57612c4f612c26565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b60208082526023908201527f4e756d6265722073686f756c642062652067726561746572207468616e207a65604082015262726f2160e81b606082015260800190565b6000816000190483118215151615612d5857612d58612c26565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612d8257612d82612d5d565b500490565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600084516020612dc78285838a016126e1565b855191840191612dda8184848a016126e1565b8554920191600090600181811c9080831680612df757607f831692505b8583108103612e1457634e487b7160e01b85526022600452602485fd5b808015612e285760018114612e3957612e66565b60ff19851688528388019550612e66565b60008b81526020902060005b85811015612e5e5781548a820152908401908801612e45565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612eaa9083018461270d565b9695505050505050565b600060208284031215612ec657600080fd5b8151611a74816126ae565b600060018201612ee357612ee3612c26565b5060010190565b600082821015612efc57612efc612c26565b500390565b600082612f1057612f10612d5d565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122098876894ec8cb122d4a5f05477ed5385eebdbf7f100192c0de00f7446155643664736f6c634300080e0033

Deployed Bytecode Sourcemap

73476:11175:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77775:215;;;;;;;;;;-1:-1:-1;77775:215:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;77775:215:0;;;;;;;;25526:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32017:218::-;;;;;;;;;;-1:-1:-1;32017:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;32017:218:0;1528:203:1;31450:408:0;;;;;;:::i;:::-;;:::i;:::-;;76310:128;;;;;;;;;;;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;76310:128:0;2173:177:1;21277:323:0;;;;;;;;;;;;;:::i;78177:464::-;;;;;;:::i;:::-;;:::i;83281:263::-;;;;;;:::i;:::-;;:::i;84476:172::-;;;;;;;;;;;;;:::i;82223:139::-;;;;;;;;;;-1:-1:-1;82223:139:0;;;;;:::i;:::-;;:::i;75455:101::-;;;;;;;;;;-1:-1:-1;75455:101:0;;;;;:::i;:::-;;:::i;70914:442::-;;;;;;;;;;-1:-1:-1;70914:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4749:32:1;;;4731:51;;4813:2;4798:18;;4791:34;;;;4704:18;70914:442:0;4557:274:1;81935:135:0;;;;;;;;;;-1:-1:-1;81935:135:0;;;;;:::i;:::-;;:::i;82370:143::-;;;;;;;;;;-1:-1:-1;82370:143:0;;;;;:::i;:::-;;:::i;75352:97::-;;;;;;;;;;-1:-1:-1;75352:97:0;;;;;:::i;:::-;;:::i;75562:117::-;;;;;;;;;;-1:-1:-1;75562:117:0;;;;;:::i;:::-;;:::i;83552:279::-;;;;;;:::i;:::-;;:::i;82814:220::-;;;;;;;;;;-1:-1:-1;82814:220:0;;;;;:::i;:::-;;:::i;82521:130::-;;;;;;;;;;-1:-1:-1;82521:130:0;;;;;:::i;:::-;;:::i;81423:138::-;;;;;;;;;;-1:-1:-1;81423:138:0;;;;;:::i;:::-;;:::i;73790:28::-;;;;;;;;;;-1:-1:-1;73790:28:0;;;;;;;;83046:227;;;;;;;;;;-1:-1:-1;83046:227:0;;;;;:::i;:::-;;:::i;76169:135::-;;;;;;;;;;;;;:::i;76024:139::-;;;;;;;;;;;;;:::i;26919:152::-;;;;;;;;;;-1:-1:-1;26919:152:0;;;;;:::i;:::-;;:::i;76812:173::-;;;;;;;;;;;;;:::i;81320:95::-;;;;;;;;;;-1:-1:-1;81320:95:0;;;;;:::i;:::-;;:::i;22461:233::-;;;;;;;;;;-1:-1:-1;22461:233:0;;;;;:::i;:::-;;:::i;2884:103::-;;;;;;;;;;;;;:::i;81569:106::-;;;;;;;;;;-1:-1:-1;81569:106:0;;;;;:::i;:::-;;:::i;81683:117::-;;;;;;;;;;-1:-1:-1;81683:117:0;;;;;:::i;:::-;;:::i;2236:87::-;;;;;;;;;;-1:-1:-1;2309:6:0;;-1:-1:-1;;;;;2309:6:0;2236:87;;82659:147;;;;;;;;;;-1:-1:-1;82659:147:0;;;;;:::i;:::-;;:::i;81808:119::-;;;;;;;;;;-1:-1:-1;81808:119:0;;;;;:::i;:::-;;:::i;74073:48::-;;;;;;;;;;-1:-1:-1;74073:48:0;;;;;;;;;;;;;;;;;;:::i;79832:395::-;;;;;;:::i;:::-;;:::i;84145:138::-;;;;;;;;;;-1:-1:-1;84145:138:0;;;;;:::i;:::-;;:::i;:::-;;;;;;7253:13:1;;-1:-1:-1;;;;;7249:39:1;7231:58;;7349:4;7337:17;;;7331:24;7357:18;7327:49;7305:20;;;7298:79;7447:4;7435:17;;;7429:24;7422:32;7415:40;7393:20;;;7386:70;7516:4;7504:17;;;7498:24;7524:8;7494:39;7472:20;;;7465:69;;;;7218:3;7203:19;;7022:518;76534:272:0;;;;;;;;;;;;;:::i;25702:104::-;;;;;;;;;;;;;:::i;75877:141::-;;;;;;;;;;;;;:::i;79176:351::-;;;;;;:::i;:::-;;:::i;32575:234::-;;;;;;;;;;-1:-1:-1;32575:234:0;;;;;:::i;:::-;;:::i;73754:31::-;;;;;;;;;;;;;:::i;82078:137::-;;;;;;;;;;-1:-1:-1;82078:137:0;;;;;:::i;:::-;;:::i;39368:407::-;;;;;;:::i;:::-;;:::i;79691:135::-;;;;;;;;;;-1:-1:-1;79691:135:0;;;;;:::i;:::-;;:::i;80543:494::-;;;;;;;;;;-1:-1:-1;80543:494:0;;;;;:::i;:::-;;:::i;78647:523::-;;;;;;:::i;:::-;;:::i;76444:84::-;;;;;;;;;;-1:-1:-1;76510:12:0;;76444:84;;84028:109;;;;;;;;;;-1:-1:-1;84028:109:0;;;;;:::i;:::-;;:::i;81225:87::-;;;;;;;;;;-1:-1:-1;81225:87:0;;;;;:::i;:::-;;:::i;32966:164::-;;;;;;;;;;-1:-1:-1;32966:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33087:25:0;;;33063:4;33087:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32966:164;79533:152;;;;;;;;;;-1:-1:-1;79533:152:0;;;;;:::i;:::-;;:::i;3142:201::-;;;;;;;;;;-1:-1:-1;3142:201:0;;;;;:::i;:::-;;:::i;77775:215::-;77878:4;77902:38;77928:11;77902:25;:38::i;:::-;:80;;;;77944:38;77970:11;77944:25;:38::i;:::-;77895:87;77775:215;-1:-1:-1;;77775:215:0:o;25526:100::-;25580:13;25613:5;25606:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25526:100;:::o;32017:218::-;32093:7;32118:16;32126:7;32118;:16::i;:::-;32113:64;;32143:34;;-1:-1:-1;;;32143:34:0;;;;;;;;;;;32113:64;-1:-1:-1;32197:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;32197:30:0;;32017:218::o;31450:408::-;31539:13;31555:16;31563:7;31555;:16::i;:::-;31539:32;-1:-1:-1;55783:10:0;-1:-1:-1;;;;;31588:28:0;;;31584:175;;31636:44;31653:5;55783:10;32966:164;:::i;31636:44::-;31631:128;;31708:35;;-1:-1:-1;;;31708:35:0;;;;;;;;;;;31631:128;31771:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;31771:35:0;-1:-1:-1;;;;;31771:35:0;;;;;;;;;31822:28;;31771:24;;31822:28;;;;;;;31528:330;31450:408;;:::o;76310:128::-;76346:7;76367:17;:15;:17::i;:::-;76364:40;;;-1:-1:-1;76393:11:0;;;76310:128::o;76364:40::-;-1:-1:-1;76422:10:0;;;76310:128::o;21277:323::-;75143:1;21551:12;21338:7;21535:13;:28;-1:-1:-1;;21535:46:0;;21277:323::o;78177:464::-;78278:7;77065:17;77051:10;;;;;;;:31;;;;;;;;:::i;:::-;;77043:67;;;;-1:-1:-1;;;77043:67:0;;;;;;;:::i;:::-;;;;;;;;;77140:20;:18;:20::i;:::-;77125:11;:35;;77117:68;;;;-1:-1:-1;;;77117:68:0;;;;;;;:::i;:::-;76510:12;;77216:11;77200:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;77192:75;;;;-1:-1:-1;;;77192:75:0;;;;;;;:::i;:::-;77668:9:::1;77681:10;77668:23;77660:66;;;;-1:-1:-1::0;;;77660:66:0::1;;;;;;;:::i;:::-;78315:18:::2;:16;:18::i;:::-;78307:53;;;::::0;-1:-1:-1;;;78307:53:0;;11611:2:1;78307:53:0::2;::::0;::::2;11593:21:1::0;11650:2;11630:18;;;11623:30;-1:-1:-1;;;11669:18:1;;;11662:52;11731:18;;78307:53:0::2;11409:346:1::0;78307:53:0::2;78402:14;::::0;78428:28:::2;::::0;-1:-1:-1;;78445:10:0::2;11909:2:1::0;11905:15;11901:53;78428:28:0::2;::::0;::::2;11889:66:1::0;78375:83:0::2;::::0;78394:6;;11971:12:1;;78428:28:0::2;;;;;;;;;;;;;78418:39;;;;;;78375:18;:83::i;:::-;78367:127;;;::::0;-1:-1:-1;;;78367:127:0;;12196:2:1;78367:127:0::2;::::0;::::2;12178:21:1::0;12235:2;12215:18;;;12208:30;12274:33;12254:18;;;12247:61;12325:18;;78367:127:0::2;11994:355:1::0;78367:127:0::2;78547:16;:14;:16::i;:::-;78536:7;78509:24;78522:10;78509:12;:24::i;:::-;:34;;;;:::i;:::-;:54;;78501:101;;;;-1:-1:-1::0;;;78501:101:0::2;;;;;;;:::i;:::-;78609:26;78615:10;78627:7;78609:5;:26::i;:::-;78177:464:::0;;;:::o;83281:263::-;83444:10;83430:25;;;;:13;:25;;;;;;;;83429:26;83421:67;;;;-1:-1:-1;;;83421:67:0;;12959:2:1;83421:67:0;;;12941:21:1;12998:2;12978:18;;;12971:30;13037;13017:18;;;13010:58;13085:18;;83421:67:0;12757:352:1;83421:67:0;83497:39;83518:4;83524:2;83528:7;83497:20;:39::i;84476:172::-;2122:13;:11;:13::i;:::-;84563:1:::1;84539:21;:25;84531:50;;;::::0;-1:-1:-1;;;84531:50:0;;13316:2:1;84531:50:0::1;::::0;::::1;13298:21:1::0;13355:2;13335:18;;;13328:30;-1:-1:-1;;;13374:18:1;;;13367:42;13426:18;;84531:50:0::1;13114:336:1::0;84531:50:0::1;2309:6:::0;;84592:48:::1;::::0;-1:-1:-1;;;;;2309:6:0;;;;84618:21:::1;84592:48:::0;::::1;;;::::0;::::1;::::0;;;84618:21;2309:6;84592:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;84476:172::o:0;82223:139::-;82295:6;77515:1;77505:7;:11;77497:59;;;;-1:-1:-1;;;77497:59:0;;;;;;;:::i;:::-;2122:13:::1;:11;:13::i;:::-;-1:-1:-1::0;82324:21:0::2;:30:::0;82223:139::o;75455:101::-;2122:13;:11;:13::i;:::-;75526:10:::1;:24:::0;75455:101::o;70914:442::-;71011:7;71069:27;;;:17;:27;;;;;;;;71040:56;;;;;;;;;-1:-1:-1;;;;;71040:56:0;;;;;-1:-1:-1;;;71040:56:0;;;-1:-1:-1;;;;;71040:56:0;;;;;;;;71011:7;;71109:92;;-1:-1:-1;71160:29:0;;;;;;;;;71170:19;71160:29;-1:-1:-1;;;;;71160:29:0;;;;-1:-1:-1;;;71160:29:0;;-1:-1:-1;;;;;71160:29:0;;;;;71109:92;71251:23;;;;71213:21;;71722:5;;71238:36;;-1:-1:-1;;;;;71238:36:0;:10;:36;:::i;:::-;71237:58;;;;:::i;:::-;71316:16;;;;;-1:-1:-1;70914:442:0;;-1:-1:-1;;;;70914:442:0:o;81935:135::-;82004:6;77515:1;77505:7;:11;77497:59;;;;-1:-1:-1;;;77497:59:0;;;;;;;:::i;:::-;2122:13:::1;:11;:13::i;:::-;-1:-1:-1::0;82031:22:0::2;:31:::0;81935:135::o;82370:143::-;82442:6;77515:1;77505:7;:11;77497:59;;;;-1:-1:-1;;;77497:59:0;;;;;;;:::i;:::-;2122:13:::1;:11;:13::i;:::-;-1:-1:-1::0;82471:25:0::2;:34:::0;82370:143::o;75352:97::-;2122:13;:11;:13::i;:::-;75423:10:::1;:20:::0;;75436:7;;75423:10;-1:-1:-1;;75423:20:0::1;;75436:7:::0;75423:20:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;75352:97:::0;:::o;75562:117::-;2122:13;:11;:13::i;:::-;75641:14:::1;:32:::0;75562:117::o;83552:279::-;83721:10;83707:25;;;;:13;:25;;;;;;;;83706:26;83698:67;;;;-1:-1:-1;;;83698:67:0;;12959:2:1;83698:67:0;;;12941:21:1;12998:2;12978:18;;;12971:30;13037;13017:18;;;13010:58;13085:18;;83698:67:0;12757:352:1;83698:67:0;83776:47;83801:4;83807:2;83811:7;83776:47;;;;;;;;;;;;:24;:47::i;82814:220::-;2122:13;:11;:13::i;:::-;-1:-1:-1;;;;;82885:20:0;::::1;;::::0;;;:13:::1;:20;::::0;;;;;::::1;;82884:21;82876:58;;;::::0;-1:-1:-1;;;82876:58:0;;14491:2:1;82876:58:0::1;::::0;::::1;14473:21:1::0;14530:2;14510:18;;;14503:30;14569:26;14549:18;;;14542:54;14613:18;;82876:58:0::1;14289:348:1::0;82876:58:0::1;-1:-1:-1::0;;;;;82945:20:0;::::1;;::::0;;;:13:::1;:20;::::0;;;;;;;;:27;;-1:-1:-1;;82945:27:0::1;82968:4;82945:27:::0;;::::1;::::0;;;82988:38;;540:41:1;;;82988:38:0::1;::::0;513:18:1;82988:38:0::1;;;;;;;;82814:220:::0;:::o;82521:130::-;82589:6;77515:1;77505:7;:11;77497:59;;;;-1:-1:-1;;;77497:59:0;;;;;;;:::i;:::-;2122:13:::1;:11;:13::i;:::-;-1:-1:-1::0;82618:16:0::2;:25:::0;82521:130::o;81423:138::-;2122:13;:11;:13::i;:::-;81515:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;:::-;;81423:138:::0;:::o;83046:227::-;2122:13;:11;:13::i;:::-;-1:-1:-1;;;;;83126:20:0;::::1;;::::0;;;:13:::1;:20;::::0;;;;;::::1;;83118:54;;;::::0;-1:-1:-1;;;83118:54:0;;14844:2:1;83118:54:0::1;::::0;::::1;14826:21:1::0;14883:2;14863:18;;;14856:30;-1:-1:-1;;;14902:18:1;;;14895:51;14963:18;;83118:54:0::1;14642:345:1::0;83118:54:0::1;-1:-1:-1::0;;;;;83183:20:0;::::1;83206:5;83183:20:::0;;;:13:::1;:20;::::0;;;;;;;:28;;-1:-1:-1;;83183:28:0::1;::::0;;83227:38;540:41:1;;;83227:38:0::1;::::0;513:18:1;83227:38:0::1;400:187:1::0;76169:135:0;76213:4;76245:17;76231:31;:10;;;;;;;:31;;;;;;;;:::i;:::-;;76228:47;;-1:-1:-1;76271:4:0;;76169:135::o;76228:47::-;-1:-1:-1;76293:5:0;;76169:135::o;76024:139::-;76071:4;76103:18;76089:32;;26919:152;26991:7;27034:27;27053:7;27034:18;:27::i;76812:173::-;76858:7;76877:18;:16;:18::i;:::-;76874:74;;;-1:-1:-1;76915:25:0;;;76812:173::o;76874:74::-;-1:-1:-1;76963:16:0;;;76812:173::o;81320:95::-;2122:13;:11;:13::i;:::-;81386:12:::1;:21:::0;81320:95::o;22461:233::-;22533:7;-1:-1:-1;;;;;22557:19:0;;22553:60;;22585:28;;-1:-1:-1;;;22585:28:0;;;;;;;;;;;22553:60;-1:-1:-1;;;;;;22631:25:0;;;;;:18;:25;;;;;;16620:13;22631:55;;22461:233::o;2884:103::-;2122:13;:11;:13::i;:::-;2949:30:::1;2976:1;2949:18;:30::i;:::-;2884:103::o:0;81569:106::-;2122:13;:11;:13::i;:::-;81645:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;81683:117::-:0;81746:5;77515:1;77505:7;:11;77497:59;;;;-1:-1:-1;;;77497:59:0;;;;;;;:::i;:::-;2122:13:::1;:11;:13::i;:::-;-1:-1:-1::0;81774:10:0::2;:18:::0;81683:117::o;82659:147::-;2122:13;:11;:13::i;:::-;82750:48:::1;82769:9;82780:17;82750:18;:48::i;81808:119::-:0;81872:5;77515:1;77505:7;:11;77497:59;;;;-1:-1:-1;;;77497:59:0;;;;;;;:::i;:::-;2122:13:::1;:11;:13::i;:::-;-1:-1:-1::0;81900:11:0::2;:19:::0;81808:119::o;79832:395::-;79894:1;77065:17;77051:10;;;;;;;:31;;;;;;;;:::i;:::-;;77043:67;;;;-1:-1:-1;;;77043:67:0;;;;;;;:::i;:::-;77140:20;:18;:20::i;:::-;77125:11;:35;;77117:68;;;;-1:-1:-1;;;77117:68:0;;;;;;;:::i;:::-;76510:12;;77216:11;77200:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;77192:75;;;;-1:-1:-1;;;77192:75:0;;;;;;;:::i;:::-;79926:9:::1;79916:6;:4;:6::i;:::-;:19;79908:51;;;;-1:-1:-1::0;;;79908:51:0::1;;;;;;;:::i;:::-;80003:16;:14;:16::i;:::-;79978:17;79991:3;79978:12;:17::i;:::-;:21;::::0;79998:1:::1;79978:21;:::i;:::-;:41;;79970:88;;;;-1:-1:-1::0;;;79970:88:0::1;;;;;;;:::i;:::-;80091:42;80077:10;:56;80069:128;;;::::0;-1:-1:-1;;;80069:128:0;;15542:2:1;80069:128:0::1;::::0;::::1;15524:21:1::0;15581:2;15561:18;;;15554:30;15620:34;15600:18;;;15593:62;-1:-1:-1;;;15671:18:1;;;15664:34;15715:19;;80069:128:0::1;15340:400:1::0;80069:128:0::1;80208:13;80214:3;80219:1;80208:5;:13::i;84145:138::-:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84253:22:0;84266:8;84253:12;:22::i;76534:272::-;76584:7;76605:17;:15;:17::i;:::-;76602:74;;;-1:-1:-1;76644:22:0;;;76534:272::o;76602:74::-;76689:18;:16;:18::i;:::-;76686:76;;;-1:-1:-1;76729:23:0;;;76534:272::o;76686:76::-;-1:-1:-1;76779:21:0;;;76534:272::o;25702:104::-;25758:13;25791:7;25784:14;;;;;:::i;75877:141::-;75925:4;75957:19;75943:33;;79176:351;79237:7;77065:17;77051:10;;;;;;;:31;;;;;;;;:::i;:::-;;77043:67;;;;-1:-1:-1;;;77043:67:0;;;;;;;:::i;:::-;77140:20;:18;:20::i;:::-;77125:11;:35;;77117:68;;;;-1:-1:-1;;;77117:68:0;;;;;;;:::i;:::-;76510:12;;77216:11;77200:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;77192:75;;;;-1:-1:-1;;;77192:75:0;;;;;;;:::i;:::-;77668:9:::1;77681:10;77668:23;77660:66;;;;-1:-1:-1::0;;;77660:66:0::1;;;;;;;:::i;:::-;79274:14:::2;:12;:14::i;:::-;79266:46;;;::::0;-1:-1:-1;;;79266:46:0;;15947:2:1;79266:46:0::2;::::0;::::2;15929:21:1::0;15986:2;15966:18;;;15959:30;-1:-1:-1;;;16005:18:1;;;15998:48;16063:18;;79266:46:0::2;15745:342:1::0;79266:46:0::2;79349:7;79340:6;:4;:6::i;:::-;:16;;;;:::i;:::-;79327:9;:29;;79319:61;;;;-1:-1:-1::0;;;79319:61:0::2;;;;;;;:::i;:::-;79433:16;:14;:16::i;:::-;79422:7;79395:24;79408:10;79395:12;:24::i;:::-;:34;;;;:::i;:::-;:54;;79387:101;;;;-1:-1:-1::0;;;79387:101:0::2;;;;;;;:::i;:::-;79495:26;79501:10;79513:7;79495:5;:26::i;32575:234::-:0;55783:10;32670:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32670:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32670:60:0;;;;;;;;;;32746:55;;540:41:1;;;32670:49:0;;55783:10;32746:55;;513:18:1;32746:55:0;;;;;;;32575:234;;:::o;73754:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;82078:137::-;82148:6;77515:1;77505:7;:11;77497:59;;;;-1:-1:-1;;;77497:59:0;;;;;;;:::i;:::-;2122:13:::1;:11;:13::i;:::-;-1:-1:-1::0;82175:23:0::2;:32:::0;82078:137::o;39368:407::-;39543:31;39556:4;39562:2;39566:7;39543:12;:31::i;:::-;-1:-1:-1;;;;;39589:14:0;;;:19;39585:183;;39628:56;39659:4;39665:2;39669:7;39678:5;39628:30;:56::i;:::-;39623:145;;39712:40;;-1:-1:-1;;;39712:40:0;;;;;;;;;;;39623:145;39368:407;;;;:::o;79691:135::-;79755:7;77382:11;76510:12;;;76444:84;77382:11;77367;77351:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;77343:83;;;;-1:-1:-1;;;77343:83:0;;16294:2:1;77343:83:0;;;16276:21:1;16333:2;16313:18;;;16306:30;16372;16352:18;;;16345:58;16420:18;;77343:83:0;16092:352:1;77343:83:0;2122:13:::1;:11;:13::i;:::-;77668:9:::2;77681:10;77668:23;77660:66;;;;-1:-1:-1::0;;;77660:66:0::2;;;;;;;:::i;80543:494::-:0;80642:13;80683:17;80691:8;80683:7;:17::i;:::-;80667:98;;;;-1:-1:-1;;;80667:98:0;;16651:2:1;80667:98:0;;;16633:21:1;16690:2;16670:18;;;16663:30;16729:34;16709:18;;;16702:62;-1:-1:-1;;;16780:18:1;;;16773:45;16835:19;;80667:98:0;16449:411:1;80667:98:0;80778:8;;;;:17;;:8;:17;80774:64;;80813:17;80806:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80543:494;;;:::o;80774:64::-;80846:28;80877:10;:8;:10::i;:::-;80846:41;;80932:1;80907:14;80901:28;:32;:130;;;;;;;;;;;;;;;;;80969:14;80985:19;:8;:17;:19::i;:::-;81006:9;80952:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80901:130;80894:137;80543:494;-1:-1:-1;;;80543:494:0:o;78647:523::-;78744:7;77065:17;77051:10;;;;;;;:31;;;;;;;;:::i;:::-;;77043:67;;;;-1:-1:-1;;;77043:67:0;;;;;;;:::i;:::-;77140:20;:18;:20::i;:::-;77125:11;:35;;77117:68;;;;-1:-1:-1;;;77117:68:0;;;;;;;:::i;:::-;76510:12;;77216:11;77200:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;77192:75;;;;-1:-1:-1;;;77192:75:0;;;;;;;:::i;:::-;77668:9:::1;77681:10;77668:23;77660:66;;;;-1:-1:-1::0;;;77660:66:0::1;;;;;;;:::i;:::-;78781:17:::2;:15;:17::i;:::-;78773:52;;;::::0;-1:-1:-1;;;78773:52:0;;11611:2:1;78773:52:0::2;::::0;::::2;11593:21:1::0;11650:2;11630:18;;;11623:30;-1:-1:-1;;;11669:18:1;;;11662:52;11731:18;;78773:52:0::2;11409:346:1::0;78773:52:0::2;78867:10;::::0;78889:28:::2;::::0;-1:-1:-1;;78906:10:0::2;11909:2:1::0;11905:15;11901:53;78889:28:0::2;::::0;::::2;11889:66:1::0;78840:79:0::2;::::0;78859:6;;11971:12:1;;78889:28:0::2;11760:229:1::0;78840:79:0::2;78832:123;;;::::0;-1:-1:-1;;;78832:123:0;;12196:2:1;78832:123:0::2;::::0;::::2;12178:21:1::0;12235:2;12215:18;;;12208:30;12274:33;12254:18;;;12247:61;12325:18;;78832:123:0::2;11994:355:1::0;78832:123:0::2;78992:7;78983:6;:4;:6::i;:::-;:16;;;;:::i;:::-;78970:9;:29;;78962:61;;;;-1:-1:-1::0;;;78962:61:0::2;;;;;;;:::i;84028:109::-:0;-1:-1:-1;;;;;22865:25:0;;84087:7;22865:25;;;:18;:25;;16758:2;22865:25;;;;16620:13;22865:50;;22864:82;84110:21;22776:178;81225:87;2122:13;:11;:13::i;:::-;81287:8:::1;:17:::0;;-1:-1:-1;;81287:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;81225:87::o;79533:152::-;79615:7;77065:17;77051:10;;;;;;;:31;;;;;;;;:::i;:::-;;77043:67;;;;-1:-1:-1;;;77043:67:0;;;;;;;:::i;:::-;77140:20;:18;:20::i;:::-;77125:11;:35;;77117:68;;;;-1:-1:-1;;;77117:68:0;;;;;;;:::i;:::-;76510:12;;77216:11;77200:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;77192:75;;;;-1:-1:-1;;;77192:75:0;;;;;;;:::i;:::-;2122:13:::1;:11;:13::i;:::-;77668:9:::2;77681:10;77668:23;77660:66;;;;-1:-1:-1::0;;;77660:66:0::2;;;;;;;:::i;:::-;79654:25:::3;79660:9;79671:7;79654:5;:25::i;3142:201::-:0;2122:13;:11;:13::i;:::-;-1:-1:-1;;;;;3231:22:0;::::1;3223:73;;;::::0;-1:-1:-1;;;3223:73:0;;18725:2:1;3223:73:0::1;::::0;::::1;18707:21:1::0;18764:2;18744:18;;;18737:30;18803:34;18783:18;;;18776:62;-1:-1:-1;;;18854:18:1;;;18847:36;18900:19;;3223:73:0::1;18523:402:1::0;3223:73:0::1;3307:28;3326:8;3307:18;:28::i;24624:639::-:0;24709:4;-1:-1:-1;;;;;;;;;25033:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;25110:25:0;;;25033:102;:179;;;-1:-1:-1;;;;;;;;25187:25:0;-1:-1:-1;;;25187:25:0;;24624:639::o;70644:215::-;70746:4;-1:-1:-1;;;;;;70770:41:0;;-1:-1:-1;;;70770:41:0;;:81;;-1:-1:-1;;;;;;;;;;69197:40:0;;;70815:36;69088:157;33388:282;33453:4;33509:7;75143:1;33490:26;;:66;;;;;33543:13;;33533:7;:23;33490:66;:153;;;;-1:-1:-1;;33594:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33594:44:0;:49;;33388:282::o;58882:190::-;59007:4;59060;59031:25;59044:5;59051:4;59031:12;:25::i;:::-;:33;;58882:190;-1:-1:-1;;;;58882:190:0:o;43037:2966::-;43110:20;43133:13;;;43161;;;43157:44;;43183:18;;-1:-1:-1;;;43183:18:0;;;;;;;;;;;43157:44;-1:-1:-1;;;;;43689:22:0;;;;;;:18;:22;;;;16758:2;43689:22;;;:71;;43727:32;43715:45;;43689:71;;;44003:31;;;:17;:31;;;;;-1:-1:-1;30739:15:0;;30713:24;30709:46;30308:11;30283:23;30279:41;30276:52;30266:63;;44003:173;;44238:23;;;;44003:31;;43689:22;;45003:25;43689:22;;44856:335;45517:1;45503:12;45499:20;45457:346;45558:3;45549:7;45546:16;45457:346;;45776:7;45766:8;45763:1;45736:25;45733:1;45730;45725:59;45611:1;45598:15;45457:346;;;45461:77;45836:8;45848:1;45836:13;45832:45;;45858:19;;-1:-1:-1;;;45858:19:0;;;;;;;;;;;45832:45;45894:13;:19;-1:-1:-1;78177:464:0;;;:::o;35656:2825::-;35798:27;35828;35847:7;35828:18;:27::i;:::-;35798:57;;35913:4;-1:-1:-1;;;;;35872:45:0;35888:19;-1:-1:-1;;;;;35872:45:0;;35868:86;;35926:28;;-1:-1:-1;;;35926:28:0;;;;;;;;;;;35868:86;35968:27;34764:24;;;:15;:24;;;;;34992:26;;55783:10;34389:30;;;-1:-1:-1;;;;;34082:28:0;;34367:20;;;34364:56;36154:180;;36247:43;36264:4;55783:10;32966:164;:::i;36247:43::-;36242:92;;36299:35;;-1:-1:-1;;;36299:35:0;;;;;;;;;;;36242:92;-1:-1:-1;;;;;36351:16:0;;36347:52;;36376:23;;-1:-1:-1;;;36376:23:0;;;;;;;;;;;36347:52;36548:15;36545:160;;;36688:1;36667:19;36660:30;36545:160;-1:-1:-1;;;;;37085:24:0;;;;;;;:18;:24;;;;;;37083:26;;-1:-1:-1;;37083:26:0;;;37154:22;;;;;;;;;37152:24;;-1:-1:-1;37152:24:0;;;30308:11;30283:23;30279:41;30266:63;-1:-1:-1;;;30266:63:0;37447:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;37742:47:0;;:52;;37738:627;;37847:1;37837:11;;37815:19;37970:30;;;:17;:30;;;;;;:35;;37966:384;;38108:13;;38093:11;:28;38089:242;;38255:30;;;;:17;:30;;;;;:52;;;38089:242;37796:569;37738:627;38412:7;38408:2;-1:-1:-1;;;;;38393:27:0;38402:4;-1:-1:-1;;;;;38393:27:0;;;;;;;;;;;35787:2694;;;35656:2825;;;:::o;2401:132::-;2309:6;;-1:-1:-1;;;;;2309:6:0;55783:10;2465:23;2457:68;;;;-1:-1:-1;;;2457:68:0;;19132:2:1;2457:68:0;;;19114:21:1;;;19151:18;;;19144:30;19210:34;19190:18;;;19183:62;19262:18;;2457:68:0;18930:356:1;28074:1275:0;28141:7;28176;;75143:1;28225:23;28221:1061;;28278:13;;28271:4;:20;28267:1015;;;28316:14;28333:23;;;:17;:23;;;;;;;-1:-1:-1;;;28422:24:0;;:29;;28418:845;;29087:113;29094:6;29104:1;29094:11;29087:113;;-1:-1:-1;;;29165:6:0;29147:25;;;;:17;:25;;;;;;29087:113;;28418:845;28293:989;28267:1015;29310:31;;-1:-1:-1;;;29310:31:0;;;;;;;;;;;3503:191;3596:6;;;-1:-1:-1;;;;;3613:17:0;;;-1:-1:-1;;;;;;3613:17:0;;;;;;;3646:40;;3596:6;;;3613:17;3596:6;;3646:40;;3577:16;;3646:40;3566:128;3503:191;:::o;72006:332::-;71722:5;-1:-1:-1;;;;;72109:33:0;;;;72101:88;;;;-1:-1:-1;;;72101:88:0;;19493:2:1;72101:88:0;;;19475:21:1;19532:2;19512:18;;;19505:30;19571:34;19551:18;;;19544:62;-1:-1:-1;;;19622:18:1;;;19615:40;19672:19;;72101:88:0;19291:406:1;72101:88:0;-1:-1:-1;;;;;72208:22:0;;72200:60;;;;-1:-1:-1;;;72200:60:0;;19904:2:1;72200:60:0;;;19886:21:1;19943:2;19923:18;;;19916:30;19982:27;19962:18;;;19955:55;20027:18;;72200:60:0;19702:349:1;72200:60:0;72295:35;;;;;;;;;-1:-1:-1;;;;;72295:35:0;;;;;;-1:-1:-1;;;;;72295:35:0;;;;;;;;;;-1:-1:-1;;;72273:57:0;;;;:19;:57;72006:332::o;27260:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27371:47:0;27390:27;27409:7;27390:18;:27::i;:::-;-1:-1:-1;;;;;;;;;;;;;29558:41:0;;;;17279:3;29644:33;;;29610:68;;-1:-1:-1;;;29610:68:0;-1:-1:-1;;;29708:24:0;;:29;;-1:-1:-1;;;29689:48:0;;;;17800:3;29777:28;;;;-1:-1:-1;;;29748:58:0;-1:-1:-1;29448:366:0;41859:716;42043:88;;-1:-1:-1;;;42043:88:0;;42022:4;;-1:-1:-1;;;;;42043:45:0;;;;;:88;;55783:10;;42110:4;;42116:7;;42125:5;;42043:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42043:88:0;;;;;;;;-1:-1:-1;;42043:88:0;;;;;;;;;;;;:::i;:::-;;;42039:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42326:6;:13;42343:1;42326:18;42322:235;;42372:40;;-1:-1:-1;;;42372:40:0;;;;;;;;;;;42322:235;42515:6;42509:13;42500:6;42496:2;42492:15;42485:38;42039:529;-1:-1:-1;;;;;;42202:64:0;-1:-1:-1;;;42202:64:0;;-1:-1:-1;42039:529:0;41859:716;;;;;;:::o;80422:112::-;80487:13;80519:9;80512:16;;;;;:::i;4139:723::-;4195:13;4416:5;4425:1;4416:10;4412:53;;-1:-1:-1;;4443:10:0;;;;;;;;;;;;-1:-1:-1;;;4443:10:0;;;;;4139:723::o;4412:53::-;4490:5;4475:12;4531:78;4538:9;;4531:78;;4564:8;;;;:::i;:::-;;-1:-1:-1;4587:10:0;;-1:-1:-1;4595:2:0;4587:10;;:::i;:::-;;;4531:78;;;4619:19;4651:6;4641:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4641:17:0;;4619:39;;4669:154;4676:10;;4669:154;;4703:11;4713:1;4703:11;;:::i;:::-;;-1:-1:-1;4772:10:0;4780:2;4772:5;:10;:::i;:::-;4759:24;;:2;:24;:::i;:::-;4746:39;;4729:6;4736;4729:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4729:56:0;;;;;;;;-1:-1:-1;4800:11:0;4809:2;4800:11;;:::i;:::-;;;4669:154;;59749:296;59832:7;59875:4;59832:7;59890:118;59914:5;:12;59910:1;:16;59890:118;;;59963:33;59973:12;59987:5;59993:1;59987:8;;;;;;;;:::i;:::-;;;;;;;59963:9;:33::i;:::-;59948:48;-1:-1:-1;59928:3:0;;;;:::i;:::-;;;;59890:118;;;-1:-1:-1;60025:12:0;59749:296;-1:-1:-1;;;59749:296:0:o;65956:149::-;66019:7;66050:1;66046;:5;:51;;66181:13;66275:15;;;66311:4;66304:15;;;66358:4;66342:21;;66046:51;;;-1:-1:-1;66181:13:0;66275:15;;;66311:4;66304:15;66358:4;66342:21;;;65956:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:275;2558:2;2552:9;2623:2;2604:13;;-1:-1:-1;;2600:27:1;2588:40;;2658:18;2643:34;;2679:22;;;2640:62;2637:88;;;2705:18;;:::i;:::-;2741:2;2734:22;2487:275;;-1:-1:-1;2487:275:1:o;2767:1014::-;2860:6;2868;2921:2;2909:9;2900:7;2896:23;2892:32;2889:52;;;2937:1;2934;2927:12;2889:52;2973:9;2960:23;2950:33;;3002:2;3055;3044:9;3040:18;3027:32;3078:18;3119:2;3111:6;3108:14;3105:34;;;3135:1;3132;3125:12;3105:34;3173:6;3162:9;3158:22;3148:32;;3218:7;3211:4;3207:2;3203:13;3199:27;3189:55;;3240:1;3237;3230:12;3189:55;3276:2;3263:16;3298:2;3294;3291:10;3288:36;;;3304:18;;:::i;:::-;3350:2;3347:1;3343:10;3333:20;;3373:28;3397:2;3393;3389:11;3373:28;:::i;:::-;3435:15;;;3505:11;;;3501:20;;;3466:12;;;;3533:19;;;3530:39;;;3565:1;3562;3555:12;3530:39;3589:11;;;;3609:142;3625:6;3620:3;3617:15;3609:142;;;3691:17;;3679:30;;3642:12;;;;3729;;;;3609:142;;;3770:5;3760:15;;;;;;;;2767:1014;;;;;:::o;3786:328::-;3863:6;3871;3879;3932:2;3920:9;3911:7;3907:23;3903:32;3900:52;;;3948:1;3945;3938:12;3900:52;3971:29;3990:9;3971:29;:::i;:::-;3961:39;;4019:38;4053:2;4042:9;4038:18;4019:38;:::i;:::-;4009:48;;4104:2;4093:9;4089:18;4076:32;4066:42;;3786:328;;;;;:::o;4304:248::-;4372:6;4380;4433:2;4421:9;4412:7;4408:23;4404:32;4401:52;;;4449:1;4446;4439:12;4401:52;-1:-1:-1;;4472:23:1;;;4542:2;4527:18;;;4514:32;;-1:-1:-1;4304:248:1:o;4836:271::-;4910:6;4963:2;4951:9;4942:7;4938:23;4934:32;4931:52;;;4979:1;4976;4969:12;4931:52;5018:9;5005:23;5057:1;5050:5;5047:12;5037:40;;5073:1;5070;5063:12;5112:186;5171:6;5224:2;5212:9;5203:7;5199:23;5195:32;5192:52;;;5240:1;5237;5230:12;5192:52;5263:29;5282:9;5263:29;:::i;5303:407::-;5368:5;5402:18;5394:6;5391:30;5388:56;;;5424:18;;:::i;:::-;5462:57;5507:2;5486:15;;-1:-1:-1;;5482:29:1;5513:4;5478:40;5462:57;:::i;:::-;5453:66;;5542:6;5535:5;5528:21;5582:3;5573:6;5568:3;5564:16;5561:25;5558:45;;;5599:1;5596;5589:12;5558:45;5648:6;5643:3;5636:4;5629:5;5625:16;5612:43;5702:1;5695:4;5686:6;5679:5;5675:18;5671:29;5664:40;5303:407;;;;;:::o;5715:451::-;5784:6;5837:2;5825:9;5816:7;5812:23;5808:32;5805:52;;;5853:1;5850;5843:12;5805:52;5893:9;5880:23;5926:18;5918:6;5915:30;5912:50;;;5958:1;5955;5948:12;5912:50;5981:22;;6034:4;6026:13;;6022:27;-1:-1:-1;6012:55:1;;6063:1;6060;6053:12;6012:55;6086:74;6152:7;6147:2;6134:16;6129:2;6125;6121:11;6086:74;:::i;6171:366::-;6238:6;6246;6299:2;6287:9;6278:7;6274:23;6270:32;6267:52;;;6315:1;6312;6305:12;6267:52;6338:29;6357:9;6338:29;:::i;:::-;6328:39;;6417:2;6406:9;6402:18;6389:32;-1:-1:-1;;;;;6454:5:1;6450:38;6443:5;6440:49;6430:77;;6503:1;6500;6493:12;6430:77;6526:5;6516:15;;;6171:366;;;;;:::o;6542:127::-;6603:10;6598:3;6594:20;6591:1;6584:31;6634:4;6631:1;6624:15;6658:4;6655:1;6648:15;6674:343;6821:2;6806:18;;6854:1;6843:13;;6833:144;;6899:10;6894:3;6890:20;6887:1;6880:31;6934:4;6931:1;6924:15;6962:4;6959:1;6952:15;6833:144;6986:25;;;6674:343;:::o;7545:160::-;7610:20;;7666:13;;7659:21;7649:32;;7639:60;;7695:1;7692;7685:12;7710:254;7775:6;7783;7836:2;7824:9;7815:7;7811:23;7807:32;7804:52;;;7852:1;7849;7842:12;7804:52;7875:29;7894:9;7875:29;:::i;:::-;7865:39;;7923:35;7954:2;7943:9;7939:18;7923:35;:::i;:::-;7913:45;;7710:254;;;;;:::o;7969:667::-;8064:6;8072;8080;8088;8141:3;8129:9;8120:7;8116:23;8112:33;8109:53;;;8158:1;8155;8148:12;8109:53;8181:29;8200:9;8181:29;:::i;:::-;8171:39;;8229:38;8263:2;8252:9;8248:18;8229:38;:::i;:::-;8219:48;;8314:2;8303:9;8299:18;8286:32;8276:42;;8369:2;8358:9;8354:18;8341:32;8396:18;8388:6;8385:30;8382:50;;;8428:1;8425;8418:12;8382:50;8451:22;;8504:4;8496:13;;8492:27;-1:-1:-1;8482:55:1;;8533:1;8530;8523:12;8482:55;8556:74;8622:7;8617:2;8604:16;8599:2;8595;8591:11;8556:74;:::i;:::-;8546:84;;;7969:667;;;;;;;:::o;8641:180::-;8697:6;8750:2;8738:9;8729:7;8725:23;8721:32;8718:52;;;8766:1;8763;8756:12;8718:52;8789:26;8805:9;8789:26;:::i;8826:260::-;8894:6;8902;8955:2;8943:9;8934:7;8930:23;8926:32;8923:52;;;8971:1;8968;8961:12;8923:52;8994:29;9013:9;8994:29;:::i;:::-;8984:39;;9042:38;9076:2;9065:9;9061:18;9042:38;:::i;9091:254::-;9159:6;9167;9220:2;9208:9;9199:7;9195:23;9191:32;9188:52;;;9236:1;9233;9226:12;9188:52;9272:9;9259:23;9249:33;;9301:38;9335:2;9324:9;9320:18;9301:38;:::i;9350:380::-;9429:1;9425:12;;;;9472;;;9493:61;;9547:4;9539:6;9535:17;9525:27;;9493:61;9600:2;9592:6;9589:14;9569:18;9566:38;9563:161;;9646:10;9641:3;9637:20;9634:1;9627:31;9681:4;9678:1;9671:15;9709:4;9706:1;9699:15;9563:161;;9350:380;;;:::o;9735:347::-;9937:2;9919:21;;;9976:2;9956:18;;;9949:30;10015:25;10010:2;9995:18;;9988:53;10073:2;10058:18;;9735:347::o;10087:344::-;10289:2;10271:21;;;10328:2;10308:18;;;10301:30;-1:-1:-1;;;10362:2:1;10347:18;;10340:50;10422:2;10407:18;;10087:344::o;10436:127::-;10497:10;10492:3;10488:20;10485:1;10478:31;10528:4;10525:1;10518:15;10552:4;10549:1;10542:15;10568:128;10608:3;10639:1;10635:6;10632:1;10629:13;10626:39;;;10645:18;;:::i;:::-;-1:-1:-1;10681:9:1;;10568:128::o;10701:344::-;10903:2;10885:21;;;10942:2;10922:18;;;10915:30;-1:-1:-1;;;10976:2:1;10961:18;;10954:50;11036:2;11021:18;;10701:344::o;11050:354::-;11252:2;11234:21;;;11291:2;11271:18;;;11264:30;11330:32;11325:2;11310:18;;11303:60;11395:2;11380:18;;11050:354::o;12354:398::-;12556:2;12538:21;;;12595:2;12575:18;;;12568:30;12634:34;12629:2;12614:18;;12607:62;-1:-1:-1;;;12700:2:1;12685:18;;12678:32;12742:3;12727:19;;12354:398::o;13455:399::-;13657:2;13639:21;;;13696:2;13676:18;;;13669:30;13735:34;13730:2;13715:18;;13708:62;-1:-1:-1;;;13801:2:1;13786:18;;13779:33;13844:3;13829:19;;13455:399::o;13859:168::-;13899:7;13965:1;13961;13957:6;13953:14;13950:1;13947:21;13942:1;13935:9;13928:17;13924:45;13921:71;;;13972:18;;:::i;:::-;-1:-1:-1;14012:9:1;;13859:168::o;14032:127::-;14093:10;14088:3;14084:20;14081:1;14074:31;14124:4;14121:1;14114:15;14148:4;14145:1;14138:15;14164:120;14204:1;14230;14220:35;;14235:18;;:::i;:::-;-1:-1:-1;14269:9:1;;14164:120::o;14992:343::-;15194:2;15176:21;;;15233:2;15213:18;;;15206:30;-1:-1:-1;;;15267:2:1;15252:18;;15245:49;15326:2;15311:18;;14992:343::o;16991:1527::-;17215:3;17253:6;17247:13;17279:4;17292:51;17336:6;17331:3;17326:2;17318:6;17314:15;17292:51;:::i;:::-;17406:13;;17365:16;;;;17428:55;17406:13;17365:16;17450:15;;;17428:55;:::i;:::-;17572:13;;17505:20;;;17545:1;;17632;17654:18;;;;17707;;;;17734:93;;17812:4;17802:8;17798:19;17786:31;;17734:93;17875:2;17865:8;17862:16;17842:18;17839:40;17836:167;;-1:-1:-1;;;17902:33:1;;17958:4;17955:1;17948:15;17988:4;17909:3;17976:17;17836:167;18019:18;18046:110;;;;18170:1;18165:328;;;;18012:481;;18046:110;-1:-1:-1;;18081:24:1;;18067:39;;18126:20;;;;-1:-1:-1;18046:110:1;;18165:328;16938:1;16931:14;;;16975:4;16962:18;;18260:1;18274:169;18288:8;18285:1;18282:15;18274:169;;;18370:14;;18355:13;;;18348:37;18413:16;;;;18305:10;;18274:169;;;18278:3;;18474:8;18467:5;18463:20;18456:27;;18012:481;-1:-1:-1;18509:3:1;;16991:1527;-1:-1:-1;;;;;;;;;;;16991:1527:1:o;20056:489::-;-1:-1:-1;;;;;20325:15:1;;;20307:34;;20377:15;;20372:2;20357:18;;20350:43;20424:2;20409:18;;20402:34;;;20472:3;20467:2;20452:18;;20445:31;;;20250:4;;20493:46;;20519:19;;20511:6;20493:46;:::i;:::-;20485:54;20056:489;-1:-1:-1;;;;;;20056:489:1:o;20550:249::-;20619:6;20672:2;20660:9;20651:7;20647:23;20643:32;20640:52;;;20688:1;20685;20678:12;20640:52;20720:9;20714:16;20739:30;20763:5;20739:30;:::i;20804:135::-;20843:3;20864:17;;;20861:43;;20884:18;;:::i;:::-;-1:-1:-1;20931:1:1;20920:13;;20804:135::o;20944:125::-;20984:4;21012:1;21009;21006:8;21003:34;;;21017:18;;:::i;:::-;-1:-1:-1;21054:9:1;;20944:125::o;21074:112::-;21106:1;21132;21122:35;;21137:18;;:::i;:::-;-1:-1:-1;21171:9:1;;21074:112::o;21191:127::-;21252:10;21247:3;21243:20;21240:1;21233:31;21283:4;21280:1;21273:15;21307:4;21304:1;21297:15

Swarm Source

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