ETH Price: $2,874.98 (-2.52%)
 

Overview

Max Total Supply

5,000 BD

Holders

2,968

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
meowmellow.base.eth
Balance
1 BD
0xd6461b6f3206bccbf0cff3eb1b1faf416d10a26a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BasedDegens

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2023-08-25
*/

// SPDX-License-Identifier: MIT

// 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);
}

// 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;
  }
}

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

pragma solidity ^0.8.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
  /**
   * @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
  ) external;

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

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

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

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

  /**
   * @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 calldata data
  ) external;
}
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _transferOwnership(_msgSender());
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }


    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.0;

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    function toString(uint256 value) internal pure returns (string memory) {

        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);
    }

    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);
    }

    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);
    }

    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}



// 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);
}

// 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.selector);
        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.selector);

        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 Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

    /**
     * @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 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // 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, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @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. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

    /**
     * @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.selector);

        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 result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
                result = packed & _BITMASK_BURNED == 0;
            }
        }
    }

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

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (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.selector);

        _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;
                    }
                }
            }
        }

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // 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.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

        _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.selector);
            }
    }

    /**
     * @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.selector);
            }
            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.selector);

        _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:
            // - `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)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            do {
                assembly {
                    // 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`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

            _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.selector);
        if (quantity == 0) _revert(MintZeroQuantity.selector);
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);

        _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.selector);
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) _revert(bytes4(0));
            }
        }
    }

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

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

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

    // =============================================================
    //                        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.selector);
        }

        _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.selector);
        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)
        }
    }

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

pragma solidity ^0.8.19;
contract BasedDegens is Ownable, ERC721A{
    using Strings for uint256;

    string public BASE_URI = "https://ipfs.io/ipfs/bafybeid2yk3334nq6tafb4hnubu3addwntoz6j4hjzriqgateovornmzwm/";
    bool public isPublicMintEnabled = false;
    uint public maxSupply = 5000;
    uint public maxFreeSupply = 4500;
    uint public costPublic = 0.0005 ether;
    uint public maxMintPublic = 20; //per tx
    uint public freePerWallet = 5; //per wallet
    mapping(address => uint256) public mintedByAddress;

    constructor() ERC721A("Based Degens", "BD") {}

    function mint(uint _quantity) external payable {
        uint256 _cost = getCost(msg.sender, _quantity);
        require(tx.origin == msg.sender, "No contracts");
        require(isPublicMintEnabled, "Not yet");
        require(totalSupply() + _quantity <= maxSupply, "Too late");
        require(_quantity <= maxMintPublic, "Too many");
        require(msg.value == _cost, "Ether sent is incorrect");
        mintedByAddress[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function airdrop(uint256 _quantity, address _recipient) external onlyOwner {
        require(totalSupply() + _quantity <= maxSupply, "Too many");
        _safeMint(_recipient, _quantity);
    }

    function devMint(uint _quantity) external onlyOwner {
        require(totalSupply() + _quantity <= maxSupply, "Too many");
        _safeMint(msg.sender, _quantity);
    }

    function canClaim(address _address) public view returns (bool) {
        if (mintedByAddress[_address] < freePerWallet && totalSupply() < maxFreeSupply) {
        return true;
        } else {
        return false;
        }
    }

    function getCost(address _address,uint256 _count) public view returns (uint256) {
        uint256 _mintedByAddress = mintedByAddress[_address];
        bool _canClaim = canClaim(_address);
        if (_canClaim) {
        if (_count <= freePerWallet - _mintedByAddress) {
            return 0;
        } else {
            return costPublic * (_count - (freePerWallet - _mintedByAddress));
        }
        } else {
        return costPublic * _count;
        }
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(BASE_URI, _tokenId.toString(), ".json"));
    }

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

    function setPublicMintEnabled() public onlyOwner {
        isPublicMintEnabled = !isPublicMintEnabled;
    }

    function setBaseURI(string memory _baseURI) public onlyOwner {
        BASE_URI = _baseURI;
    }

    function setCost(uint256 _newCost) external onlyOwner {
        costPublic = _newCost;
    }

    function setMaxBatchSize(uint256 _newBatchSize) external onlyOwner {
        maxMintPublic = _newBatchSize;
    }

    function setFreePerWallet(uint256 _newFreePerWallet) public onlyOwner {
    freePerWallet = _newFreePerWallet;
    }

    function setMaxFreeSupply(uint256 _maxFreeSupply) public onlyOwner {
    maxFreeSupply = _maxFreeSupply;
    }

    function cutSupply(uint256 _maxSupply) public onlyOwner {
    require(_maxSupply <= maxSupply && _maxSupply >= totalSupply(), "can only decrease supply");
    maxSupply = _maxSupply;
    }

	function withdraw() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
	require(success);
    }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"canClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"cutSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFreePerWallet","type":"uint256"}],"name":"setFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBatchSize","type":"uint256"}],"name":"setMaxBatchSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeSupply","type":"uint256"}],"name":"setMaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060800160405280605181526020016200396560519139600990816200002e919062000496565b506000600a60006101000a81548160ff021916908315150217905550611388600b55611194600c556601c6bf52634000600d556014600e556005600f553480156200007857600080fd5b506040518060400160405280600c81526020017f426173656420446567656e7300000000000000000000000000000000000000008152506040518060400160405280600281526020017f424400000000000000000000000000000000000000000000000000000000000081525062000105620000f96200014760201b60201c565b6200014f60201b60201c565b816003908162000116919062000496565b50806004908162000128919062000496565b50620001396200021360201b60201c565b60018190555050506200057d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029e57607f821691505b602082108103620002b457620002b362000256565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200031e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002df565b6200032a8683620002df565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000377620003716200036b8462000342565b6200034c565b62000342565b9050919050565b6000819050919050565b620003938362000356565b620003ab620003a2826200037e565b848454620002ec565b825550505050565b600090565b620003c2620003b3565b620003cf81848462000388565b505050565b5b81811015620003f757620003eb600082620003b8565b600181019050620003d5565b5050565b601f82111562000446576200041081620002ba565b6200041b84620002cf565b810160208510156200042b578190505b620004436200043a85620002cf565b830182620003d4565b50505b505050565b600082821c905092915050565b60006200046b600019846008026200044b565b1980831691505092915050565b600062000486838362000458565b9150826002028217905092915050565b620004a1826200021c565b67ffffffffffffffff811115620004bd57620004bc62000227565b5b620004c9825462000285565b620004d6828285620003fb565b600060209050601f8311600181146200050e5760008415620004f9578287015190505b62000505858262000478565b86555062000575565b601f1984166200051e86620002ba565b60005b82811015620005485784890151825560018201915060208501945060208101905062000521565b8683101562000568578489015162000564601f89168262000458565b8355505b6001600288020188555050505b505050505050565b6133d8806200058d6000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063b88d4fde116100ab578063dbddb26a1161006f578063dbddb26a146107a1578063e985e9c5146107cc578063ef9b63ba14610809578063f2fde38b14610834578063f4c445691461085d57610225565b8063b88d4fde146106b7578063bc63f02e146106d3578063bf3506c1146106fc578063c87b56dd14610739578063d5abeb011461077657610225565b80638da5cb5b116100f25780638da5cb5b1461060557806395d89b4114610630578063a0712d681461065b578063a22cb46514610677578063a4cdd719146106a057610225565b80636352211e1461054957806363cc11131461058657806370a08231146105b1578063715018a6146105ee57610225565b80633ca63f2c116101b157806352ea4f771161017557806352ea4f771461046657806353630745146104a357806355f804b3146104cc5780635b28fd91146104f55780635b74efcf1461051e57610225565b80633ca63f2c146103af5780633ccfd60b146103ec57806342842e0e146103f657806344a0d68a14610412578063475133341461043b57610225565b8063095ea7b3116101f8578063095ea7b3146102fa57806318160ddd1461031657806323b872dd146103415780632b26a6bf1461035d578063375a069a1461038657610225565b80630116bc2d1461022a57806301ffc9a71461025557806306fdde0314610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b5061023f610886565b60405161024c9190612176565b60405180910390f35b34801561026157600080fd5b5061027c600480360381019061027791906121fd565b610899565b6040516102899190612176565b60405180910390f35b34801561029e57600080fd5b506102a761092b565b6040516102b491906122ba565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190612312565b6109bd565b6040516102f19190612380565b60405180910390f35b610314600480360381019061030f91906123c7565b610a1b565b005b34801561032257600080fd5b5061032b610a2b565b6040516103389190612416565b60405180910390f35b61035b60048036038101906103569190612431565b610a42565b005b34801561036957600080fd5b50610384600480360381019061037f9190612312565b610d03565b005b34801561039257600080fd5b506103ad60048036038101906103a89190612312565b610d15565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190612484565b610d81565b6040516103e39190612416565b60405180910390f35b6103f4610d99565b005b610410600480360381019061040b9190612431565b610e1a565b005b34801561041e57600080fd5b5061043960048036038101906104349190612312565b610e3a565b005b34801561044757600080fd5b50610450610e4c565b60405161045d9190612416565b60405180910390f35b34801561047257600080fd5b5061048d600480360381019061048891906123c7565b610e52565b60405161049a9190612416565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190612312565b610f11565b005b3480156104d857600080fd5b506104f360048036038101906104ee91906125e6565b610f23565b005b34801561050157600080fd5b5061051c60048036038101906105179190612312565b610f3e565b005b34801561052a57600080fd5b50610533610f50565b6040516105409190612416565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190612312565b610f56565b60405161057d9190612380565b60405180910390f35b34801561059257600080fd5b5061059b610f68565b6040516105a89190612416565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190612484565b610f6e565b6040516105e59190612416565b60405180910390f35b3480156105fa57600080fd5b50610603611005565b005b34801561061157600080fd5b5061061a611019565b6040516106279190612380565b60405180910390f35b34801561063c57600080fd5b50610645611042565b60405161065291906122ba565b60405180910390f35b61067560048036038101906106709190612312565b6110d4565b005b34801561068357600080fd5b5061069e6004803603810190610699919061265b565b6112e1565b005b3480156106ac57600080fd5b506106b56113ec565b005b6106d160048036038101906106cc919061273c565b611420565b005b3480156106df57600080fd5b506106fa60048036038101906106f591906127bf565b611472565b005b34801561070857600080fd5b50610723600480360381019061071e9190612484565b6114df565b6040516107309190612176565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190612312565b611551565b60405161076d91906122ba565b60405180910390f35b34801561078257600080fd5b5061078b6115cd565b6040516107989190612416565b60405180910390f35b3480156107ad57600080fd5b506107b66115d3565b6040516107c391906122ba565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee91906127ff565b611661565b6040516108009190612176565b60405180910390f35b34801561081557600080fd5b5061081e6116f5565b60405161082b9190612416565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190612484565b6116fb565b005b34801561086957600080fd5b50610884600480360381019061087f9190612312565b61177e565b005b600a60009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109245750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461093a9061286e565b80601f01602080910402602001604051908101604052809291908181526020018280546109669061286e565b80156109b35780601f10610988576101008083540402835291602001916109b3565b820191906000526020600020905b81548152906001019060200180831161099657829003601f168201915b5050505050905090565b60006109c8826117e8565b6109dd576109dc63cf4700e460e01b611861565b5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a278282600161186b565b5050565b6000610a3561199a565b6002546001540303905090565b6000610a4d826119a3565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac257610ac163a114810060e01b611861565b5b600080610ace84611a8f565b91509150610ae48187610adf611ab6565b611abe565b610b0f57610af986610af4611ab6565b611661565b610b0e57610b0d6359c896be60e01b611861565b5b5b610b1c8686866001611b02565b8015610b2757600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bf585610bd1888887611b08565b7c020000000000000000000000000000000000000000000000000000000017611b30565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c7b5760006001850190506000600560008381526020019081526020016000205403610c79576001548114610c78578360056000838152602001908152602001600020819055505b5b505b600073ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460008103610ced57610cec63ea553b3460e01b611861565b5b610cfa8787876001611b5b565b50505050505050565b610d0b611b61565b80600e8190555050565b610d1d611b61565b600b5481610d29610a2b565b610d3391906128ce565b1115610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b9061294e565b60405180910390fd5b610d7e3382611bdf565b50565b60106020528060005260406000206000915090505481565b610da1611b61565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610dc79061299f565b60006040518083038185875af1925050503d8060008114610e04576040519150601f19603f3d011682016040523d82523d6000602084013e610e09565b606091505b5050905080610e1757600080fd5b50565b610e3583838360405180602001604052806000815250611420565b505050565b610e42611b61565b80600d8190555050565b600c5481565b600080601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610ea2856114df565b90508015610ef85781600f54610eb891906129b4565b8411610ec957600092505050610f0b565b81600f54610ed791906129b4565b84610ee291906129b4565b600d54610eef91906129e8565b92505050610f0b565b83600d54610f0691906129e8565b925050505b92915050565b610f19611b61565b80600f8190555050565b610f2b611b61565b8060099081610f3a9190612bd6565b5050565b610f46611b61565b80600c8190555050565b600f5481565b6000610f61826119a3565b9050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb457610fb3638f4eb60460e01b611861565b5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61100d611b61565b6110176000611bfd565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546110519061286e565b80601f016020809104026020016040519081016040528092919081815260200182805461107d9061286e565b80156110ca5780601f1061109f576101008083540402835291602001916110ca565b820191906000526020600020905b8154815290600101906020018083116110ad57829003601f168201915b5050505050905090565b60006110e03383610e52565b90503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790612cf4565b60405180910390fd5b600a60009054906101000a900460ff1661119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690612d60565b60405180910390fd5b600b54826111ab610a2b565b6111b591906128ce565b11156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90612dcc565b60405180910390fd5b600e5482111561123b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112329061294e565b60405180910390fd5b80341461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490612e38565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112cc91906128ce565b925050819055506112dd3383611bdf565b5050565b80600860006112ee611ab6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661139b611ab6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113e09190612176565b60405180910390a35050565b6113f4611b61565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b61142b848484610a42565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461146c5761145684848484611cc1565b61146b5761146a63d1a57ed660e01b611861565b5b5b50505050565b61147a611b61565b600b5482611486610a2b565b61149091906128ce565b11156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c89061294e565b60405180910390fd5b6114db8183611bdf565b5050565b6000600f54601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541080156115395750600c54611537610a2b565b105b15611547576001905061154c565b600090505b919050565b606061155c826117e8565b61159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290612eca565b60405180910390fd5b60096115a683611df0565b6040516020016115b7929190612ff5565b6040516020818303038152906040529050919050565b600b5481565b600980546115e09061286e565b80601f016020809104026020016040519081016040528092919081815260200182805461160c9061286e565b80156116595780601f1061162e57610100808354040283529160200191611659565b820191906000526020600020905b81548152906001019060200180831161163c57829003601f168201915b505050505081565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b611703611b61565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613096565b60405180910390fd5b61177b81611bfd565b50565b611786611b61565b600b54811115801561179f575061179b610a2b565b8110155b6117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d590613102565b60405180910390fd5b80600b8190555050565b6000816117f361199a565b1161185c5760015482101561185b5760005b6000600560008581526020019081526020016000205491508103611834578261182d90613122565b9250611805565b60007c01000000000000000000000000000000000000000000000000000000008216149150505b5b919050565b8060005260046000fd5b600061187683610f56565b90508180156118b857508073ffffffffffffffffffffffffffffffffffffffff1661189f611ab6565b73ffffffffffffffffffffffffffffffffffffffff1614155b156118e4576118ce816118c9611ab6565b611661565b6118e3576118e263cfb3b94260e01b611861565b5b5b836007600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60006001905090565b6000816119ae61199a565b11611a79576005600083815260200190815260200160002054905060008103611a505760015482106119eb576119ea63df2d9b4260e01b611861565b5b5b60056000836001900393508381526020019081526020016000205490506000810315611a4b5760007c010000000000000000000000000000000000000000000000000000000082160315611a8a57611a4a63df2d9b4260e01b611861565b5b6119ec565b60007c010000000000000000000000000000000000000000000000000000000082160315611a8a575b611a8963df2d9b4260e01b611861565b5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b1f868684611f50565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b69611f59565b73ffffffffffffffffffffffffffffffffffffffff16611b87611019565b73ffffffffffffffffffffffffffffffffffffffff1614611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490613197565b60405180910390fd5b565b611bf9828260405180602001604052806000815250611f61565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ce7611ab6565b8786866040518563ffffffff1660e01b8152600401611d09949392919061320c565b6020604051808303816000875af1925050508015611d4557506040513d601f19601f82011682018060405250810190611d42919061326d565b60015b611d9d573d8060008114611d75576040519150601f19603f3d011682016040523d82523d6000602084013e611d7a565b606091505b506000815103611d9557611d9463d1a57ed660e01b611861565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611e37576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f4b565b600082905060005b60008214611e69578080611e529061329a565b915050600a82611e629190613311565b9150611e3f565b60008167ffffffffffffffff811115611e8557611e846124bb565b5b6040519080825280601f01601f191660200182016040528015611eb75781602001600182028036833780820191505090505b5090505b60008514611f4457600182611ed091906129b4565b9150600a85611edf9190613342565b6030611eeb91906128ce565b60f81b818381518110611f0157611f00613373565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f3d9190613311565b9450611ebb565b8093505050505b919050565b60009392505050565b600033905090565b611f6b8383611fe7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fe25760006001549050600083820390505b611fac6000868380600101945086611cc1565b611fc157611fc063d1a57ed660e01b611861565b5b818110611f99578160015414611fdf57611fde600060e01b611861565b5b50505b505050565b60006001549050600082036120075761200663b562e8dd60e01b611861565b5b6120146000848385611b02565b612034836120256000866000611b08565b61202e8561214b565b17611b30565b6005600083815260200190815260200160002081905550600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff16169050600081036120ec576120eb632e07630060e01b611861565b5b6000838301905060008390505b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48181600101915081036120f957816001819055505050506121466000848385611b5b565b505050565b60006001821460e11b9050919050565b60008115159050919050565b6121708161215b565b82525050565b600060208201905061218b6000830184612167565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121da816121a5565b81146121e557600080fd5b50565b6000813590506121f7816121d1565b92915050565b6000602082840312156122135761221261219b565b5b6000612221848285016121e8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612264578082015181840152602081019050612249565b60008484015250505050565b6000601f19601f8301169050919050565b600061228c8261222a565b6122968185612235565b93506122a6818560208601612246565b6122af81612270565b840191505092915050565b600060208201905081810360008301526122d48184612281565b905092915050565b6000819050919050565b6122ef816122dc565b81146122fa57600080fd5b50565b60008135905061230c816122e6565b92915050565b6000602082840312156123285761232761219b565b5b6000612336848285016122fd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236a8261233f565b9050919050565b61237a8161235f565b82525050565b60006020820190506123956000830184612371565b92915050565b6123a48161235f565b81146123af57600080fd5b50565b6000813590506123c18161239b565b92915050565b600080604083850312156123de576123dd61219b565b5b60006123ec858286016123b2565b92505060206123fd858286016122fd565b9150509250929050565b612410816122dc565b82525050565b600060208201905061242b6000830184612407565b92915050565b60008060006060848603121561244a5761244961219b565b5b6000612458868287016123b2565b9350506020612469868287016123b2565b925050604061247a868287016122fd565b9150509250925092565b60006020828403121561249a5761249961219b565b5b60006124a8848285016123b2565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124f382612270565b810181811067ffffffffffffffff82111715612512576125116124bb565b5b80604052505050565b6000612525612191565b905061253182826124ea565b919050565b600067ffffffffffffffff821115612551576125506124bb565b5b61255a82612270565b9050602081019050919050565b82818337600083830152505050565b600061258961258484612536565b61251b565b9050828152602081018484840111156125a5576125a46124b6565b5b6125b0848285612567565b509392505050565b600082601f8301126125cd576125cc6124b1565b5b81356125dd848260208601612576565b91505092915050565b6000602082840312156125fc576125fb61219b565b5b600082013567ffffffffffffffff81111561261a576126196121a0565b5b612626848285016125b8565b91505092915050565b6126388161215b565b811461264357600080fd5b50565b6000813590506126558161262f565b92915050565b600080604083850312156126725761267161219b565b5b6000612680858286016123b2565b925050602061269185828601612646565b9150509250929050565b600067ffffffffffffffff8211156126b6576126b56124bb565b5b6126bf82612270565b9050602081019050919050565b60006126df6126da8461269b565b61251b565b9050828152602081018484840111156126fb576126fa6124b6565b5b612706848285612567565b509392505050565b600082601f830112612723576127226124b1565b5b81356127338482602086016126cc565b91505092915050565b600080600080608085870312156127565761275561219b565b5b6000612764878288016123b2565b9450506020612775878288016123b2565b9350506040612786878288016122fd565b925050606085013567ffffffffffffffff8111156127a7576127a66121a0565b5b6127b38782880161270e565b91505092959194509250565b600080604083850312156127d6576127d561219b565b5b60006127e4858286016122fd565b92505060206127f5858286016123b2565b9150509250929050565b600080604083850312156128165761281561219b565b5b6000612824858286016123b2565b9250506020612835858286016123b2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061288657607f821691505b6020821081036128995761289861283f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128d9826122dc565b91506128e4836122dc565b92508282019050808211156128fc576128fb61289f565b5b92915050565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b6000612938600883612235565b915061294382612902565b602082019050919050565b600060208201905081810360008301526129678161292b565b9050919050565b600081905092915050565b50565b600061298960008361296e565b915061299482612979565b600082019050919050565b60006129aa8261297c565b9150819050919050565b60006129bf826122dc565b91506129ca836122dc565b92508282039050818111156129e2576129e161289f565b5b92915050565b60006129f3826122dc565b91506129fe836122dc565b9250828202612a0c816122dc565b91508282048414831517612a2357612a2261289f565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a8c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a4f565b612a968683612a4f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ad3612ace612ac9846122dc565b612aae565b6122dc565b9050919050565b6000819050919050565b612aed83612ab8565b612b01612af982612ada565b848454612a5c565b825550505050565b600090565b612b16612b09565b612b21818484612ae4565b505050565b5b81811015612b4557612b3a600082612b0e565b600181019050612b27565b5050565b601f821115612b8a57612b5b81612a2a565b612b6484612a3f565b81016020851015612b73578190505b612b87612b7f85612a3f565b830182612b26565b50505b505050565b600082821c905092915050565b6000612bad60001984600802612b8f565b1980831691505092915050565b6000612bc68383612b9c565b9150826002028217905092915050565b612bdf8261222a565b67ffffffffffffffff811115612bf857612bf76124bb565b5b612c02825461286e565b612c0d828285612b49565b600060209050601f831160018114612c405760008415612c2e578287015190505b612c388582612bba565b865550612ca0565b601f198416612c4e86612a2a565b60005b82811015612c7657848901518255600182019150602085019450602081019050612c51565b86831015612c935784890151612c8f601f891682612b9c565b8355505b6001600288020188555050505b505050505050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000612cde600c83612235565b9150612ce982612ca8565b602082019050919050565b60006020820190508181036000830152612d0d81612cd1565b9050919050565b7f4e6f742079657400000000000000000000000000000000000000000000000000600082015250565b6000612d4a600783612235565b9150612d5582612d14565b602082019050919050565b60006020820190508181036000830152612d7981612d3d565b9050919050565b7f546f6f206c617465000000000000000000000000000000000000000000000000600082015250565b6000612db6600883612235565b9150612dc182612d80565b602082019050919050565b60006020820190508181036000830152612de581612da9565b9050919050565b7f45746865722073656e7420697320696e636f7272656374000000000000000000600082015250565b6000612e22601783612235565b9150612e2d82612dec565b602082019050919050565b60006020820190508181036000830152612e5181612e15565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612eb4602f83612235565b9150612ebf82612e58565b604082019050919050565b60006020820190508181036000830152612ee381612ea7565b9050919050565b600081905092915050565b60008154612f028161286e565b612f0c8186612eea565b94506001821660008114612f275760018114612f3c57612f6f565b60ff1983168652811515820286019350612f6f565b612f4585612a2a565b60005b83811015612f6757815481890152600182019150602081019050612f48565b838801955050505b50505092915050565b6000612f838261222a565b612f8d8185612eea565b9350612f9d818560208601612246565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612fdf600583612eea565b9150612fea82612fa9565b600582019050919050565b60006130018285612ef5565b915061300d8284612f78565b915061301882612fd2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613080602683612235565b915061308b82613024565b604082019050919050565b600060208201905081810360008301526130af81613073565b9050919050565b7f63616e206f6e6c7920646563726561736520737570706c790000000000000000600082015250565b60006130ec601883612235565b91506130f7826130b6565b602082019050919050565b6000602082019050818103600083015261311b816130df565b9050919050565b600061312d826122dc565b9150600082036131405761313f61289f565b5b600182039050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613181602083612235565b915061318c8261314b565b602082019050919050565b600060208201905081810360008301526131b081613174565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131de826131b7565b6131e881856131c2565b93506131f8818560208601612246565b61320181612270565b840191505092915050565b60006080820190506132216000830187612371565b61322e6020830186612371565b61323b6040830185612407565b818103606083015261324d81846131d3565b905095945050505050565b600081519050613267816121d1565b92915050565b6000602082840312156132835761328261219b565b5b600061329184828501613258565b91505092915050565b60006132a5826122dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132d7576132d661289f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061331c826122dc565b9150613327836122dc565b925082613337576133366132e2565b5b828204905092915050565b600061334d826122dc565b9150613358836122dc565b925082613368576133676132e2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bc39fb2b4d404e2cde3db53d0c8711583a65610abea7f38a059e60092f41e9b964736f6c6343000813003368747470733a2f2f697066732e696f2f697066732f626166796265696432796b333333346e71367461666234686e75627533616464776e746f7a366a34686a7a726971676174656f766f726e6d7a776d2f

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636352211e11610123578063b88d4fde116100ab578063dbddb26a1161006f578063dbddb26a146107a1578063e985e9c5146107cc578063ef9b63ba14610809578063f2fde38b14610834578063f4c445691461085d57610225565b8063b88d4fde146106b7578063bc63f02e146106d3578063bf3506c1146106fc578063c87b56dd14610739578063d5abeb011461077657610225565b80638da5cb5b116100f25780638da5cb5b1461060557806395d89b4114610630578063a0712d681461065b578063a22cb46514610677578063a4cdd719146106a057610225565b80636352211e1461054957806363cc11131461058657806370a08231146105b1578063715018a6146105ee57610225565b80633ca63f2c116101b157806352ea4f771161017557806352ea4f771461046657806353630745146104a357806355f804b3146104cc5780635b28fd91146104f55780635b74efcf1461051e57610225565b80633ca63f2c146103af5780633ccfd60b146103ec57806342842e0e146103f657806344a0d68a14610412578063475133341461043b57610225565b8063095ea7b3116101f8578063095ea7b3146102fa57806318160ddd1461031657806323b872dd146103415780632b26a6bf1461035d578063375a069a1461038657610225565b80630116bc2d1461022a57806301ffc9a71461025557806306fdde0314610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b5061023f610886565b60405161024c9190612176565b60405180910390f35b34801561026157600080fd5b5061027c600480360381019061027791906121fd565b610899565b6040516102899190612176565b60405180910390f35b34801561029e57600080fd5b506102a761092b565b6040516102b491906122ba565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190612312565b6109bd565b6040516102f19190612380565b60405180910390f35b610314600480360381019061030f91906123c7565b610a1b565b005b34801561032257600080fd5b5061032b610a2b565b6040516103389190612416565b60405180910390f35b61035b60048036038101906103569190612431565b610a42565b005b34801561036957600080fd5b50610384600480360381019061037f9190612312565b610d03565b005b34801561039257600080fd5b506103ad60048036038101906103a89190612312565b610d15565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190612484565b610d81565b6040516103e39190612416565b60405180910390f35b6103f4610d99565b005b610410600480360381019061040b9190612431565b610e1a565b005b34801561041e57600080fd5b5061043960048036038101906104349190612312565b610e3a565b005b34801561044757600080fd5b50610450610e4c565b60405161045d9190612416565b60405180910390f35b34801561047257600080fd5b5061048d600480360381019061048891906123c7565b610e52565b60405161049a9190612416565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190612312565b610f11565b005b3480156104d857600080fd5b506104f360048036038101906104ee91906125e6565b610f23565b005b34801561050157600080fd5b5061051c60048036038101906105179190612312565b610f3e565b005b34801561052a57600080fd5b50610533610f50565b6040516105409190612416565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190612312565b610f56565b60405161057d9190612380565b60405180910390f35b34801561059257600080fd5b5061059b610f68565b6040516105a89190612416565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190612484565b610f6e565b6040516105e59190612416565b60405180910390f35b3480156105fa57600080fd5b50610603611005565b005b34801561061157600080fd5b5061061a611019565b6040516106279190612380565b60405180910390f35b34801561063c57600080fd5b50610645611042565b60405161065291906122ba565b60405180910390f35b61067560048036038101906106709190612312565b6110d4565b005b34801561068357600080fd5b5061069e6004803603810190610699919061265b565b6112e1565b005b3480156106ac57600080fd5b506106b56113ec565b005b6106d160048036038101906106cc919061273c565b611420565b005b3480156106df57600080fd5b506106fa60048036038101906106f591906127bf565b611472565b005b34801561070857600080fd5b50610723600480360381019061071e9190612484565b6114df565b6040516107309190612176565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190612312565b611551565b60405161076d91906122ba565b60405180910390f35b34801561078257600080fd5b5061078b6115cd565b6040516107989190612416565b60405180910390f35b3480156107ad57600080fd5b506107b66115d3565b6040516107c391906122ba565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee91906127ff565b611661565b6040516108009190612176565b60405180910390f35b34801561081557600080fd5b5061081e6116f5565b60405161082b9190612416565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190612484565b6116fb565b005b34801561086957600080fd5b50610884600480360381019061087f9190612312565b61177e565b005b600a60009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109245750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461093a9061286e565b80601f01602080910402602001604051908101604052809291908181526020018280546109669061286e565b80156109b35780601f10610988576101008083540402835291602001916109b3565b820191906000526020600020905b81548152906001019060200180831161099657829003601f168201915b5050505050905090565b60006109c8826117e8565b6109dd576109dc63cf4700e460e01b611861565b5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a278282600161186b565b5050565b6000610a3561199a565b6002546001540303905090565b6000610a4d826119a3565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ac257610ac163a114810060e01b611861565b5b600080610ace84611a8f565b91509150610ae48187610adf611ab6565b611abe565b610b0f57610af986610af4611ab6565b611661565b610b0e57610b0d6359c896be60e01b611861565b5b5b610b1c8686866001611b02565b8015610b2757600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bf585610bd1888887611b08565b7c020000000000000000000000000000000000000000000000000000000017611b30565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c7b5760006001850190506000600560008381526020019081526020016000205403610c79576001548114610c78578360056000838152602001908152602001600020819055505b5b505b600073ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460008103610ced57610cec63ea553b3460e01b611861565b5b610cfa8787876001611b5b565b50505050505050565b610d0b611b61565b80600e8190555050565b610d1d611b61565b600b5481610d29610a2b565b610d3391906128ce565b1115610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b9061294e565b60405180910390fd5b610d7e3382611bdf565b50565b60106020528060005260406000206000915090505481565b610da1611b61565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610dc79061299f565b60006040518083038185875af1925050503d8060008114610e04576040519150601f19603f3d011682016040523d82523d6000602084013e610e09565b606091505b5050905080610e1757600080fd5b50565b610e3583838360405180602001604052806000815250611420565b505050565b610e42611b61565b80600d8190555050565b600c5481565b600080601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610ea2856114df565b90508015610ef85781600f54610eb891906129b4565b8411610ec957600092505050610f0b565b81600f54610ed791906129b4565b84610ee291906129b4565b600d54610eef91906129e8565b92505050610f0b565b83600d54610f0691906129e8565b925050505b92915050565b610f19611b61565b80600f8190555050565b610f2b611b61565b8060099081610f3a9190612bd6565b5050565b610f46611b61565b80600c8190555050565b600f5481565b6000610f61826119a3565b9050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb457610fb3638f4eb60460e01b611861565b5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61100d611b61565b6110176000611bfd565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546110519061286e565b80601f016020809104026020016040519081016040528092919081815260200182805461107d9061286e565b80156110ca5780601f1061109f576101008083540402835291602001916110ca565b820191906000526020600020905b8154815290600101906020018083116110ad57829003601f168201915b5050505050905090565b60006110e03383610e52565b90503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790612cf4565b60405180910390fd5b600a60009054906101000a900460ff1661119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690612d60565b60405180910390fd5b600b54826111ab610a2b565b6111b591906128ce565b11156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90612dcc565b60405180910390fd5b600e5482111561123b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112329061294e565b60405180910390fd5b80341461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490612e38565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112cc91906128ce565b925050819055506112dd3383611bdf565b5050565b80600860006112ee611ab6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661139b611ab6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113e09190612176565b60405180910390a35050565b6113f4611b61565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b61142b848484610a42565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461146c5761145684848484611cc1565b61146b5761146a63d1a57ed660e01b611861565b5b5b50505050565b61147a611b61565b600b5482611486610a2b565b61149091906128ce565b11156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c89061294e565b60405180910390fd5b6114db8183611bdf565b5050565b6000600f54601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541080156115395750600c54611537610a2b565b105b15611547576001905061154c565b600090505b919050565b606061155c826117e8565b61159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290612eca565b60405180910390fd5b60096115a683611df0565b6040516020016115b7929190612ff5565b6040516020818303038152906040529050919050565b600b5481565b600980546115e09061286e565b80601f016020809104026020016040519081016040528092919081815260200182805461160c9061286e565b80156116595780601f1061162e57610100808354040283529160200191611659565b820191906000526020600020905b81548152906001019060200180831161163c57829003601f168201915b505050505081565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b611703611b61565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613096565b60405180910390fd5b61177b81611bfd565b50565b611786611b61565b600b54811115801561179f575061179b610a2b565b8110155b6117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d590613102565b60405180910390fd5b80600b8190555050565b6000816117f361199a565b1161185c5760015482101561185b5760005b6000600560008581526020019081526020016000205491508103611834578261182d90613122565b9250611805565b60007c01000000000000000000000000000000000000000000000000000000008216149150505b5b919050565b8060005260046000fd5b600061187683610f56565b90508180156118b857508073ffffffffffffffffffffffffffffffffffffffff1661189f611ab6565b73ffffffffffffffffffffffffffffffffffffffff1614155b156118e4576118ce816118c9611ab6565b611661565b6118e3576118e263cfb3b94260e01b611861565b5b5b836007600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60006001905090565b6000816119ae61199a565b11611a79576005600083815260200190815260200160002054905060008103611a505760015482106119eb576119ea63df2d9b4260e01b611861565b5b5b60056000836001900393508381526020019081526020016000205490506000810315611a4b5760007c010000000000000000000000000000000000000000000000000000000082160315611a8a57611a4a63df2d9b4260e01b611861565b5b6119ec565b60007c010000000000000000000000000000000000000000000000000000000082160315611a8a575b611a8963df2d9b4260e01b611861565b5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b1f868684611f50565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b69611f59565b73ffffffffffffffffffffffffffffffffffffffff16611b87611019565b73ffffffffffffffffffffffffffffffffffffffff1614611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490613197565b60405180910390fd5b565b611bf9828260405180602001604052806000815250611f61565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ce7611ab6565b8786866040518563ffffffff1660e01b8152600401611d09949392919061320c565b6020604051808303816000875af1925050508015611d4557506040513d601f19601f82011682018060405250810190611d42919061326d565b60015b611d9d573d8060008114611d75576040519150601f19603f3d011682016040523d82523d6000602084013e611d7a565b606091505b506000815103611d9557611d9463d1a57ed660e01b611861565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611e37576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f4b565b600082905060005b60008214611e69578080611e529061329a565b915050600a82611e629190613311565b9150611e3f565b60008167ffffffffffffffff811115611e8557611e846124bb565b5b6040519080825280601f01601f191660200182016040528015611eb75781602001600182028036833780820191505090505b5090505b60008514611f4457600182611ed091906129b4565b9150600a85611edf9190613342565b6030611eeb91906128ce565b60f81b818381518110611f0157611f00613373565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f3d9190613311565b9450611ebb565b8093505050505b919050565b60009392505050565b600033905090565b611f6b8383611fe7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fe25760006001549050600083820390505b611fac6000868380600101945086611cc1565b611fc157611fc063d1a57ed660e01b611861565b5b818110611f99578160015414611fdf57611fde600060e01b611861565b5b50505b505050565b60006001549050600082036120075761200663b562e8dd60e01b611861565b5b6120146000848385611b02565b612034836120256000866000611b08565b61202e8561214b565b17611b30565b6005600083815260200190815260200160002081905550600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff16169050600081036120ec576120eb632e07630060e01b611861565b5b6000838301905060008390505b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48181600101915081036120f957816001819055505050506121466000848385611b5b565b505050565b60006001821460e11b9050919050565b60008115159050919050565b6121708161215b565b82525050565b600060208201905061218b6000830184612167565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121da816121a5565b81146121e557600080fd5b50565b6000813590506121f7816121d1565b92915050565b6000602082840312156122135761221261219b565b5b6000612221848285016121e8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612264578082015181840152602081019050612249565b60008484015250505050565b6000601f19601f8301169050919050565b600061228c8261222a565b6122968185612235565b93506122a6818560208601612246565b6122af81612270565b840191505092915050565b600060208201905081810360008301526122d48184612281565b905092915050565b6000819050919050565b6122ef816122dc565b81146122fa57600080fd5b50565b60008135905061230c816122e6565b92915050565b6000602082840312156123285761232761219b565b5b6000612336848285016122fd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236a8261233f565b9050919050565b61237a8161235f565b82525050565b60006020820190506123956000830184612371565b92915050565b6123a48161235f565b81146123af57600080fd5b50565b6000813590506123c18161239b565b92915050565b600080604083850312156123de576123dd61219b565b5b60006123ec858286016123b2565b92505060206123fd858286016122fd565b9150509250929050565b612410816122dc565b82525050565b600060208201905061242b6000830184612407565b92915050565b60008060006060848603121561244a5761244961219b565b5b6000612458868287016123b2565b9350506020612469868287016123b2565b925050604061247a868287016122fd565b9150509250925092565b60006020828403121561249a5761249961219b565b5b60006124a8848285016123b2565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124f382612270565b810181811067ffffffffffffffff82111715612512576125116124bb565b5b80604052505050565b6000612525612191565b905061253182826124ea565b919050565b600067ffffffffffffffff821115612551576125506124bb565b5b61255a82612270565b9050602081019050919050565b82818337600083830152505050565b600061258961258484612536565b61251b565b9050828152602081018484840111156125a5576125a46124b6565b5b6125b0848285612567565b509392505050565b600082601f8301126125cd576125cc6124b1565b5b81356125dd848260208601612576565b91505092915050565b6000602082840312156125fc576125fb61219b565b5b600082013567ffffffffffffffff81111561261a576126196121a0565b5b612626848285016125b8565b91505092915050565b6126388161215b565b811461264357600080fd5b50565b6000813590506126558161262f565b92915050565b600080604083850312156126725761267161219b565b5b6000612680858286016123b2565b925050602061269185828601612646565b9150509250929050565b600067ffffffffffffffff8211156126b6576126b56124bb565b5b6126bf82612270565b9050602081019050919050565b60006126df6126da8461269b565b61251b565b9050828152602081018484840111156126fb576126fa6124b6565b5b612706848285612567565b509392505050565b600082601f830112612723576127226124b1565b5b81356127338482602086016126cc565b91505092915050565b600080600080608085870312156127565761275561219b565b5b6000612764878288016123b2565b9450506020612775878288016123b2565b9350506040612786878288016122fd565b925050606085013567ffffffffffffffff8111156127a7576127a66121a0565b5b6127b38782880161270e565b91505092959194509250565b600080604083850312156127d6576127d561219b565b5b60006127e4858286016122fd565b92505060206127f5858286016123b2565b9150509250929050565b600080604083850312156128165761281561219b565b5b6000612824858286016123b2565b9250506020612835858286016123b2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061288657607f821691505b6020821081036128995761289861283f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128d9826122dc565b91506128e4836122dc565b92508282019050808211156128fc576128fb61289f565b5b92915050565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b6000612938600883612235565b915061294382612902565b602082019050919050565b600060208201905081810360008301526129678161292b565b9050919050565b600081905092915050565b50565b600061298960008361296e565b915061299482612979565b600082019050919050565b60006129aa8261297c565b9150819050919050565b60006129bf826122dc565b91506129ca836122dc565b92508282039050818111156129e2576129e161289f565b5b92915050565b60006129f3826122dc565b91506129fe836122dc565b9250828202612a0c816122dc565b91508282048414831517612a2357612a2261289f565b5b5092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a8c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a4f565b612a968683612a4f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ad3612ace612ac9846122dc565b612aae565b6122dc565b9050919050565b6000819050919050565b612aed83612ab8565b612b01612af982612ada565b848454612a5c565b825550505050565b600090565b612b16612b09565b612b21818484612ae4565b505050565b5b81811015612b4557612b3a600082612b0e565b600181019050612b27565b5050565b601f821115612b8a57612b5b81612a2a565b612b6484612a3f565b81016020851015612b73578190505b612b87612b7f85612a3f565b830182612b26565b50505b505050565b600082821c905092915050565b6000612bad60001984600802612b8f565b1980831691505092915050565b6000612bc68383612b9c565b9150826002028217905092915050565b612bdf8261222a565b67ffffffffffffffff811115612bf857612bf76124bb565b5b612c02825461286e565b612c0d828285612b49565b600060209050601f831160018114612c405760008415612c2e578287015190505b612c388582612bba565b865550612ca0565b601f198416612c4e86612a2a565b60005b82811015612c7657848901518255600182019150602085019450602081019050612c51565b86831015612c935784890151612c8f601f891682612b9c565b8355505b6001600288020188555050505b505050505050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000612cde600c83612235565b9150612ce982612ca8565b602082019050919050565b60006020820190508181036000830152612d0d81612cd1565b9050919050565b7f4e6f742079657400000000000000000000000000000000000000000000000000600082015250565b6000612d4a600783612235565b9150612d5582612d14565b602082019050919050565b60006020820190508181036000830152612d7981612d3d565b9050919050565b7f546f6f206c617465000000000000000000000000000000000000000000000000600082015250565b6000612db6600883612235565b9150612dc182612d80565b602082019050919050565b60006020820190508181036000830152612de581612da9565b9050919050565b7f45746865722073656e7420697320696e636f7272656374000000000000000000600082015250565b6000612e22601783612235565b9150612e2d82612dec565b602082019050919050565b60006020820190508181036000830152612e5181612e15565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612eb4602f83612235565b9150612ebf82612e58565b604082019050919050565b60006020820190508181036000830152612ee381612ea7565b9050919050565b600081905092915050565b60008154612f028161286e565b612f0c8186612eea565b94506001821660008114612f275760018114612f3c57612f6f565b60ff1983168652811515820286019350612f6f565b612f4585612a2a565b60005b83811015612f6757815481890152600182019150602081019050612f48565b838801955050505b50505092915050565b6000612f838261222a565b612f8d8185612eea565b9350612f9d818560208601612246565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612fdf600583612eea565b9150612fea82612fa9565b600582019050919050565b60006130018285612ef5565b915061300d8284612f78565b915061301882612fd2565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613080602683612235565b915061308b82613024565b604082019050919050565b600060208201905081810360008301526130af81613073565b9050919050565b7f63616e206f6e6c7920646563726561736520737570706c790000000000000000600082015250565b60006130ec601883612235565b91506130f7826130b6565b602082019050919050565b6000602082019050818103600083015261311b816130df565b9050919050565b600061312d826122dc565b9150600082036131405761313f61289f565b5b600182039050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613181602083612235565b915061318c8261314b565b602082019050919050565b600060208201905081810360008301526131b081613174565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131de826131b7565b6131e881856131c2565b93506131f8818560208601612246565b61320181612270565b840191505092915050565b60006080820190506132216000830187612371565b61322e6020830186612371565b61323b6040830185612407565b818103606083015261324d81846131d3565b905095945050505050565b600081519050613267816121d1565b92915050565b6000602082840312156132835761328261219b565b5b600061329184828501613258565b91505092915050565b60006132a5826122dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132d7576132d661289f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061331c826122dc565b9150613327836122dc565b925082613337576133366132e2565b5b828204905092915050565b600061334d826122dc565b9150613358836122dc565b925082613368576133676132e2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bc39fb2b4d404e2cde3db53d0c8711583a65610abea7f38a059e60092f41e9b964736f6c63430008130033

Deployed Bytecode Sourcemap

63241:3628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63437:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27949:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28851:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35885:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35602:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24593:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39619:3523;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66145:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64529:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63696:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66710:154;;;:::i;:::-;;43238:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66043:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63518:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64954:480;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66268:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65936:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66394:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63647:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30253:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63557:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25777:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7425:103;;;;;;;;;;;;;:::i;:::-;;7190:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29027:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63809:508;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36452:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65818:110;;;;;;;;;;;;;:::i;:::-;;44029:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64325:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64710:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65442:259;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63483:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63322:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36843:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63601:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7538:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66514:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63437:39;;;;;;;;;;;;;:::o;27949:639::-;28034:4;28373:10;28358:25;;:11;:25;;;;:102;;;;28450:10;28435:25;;:11;:25;;;;28358:102;:179;;;;28527:10;28512:25;;:11;:25;;;;28358:179;28338:199;;27949:639;;;:::o;28851:100::-;28905:13;28938:5;28931:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28851:100;:::o;35885:227::-;35961:7;35986:16;35994:7;35986;:16::i;:::-;35981:73;;36004:50;36012:41;;;36004:7;:50::i;:::-;35981:73;36074:15;:24;36090:7;36074:24;;;;;;;;;;;:30;;;;;;;;;;;;36067:37;;35885:227;;;:::o;35602:124::-;35691:27;35700:2;35704:7;35713:4;35691:8;:27::i;:::-;35602:124;;:::o;24593:323::-;24654:7;24882:15;:13;:15::i;:::-;24867:12;;24851:13;;:28;:46;24844:53;;24593:323;:::o;39619:3523::-;39761:27;39791;39810:7;39791:18;:27::i;:::-;39761:57;;21394:14;39962:4;39946:22;;:41;39923:66;;40047:4;40006:45;;40022:19;40006:45;;;40002:95;;40053:44;40061:35;;;40053:7;:44::i;:::-;40002:95;40111:27;40140:23;40167:35;40194:7;40167:26;:35::i;:::-;40110:92;;;;40302:68;40327:15;40344:4;40350:19;:17;:19::i;:::-;40302:24;:68::i;:::-;40297:189;;40390:43;40407:4;40413:19;:17;:19::i;:::-;40390:16;:43::i;:::-;40385:101;;40435:51;40443:42;;;40435:7;:51::i;:::-;40385:101;40297:189;40499:43;40521:4;40527:2;40531:7;40540:1;40499:21;:43::i;:::-;40635:15;40632:160;;;40775:1;40754:19;40747:30;40632:160;41172:18;:24;41191:4;41172:24;;;;;;;;;;;;;;;;41170:26;;;;;;;;;;;;41241:18;:22;41260:2;41241:22;;;;;;;;;;;;;;;;41239:24;;;;;;;;;;;41563:146;41600:2;41649:45;41664:4;41670:2;41674:19;41649:14;:45::i;:::-;20992:8;41621:73;41563:18;:146::i;:::-;41534:17;:26;41552:7;41534:26;;;;;;;;;;;:175;;;;41880:1;20992:8;41829:19;:47;:52;41825:627;;41902:19;41934:1;41924:7;:11;41902:33;;42091:1;42057:17;:30;42075:11;42057:30;;;;;;;;;;;;:35;42053:384;;42195:13;;42180:11;:28;42176:242;;42375:19;42342:17;:30;42360:11;42342:30;;;;;;;;;;;:52;;;;42176:242;42053:384;41883:569;41825:627;42565:16;21394:14;42600:2;42584:20;;:39;42565:58;;42964:7;42928:8;42894:4;42836:25;42781:1;42724;42701:299;43037:1;43025:8;:13;43021:58;;43040:39;43048:30;;;43040:7;:39::i;:::-;43021:58;43092:42;43113:4;43119:2;43123:7;43132:1;43092:20;:42::i;:::-;39750:3392;;;;39619:3523;;;:::o;66145:115::-;7149:13;:11;:13::i;:::-;66239::::1;66223;:29;;;;66145:115:::0;:::o;64529:173::-;7149:13;:11;:13::i;:::-;64629:9:::1;;64616;64600:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;64592:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;64662:32;64672:10;64684:9;64662;:32::i;:::-;64529:173:::0;:::o;63696:50::-;;;;;;;;;;;;;;;;;:::o;66710:154::-;7149:13;:11;:13::i;:::-;66760:12:::1;66786:10;66778:24;;66810:21;66778:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66759:77;;;66848:7;66840:16;;;::::0;::::1;;66755:109;66710:154::o:0;43238:193::-;43384:39;43401:4;43407:2;43411:7;43384:39;;;;;;;;;;;;:16;:39::i;:::-;43238:193;;;:::o;66043:94::-;7149:13;:11;:13::i;:::-;66121:8:::1;66108:10;:21;;;;66043:94:::0;:::o;63518:32::-;;;;:::o;64954:480::-;65025:7;65045:24;65072:15;:25;65088:8;65072:25;;;;;;;;;;;;;;;;65045:52;;65108:14;65125:18;65134:8;65125;:18::i;:::-;65108:35;;65158:9;65154:273;;;65210:16;65194:13;;:32;;;;:::i;:::-;65184:6;:42;65180:181;;65250:1;65243:8;;;;;;65180:181;65331:16;65315:13;;:32;;;;:::i;:::-;65305:6;:43;;;;:::i;:::-;65291:10;;:58;;;;:::i;:::-;65284:65;;;;;;65154:273;65409:6;65396:10;;:19;;;;:::i;:::-;65389:26;;;;64954:480;;;;;:::o;66268:118::-;7149:13;:11;:13::i;:::-;66361:17:::1;66345:13;:33;;;;66268:118:::0;:::o;65936:99::-;7149:13;:11;:13::i;:::-;66019:8:::1;66008;:19;;;;;;:::i;:::-;;65936:99:::0;:::o;66394:112::-;7149:13;:11;:13::i;:::-;66484:14:::1;66468:13;:30;;;;66394:112:::0;:::o;63647:29::-;;;;:::o;30253:152::-;30325:7;30368:27;30387:7;30368:18;:27::i;:::-;30345:52;;30253:152;;;:::o;63557:37::-;;;;:::o;25777:242::-;25849:7;25890:1;25873:19;;:5;:19;;;25869:69;;25894:44;25902:35;;;25894:7;:44::i;:::-;25869:69;19936:13;25956:18;:25;25975:5;25956:25;;;;;;;;;;;;;;;;:55;25949:62;;25777:242;;;:::o;7425:103::-;7149:13;:11;:13::i;:::-;7490:30:::1;7517:1;7490:18;:30::i;:::-;7425:103::o:0;7190:87::-;7236:7;7263:6;;;;;;;;;;;7256:13;;7190:87;:::o;29027:104::-;29083:13;29116:7;29109:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29027:104;:::o;63809:508::-;63867:13;63883:30;63891:10;63903:9;63883:7;:30::i;:::-;63867:46;;63945:10;63932:23;;:9;:23;;;63924:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;63991:19;;;;;;;;;;;63983:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;64070:9;;64057;64041:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;64033:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;64124:13;;64111:9;:26;;64103:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;64182:5;64169:9;:18;64161:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;64257:9;64226:15;:27;64242:10;64226:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;64277:32;64287:10;64299:9;64277;:32::i;:::-;63856:461;63809:508;:::o;36452:234::-;36599:8;36547:18;:39;36566:19;:17;:19::i;:::-;36547:39;;;;;;;;;;;;;;;:49;36587:8;36547:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;36659:8;36623:55;;36638:19;:17;:19::i;:::-;36623:55;;;36669:8;36623:55;;;;;;:::i;:::-;;;;;;;;36452:234;;:::o;65818:110::-;7149:13;:11;:13::i;:::-;65901:19:::1;;;;;;;;;;;65900:20;65878:19;;:42;;;;;;;;;;;;;;;;;;65818:110::o:0;44029:416::-;44204:31;44217:4;44223:2;44227:7;44204:12;:31::i;:::-;44268:1;44250:2;:14;;;:19;44246:192;;44289:56;44320:4;44326:2;44330:7;44339:5;44289:30;:56::i;:::-;44284:154;;44366:56;44374:47;;;44366:7;:56::i;:::-;44284:154;44246:192;44029:416;;;;:::o;64325:196::-;7149:13;:11;:13::i;:::-;64448:9:::1;;64435;64419:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;64411:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;64481:32;64491:10;64503:9;64481;:32::i;:::-;64325:196:::0;;:::o;64710:236::-;64767:4;64816:13;;64788:15;:25;64804:8;64788:25;;;;;;;;;;;;;;;;:41;:74;;;;;64849:13;;64833;:11;:13::i;:::-;:29;64788:74;64784:155;;;64882:4;64875:11;;;;64784:155;64922:5;64915:12;;64710:236;;;;:::o;65442:259::-;65508:13;65542:17;65550:8;65542:7;:17::i;:::-;65534:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;65653:8;65663:19;:8;:17;:19::i;:::-;65636:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65622:71;;65442:259;;;:::o;63483:28::-;;;;:::o;63322:108::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36843:164::-;36940:4;36964:18;:25;36983:5;36964:25;;;;;;;;;;;;;;;:35;36990:8;36964:35;;;;;;;;;;;;;;;;;;;;;;;;;36957:42;;36843:164;;;;:::o;63601:30::-;;;;:::o;7538:201::-;7149:13;:11;:13::i;:::-;7647:1:::1;7627:22;;:8;:22;;::::0;7619:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7703:28;7722:8;7703:18;:28::i;:::-;7538:201:::0;:::o;66514:191::-;7149:13;:11;:13::i;:::-;66599:9:::1;;66585:10;:23;;:54;;;;;66626:13;:11;:13::i;:::-;66612:10;:27;;66585:54;66577:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;66687:10;66675:9;:22;;;;66514:191:::0;:::o;37265:368::-;37330:11;37377:7;37358:15;:13;:15::i;:::-;:26;37354:272;;37415:13;;37405:7;:23;37401:214;;;37449:14;37482:60;37530:1;37499:17;:26;37517:7;37499:26;;;;;;;;;;;;37490:35;;;37489:42;37482:60;;37533:9;;;;:::i;:::-;;;37482:60;;;37598:1;20712:8;37570:6;:24;:29;37561:38;;37430:185;37401:214;37354:272;37265:368;;;:::o;63043:165::-;63144:13;63138:4;63131:27;63185:4;63179;63172:18;54476:474;54605:13;54621:16;54629:7;54621;:16::i;:::-;54605:32;;54654:13;:45;;;;;54694:5;54671:28;;:19;:17;:19::i;:::-;:28;;;;54654:45;54650:201;;;54719:44;54736:5;54743:19;:17;:19::i;:::-;54719:16;:44::i;:::-;54714:137;;54784:51;54792:42;;;54784:7;:51::i;:::-;54714:137;54650:201;54896:2;54863:15;:24;54879:7;54863:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;54934:7;54930:2;54914:28;;54923:5;54914:28;;;;;;;;;;;;54594:356;54476:474;;;:::o;65709:101::-;65774:7;65801:1;65794:8;;65709:101;:::o;31733:2012::-;31800:14;31850:7;31831:15;:13;:15::i;:::-;:26;31827:1853;;31883:17;:26;31901:7;31883:26;;;;;;;;;;;;31874:35;;32019:1;32009:6;:11;32005:1292;;32056:13;;32045:7;:24;32041:77;;32071:47;32079:38;;;32071:7;:47::i;:::-;32041:77;32675:607;32753:17;:28;32771:9;;;;;;;32753:28;;;;;;;;;;;;32744:37;;32841:1;32831:6;:11;32827:25;32844:8;32827:25;32907:1;20712:8;32879:6;:24;:29;32875:48;32910:13;32875:48;33215:47;33223:38;;;33215:7;:47::i;:::-;32675:607;;;32005:1292;33652:1;20712:8;33624:6;:24;:29;33620:48;33655:13;33620:48;31827:1853;33690:47;33698:38;;;33690:7;:47::i;:::-;31733:2012;;;;:::o;38514:485::-;38616:27;38645:23;38686:38;38727:15;:24;38743:7;38727:24;;;;;;;;;;;38686:65;;38904:18;38881:41;;38961:19;38955:26;38936:45;;38866:126;38514:485;;;:::o;61024:105::-;61084:7;61111:10;61104:17;;61024:105;:::o;37742:659::-;37891:11;38056:16;38049:5;38045:28;38036:37;;38216:16;38205:9;38201:32;38188:45;;38366:15;38355:9;38352:30;38344:5;38333:9;38330:20;38327:56;38317:66;;37742:659;;;;;:::o;45107:159::-;;;;;:::o;60333:311::-;60468:7;60488:16;21116:3;60514:19;:41;;60488:68;;21116:3;60582:31;60593:4;60599:2;60603:9;60582:10;:31::i;:::-;60574:40;;:62;;60567:69;;;60333:311;;;;;:::o;34293:450::-;34373:14;34541:16;34534:5;34530:28;34521:37;;34718:5;34704:11;34679:23;34675:41;34672:52;34665:5;34662:63;34652:73;;34293:450;;;;:::o;45931:158::-;;;;;:::o;7285:132::-;7360:12;:10;:12::i;:::-;7349:23;;:7;:5;:7::i;:::-;:23;;;7341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7285:132::o;53558:112::-;53635:27;53645:2;53649:8;53635:27;;;;;;;;;;;;:9;:27::i;:::-;53558:112;;:::o;7747:191::-;7821:16;7840:6;;;;;;;;;;;7821:25;;7866:8;7857:6;;:17;;;;;;;;;;;;;;;;;;7921:8;7890:40;;7911:8;7890:40;;;;;;;;;;;;7810:128;7747:191;:::o;46529:691::-;46692:4;46738:2;46713:45;;;46759:19;:17;:19::i;:::-;46780:4;46786:7;46795:5;46713:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46709:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47013:1;46996:6;:13;:18;46992:115;;47035:56;47043:47;;;47035:7;:56::i;:::-;46992:115;47179:6;47173:13;47164:6;47160:2;47156:15;47149:38;46709:504;46882:54;;;46872:64;;;:6;:64;;;;46865:71;;;46529:691;;;;;;:::o;8114:534::-;8170:13;8211:1;8202:5;:10;8198:53;;8229:10;;;;;;;;;;;;;;;;;;;;;8198:53;8261:12;8276:5;8261:20;;8292:14;8317:78;8332:1;8324:4;:9;8317:78;;8350:8;;;;;:::i;:::-;;;;8381:2;8373:10;;;;;:::i;:::-;;;8317:78;;;8405:19;8437:6;8427:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8405:39;;8455:154;8471:1;8462:5;:10;8455:154;;8499:1;8489:11;;;;;:::i;:::-;;;8566:2;8558:5;:10;;;;:::i;:::-;8545:2;:24;;;;:::i;:::-;8532:39;;8515:6;8522;8515:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8595:2;8586:11;;;;;:::i;:::-;;;8455:154;;;8633:6;8619:21;;;;;8114:534;;;;:::o;60034:147::-;60171:6;60034:147;;;;;:::o;1952:98::-;2005:7;2032:10;2025:17;;1952:98;:::o;52766:708::-;52897:19;52903:2;52907:8;52897:5;:19::i;:::-;52976:1;52958:2;:14;;;:19;52954:502;;52998:11;53012:13;;52998:27;;53044:13;53066:8;53060:3;:14;53044:30;;53093:242;53124:62;53163:1;53167:2;53171:7;;;;;;53180:5;53124:30;:62::i;:::-;53119:176;;53215:56;53223:47;;;53215:7;:56::i;:::-;53119:176;53330:3;53322:5;:11;53093:242;;53417:3;53400:13;;:20;53396:44;;53422:18;53437:1;53430:9;;53422:7;:18::i;:::-;53396:44;52979:477;;52954:502;52766:708;;;:::o;47682:2305::-;47755:20;47778:13;;47755:36;;47818:1;47806:8;:13;47802:53;;47821:34;47829:25;;;47821:7;:34::i;:::-;47802:53;47868:61;47898:1;47902:2;47906:12;47920:8;47868:21;:61::i;:::-;48402:139;48439:2;48493:33;48516:1;48520:2;48524:1;48493:14;:33::i;:::-;48460:30;48481:8;48460:20;:30::i;:::-;:66;48402:18;:139::i;:::-;48368:17;:31;48386:12;48368:31;;;;;;;;;;;:173;;;;48828:1;20074:2;48798:1;:26;;48797:32;48785:8;:45;48759:18;:22;48778:2;48759:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;48941:16;21394:14;48976:2;48960:20;;:39;48941:58;;49032:1;49020:8;:13;49016:54;;49035:35;49043:26;;;49035:7;:35::i;:::-;49016:54;49087:11;49116:8;49101:12;:23;49087:37;;49139:15;49157:12;49139:30;;49186:676;49605:7;49561:8;49516:1;49450:25;49387:1;49322;49291:358;49857:3;49844:9;;;;;;:16;49186:676;;49894:3;49878:13;:19;;;;48117:1792;;;49919:60;49948:1;49952:2;49956:12;49970:8;49919:20;:60::i;:::-;47744:2243;47682:2305;;:::o;34845:324::-;34915:14;35148:1;35138:8;35135:15;35109:24;35105:46;35095:56;;34845:324;;;:::o;7:90:1:-;41:7;84:5;77:13;70:21;59:32;;7:90;;;:::o;103:109::-;184:21;199:5;184:21;:::i;:::-;179:3;172:34;103:109;;:::o;218:210::-;305:4;343:2;332:9;328:18;320:26;;356:65;418:1;407:9;403:17;394:6;356:65;:::i;:::-;218:210;;;;:::o;434:75::-;467:6;500:2;494:9;484:19;;434:75;:::o;515:117::-;624:1;621;614:12;638:117;747:1;744;737:12;761:149;797:7;837:66;830:5;826:78;815:89;;761:149;;;:::o;916:120::-;988:23;1005:5;988:23;:::i;:::-;981:5;978:34;968:62;;1026:1;1023;1016:12;968:62;916:120;:::o;1042:137::-;1087:5;1125:6;1112:20;1103:29;;1141:32;1167:5;1141:32;:::i;:::-;1042:137;;;;:::o;1185:327::-;1243:6;1292:2;1280:9;1271:7;1267:23;1263:32;1260:119;;;1298:79;;:::i;:::-;1260:119;1418:1;1443:52;1487:7;1478:6;1467:9;1463:22;1443:52;:::i;:::-;1433:62;;1389:116;1185:327;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:::-;12159:6;12167;12216:2;12204:9;12195:7;12191:23;12187:32;12184:119;;;12222:79;;:::i;:::-;12184:119;12342:1;12367:53;12412:7;12403:6;12392:9;12388:22;12367:53;:::i;:::-;12357:63;;12313:117;12469:2;12495:53;12540:7;12531:6;12520:9;12516:22;12495:53;:::i;:::-;12485:63;;12440:118;12091:474;;;;;:::o;12571:180::-;12619:77;12616:1;12609:88;12716:4;12713:1;12706:15;12740:4;12737:1;12730:15;12757:320;12801:6;12838:1;12832:4;12828:12;12818:22;;12885:1;12879:4;12875:12;12906:18;12896:81;;12962:4;12954:6;12950:17;12940:27;;12896:81;13024:2;13016:6;13013:14;12993:18;12990:38;12987:84;;13043:18;;:::i;:::-;12987:84;12808:269;12757:320;;;:::o;13083:180::-;13131:77;13128:1;13121:88;13228:4;13225:1;13218:15;13252:4;13249:1;13242:15;13269:191;13309:3;13328:20;13346:1;13328:20;:::i;:::-;13323:25;;13362:20;13380:1;13362:20;:::i;:::-;13357:25;;13405:1;13402;13398:9;13391:16;;13426:3;13423:1;13420:10;13417:36;;;13433:18;;:::i;:::-;13417:36;13269:191;;;;:::o;13466:158::-;13606:10;13602:1;13594:6;13590:14;13583:34;13466:158;:::o;13630:365::-;13772:3;13793:66;13857:1;13852:3;13793:66;:::i;:::-;13786:73;;13868:93;13957:3;13868:93;:::i;:::-;13986:2;13981:3;13977:12;13970:19;;13630:365;;;:::o;14001:419::-;14167:4;14205:2;14194:9;14190:18;14182:26;;14254:9;14248:4;14244:20;14240:1;14229:9;14225:17;14218:47;14282:131;14408:4;14282:131;:::i;:::-;14274:139;;14001:419;;;:::o;14426:147::-;14527:11;14564:3;14549:18;;14426:147;;;;:::o;14579:114::-;;:::o;14699:398::-;14858:3;14879:83;14960:1;14955:3;14879:83;:::i;:::-;14872:90;;14971:93;15060:3;14971:93;:::i;:::-;15089:1;15084:3;15080:11;15073:18;;14699:398;;;:::o;15103:379::-;15287:3;15309:147;15452:3;15309:147;:::i;:::-;15302:154;;15473:3;15466:10;;15103:379;;;:::o;15488:194::-;15528:4;15548:20;15566:1;15548:20;:::i;:::-;15543:25;;15582:20;15600:1;15582:20;:::i;:::-;15577:25;;15626:1;15623;15619:9;15611:17;;15650:1;15644:4;15641:11;15638:37;;;15655:18;;:::i;:::-;15638:37;15488:194;;;;:::o;15688:410::-;15728:7;15751:20;15769:1;15751:20;:::i;:::-;15746:25;;15785:20;15803:1;15785:20;:::i;:::-;15780:25;;15840:1;15837;15833:9;15862:30;15880:11;15862:30;:::i;:::-;15851:41;;16041:1;16032:7;16028:15;16025:1;16022:22;16002:1;15995:9;15975:83;15952:139;;16071:18;;:::i;:::-;15952:139;15736:362;15688:410;;;;:::o;16104:141::-;16153:4;16176:3;16168:11;;16199:3;16196:1;16189:14;16233:4;16230:1;16220:18;16212:26;;16104:141;;;:::o;16251:93::-;16288:6;16335:2;16330;16323:5;16319:14;16315:23;16305:33;;16251:93;;;:::o;16350:107::-;16394:8;16444:5;16438:4;16434:16;16413:37;;16350:107;;;;:::o;16463:393::-;16532:6;16582:1;16570:10;16566:18;16605:97;16635:66;16624:9;16605:97;:::i;:::-;16723:39;16753:8;16742:9;16723:39;:::i;:::-;16711:51;;16795:4;16791:9;16784:5;16780:21;16771:30;;16844:4;16834:8;16830:19;16823:5;16820:30;16810:40;;16539:317;;16463:393;;;;;:::o;16862:60::-;16890:3;16911:5;16904:12;;16862:60;;;:::o;16928:142::-;16978:9;17011:53;17029:34;17038:24;17056:5;17038:24;:::i;:::-;17029:34;:::i;:::-;17011:53;:::i;:::-;16998:66;;16928:142;;;:::o;17076:75::-;17119:3;17140:5;17133:12;;17076:75;;;:::o;17157:269::-;17267:39;17298:7;17267:39;:::i;:::-;17328:91;17377:41;17401:16;17377:41;:::i;:::-;17369:6;17362:4;17356:11;17328:91;:::i;:::-;17322:4;17315:105;17233:193;17157:269;;;:::o;17432:73::-;17477:3;17432:73;:::o;17511:189::-;17588:32;;:::i;:::-;17629:65;17687:6;17679;17673:4;17629:65;:::i;:::-;17564:136;17511:189;;:::o;17706:186::-;17766:120;17783:3;17776:5;17773:14;17766:120;;;17837:39;17874:1;17867:5;17837:39;:::i;:::-;17810:1;17803:5;17799:13;17790:22;;17766:120;;;17706:186;;:::o;17898:543::-;17999:2;17994:3;17991:11;17988:446;;;18033:38;18065:5;18033:38;:::i;:::-;18117:29;18135:10;18117:29;:::i;:::-;18107:8;18103:44;18300:2;18288:10;18285:18;18282:49;;;18321:8;18306:23;;18282:49;18344:80;18400:22;18418:3;18400:22;:::i;:::-;18390:8;18386:37;18373:11;18344:80;:::i;:::-;18003:431;;17988:446;17898:543;;;:::o;18447:117::-;18501:8;18551:5;18545:4;18541:16;18520:37;;18447:117;;;;:::o;18570:169::-;18614:6;18647:51;18695:1;18691:6;18683:5;18680:1;18676:13;18647:51;:::i;:::-;18643:56;18728:4;18722;18718:15;18708:25;;18621:118;18570:169;;;;:::o;18744:295::-;18820:4;18966:29;18991:3;18985:4;18966:29;:::i;:::-;18958:37;;19028:3;19025:1;19021:11;19015:4;19012:21;19004:29;;18744:295;;;;:::o;19044:1395::-;19161:37;19194:3;19161:37;:::i;:::-;19263:18;19255:6;19252:30;19249:56;;;19285:18;;:::i;:::-;19249:56;19329:38;19361:4;19355:11;19329:38;:::i;:::-;19414:67;19474:6;19466;19460:4;19414:67;:::i;:::-;19508:1;19532:4;19519:17;;19564:2;19556:6;19553:14;19581:1;19576:618;;;;20238:1;20255:6;20252:77;;;20304:9;20299:3;20295:19;20289:26;20280:35;;20252:77;20355:67;20415:6;20408:5;20355:67;:::i;:::-;20349:4;20342:81;20211:222;19546:887;;19576:618;19628:4;19624:9;19616:6;19612:22;19662:37;19694:4;19662:37;:::i;:::-;19721:1;19735:208;19749:7;19746:1;19743:14;19735:208;;;19828:9;19823:3;19819:19;19813:26;19805:6;19798:42;19879:1;19871:6;19867:14;19857:24;;19926:2;19915:9;19911:18;19898:31;;19772:4;19769:1;19765:12;19760:17;;19735:208;;;19971:6;19962:7;19959:19;19956:179;;;20029:9;20024:3;20020:19;20014:26;20072:48;20114:4;20106:6;20102:17;20091:9;20072:48;:::i;:::-;20064:6;20057:64;19979:156;19956:179;20181:1;20177;20169:6;20165:14;20161:22;20155:4;20148:36;19583:611;;;19546:887;;19136:1303;;;19044:1395;;:::o;20445:162::-;20585:14;20581:1;20573:6;20569:14;20562:38;20445:162;:::o;20613:366::-;20755:3;20776:67;20840:2;20835:3;20776:67;:::i;:::-;20769:74;;20852:93;20941:3;20852:93;:::i;:::-;20970:2;20965:3;20961:12;20954:19;;20613:366;;;:::o;20985:419::-;21151:4;21189:2;21178:9;21174:18;21166:26;;21238:9;21232:4;21228:20;21224:1;21213:9;21209:17;21202:47;21266:131;21392:4;21266:131;:::i;:::-;21258:139;;20985:419;;;:::o;21410:157::-;21550:9;21546:1;21538:6;21534:14;21527:33;21410:157;:::o;21573:365::-;21715:3;21736:66;21800:1;21795:3;21736:66;:::i;:::-;21729:73;;21811:93;21900:3;21811:93;:::i;:::-;21929:2;21924:3;21920:12;21913:19;;21573:365;;;:::o;21944:419::-;22110:4;22148:2;22137:9;22133:18;22125:26;;22197:9;22191:4;22187:20;22183:1;22172:9;22168:17;22161:47;22225:131;22351:4;22225:131;:::i;:::-;22217:139;;21944:419;;;:::o;22369:158::-;22509:10;22505:1;22497:6;22493:14;22486:34;22369:158;:::o;22533:365::-;22675:3;22696:66;22760:1;22755:3;22696:66;:::i;:::-;22689:73;;22771:93;22860:3;22771:93;:::i;:::-;22889:2;22884:3;22880:12;22873:19;;22533:365;;;:::o;22904:419::-;23070:4;23108:2;23097:9;23093:18;23085:26;;23157:9;23151:4;23147:20;23143:1;23132:9;23128:17;23121:47;23185:131;23311:4;23185:131;:::i;:::-;23177:139;;22904:419;;;:::o;23329:173::-;23469:25;23465:1;23457:6;23453:14;23446:49;23329:173;:::o;23508:366::-;23650:3;23671:67;23735:2;23730:3;23671:67;:::i;:::-;23664:74;;23747:93;23836:3;23747:93;:::i;:::-;23865:2;23860:3;23856:12;23849:19;;23508:366;;;:::o;23880:419::-;24046:4;24084:2;24073:9;24069:18;24061:26;;24133:9;24127:4;24123:20;24119:1;24108:9;24104:17;24097:47;24161:131;24287:4;24161:131;:::i;:::-;24153:139;;23880:419;;;:::o;24305:234::-;24445:34;24441:1;24433:6;24429:14;24422:58;24514:17;24509:2;24501:6;24497:15;24490:42;24305:234;:::o;24545:366::-;24687:3;24708:67;24772:2;24767:3;24708:67;:::i;:::-;24701:74;;24784:93;24873:3;24784:93;:::i;:::-;24902:2;24897:3;24893:12;24886:19;;24545:366;;;:::o;24917:419::-;25083:4;25121:2;25110:9;25106:18;25098:26;;25170:9;25164:4;25160:20;25156:1;25145:9;25141:17;25134:47;25198:131;25324:4;25198:131;:::i;:::-;25190:139;;24917:419;;;:::o;25342:148::-;25444:11;25481:3;25466:18;;25342:148;;;;:::o;25520:874::-;25623:3;25660:5;25654:12;25689:36;25715:9;25689:36;:::i;:::-;25741:89;25823:6;25818:3;25741:89;:::i;:::-;25734:96;;25861:1;25850:9;25846:17;25877:1;25872:166;;;;26052:1;26047:341;;;;25839:549;;25872:166;25956:4;25952:9;25941;25937:25;25932:3;25925:38;26018:6;26011:14;26004:22;25996:6;25992:35;25987:3;25983:45;25976:52;;25872:166;;26047:341;26114:38;26146:5;26114:38;:::i;:::-;26174:1;26188:154;26202:6;26199:1;26196:13;26188:154;;;26276:7;26270:14;26266:1;26261:3;26257:11;26250:35;26326:1;26317:7;26313:15;26302:26;;26224:4;26221:1;26217:12;26212:17;;26188:154;;;26371:6;26366:3;26362:16;26355:23;;26054:334;;25839:549;;25627:767;;25520:874;;;;:::o;26400:390::-;26506:3;26534:39;26567:5;26534:39;:::i;:::-;26589:89;26671:6;26666:3;26589:89;:::i;:::-;26582:96;;26687:65;26745:6;26740:3;26733:4;26726:5;26722:16;26687:65;:::i;:::-;26777:6;26772:3;26768:16;26761:23;;26510:280;26400:390;;;;:::o;26796:155::-;26936:7;26932:1;26924:6;26920:14;26913:31;26796:155;:::o;26957:400::-;27117:3;27138:84;27220:1;27215:3;27138:84;:::i;:::-;27131:91;;27231:93;27320:3;27231:93;:::i;:::-;27349:1;27344:3;27340:11;27333:18;;26957:400;;;:::o;27363:695::-;27641:3;27663:92;27751:3;27742:6;27663:92;:::i;:::-;27656:99;;27772:95;27863:3;27854:6;27772:95;:::i;:::-;27765:102;;27884:148;28028:3;27884:148;:::i;:::-;27877:155;;28049:3;28042:10;;27363:695;;;;;:::o;28064:225::-;28204:34;28200:1;28192:6;28188:14;28181:58;28273:8;28268:2;28260:6;28256:15;28249:33;28064:225;:::o;28295:366::-;28437:3;28458:67;28522:2;28517:3;28458:67;:::i;:::-;28451:74;;28534:93;28623:3;28534:93;:::i;:::-;28652:2;28647:3;28643:12;28636:19;;28295:366;;;:::o;28667:419::-;28833:4;28871:2;28860:9;28856:18;28848:26;;28920:9;28914:4;28910:20;28906:1;28895:9;28891:17;28884:47;28948:131;29074:4;28948:131;:::i;:::-;28940:139;;28667:419;;;:::o;29092:174::-;29232:26;29228:1;29220:6;29216:14;29209:50;29092:174;:::o;29272:366::-;29414:3;29435:67;29499:2;29494:3;29435:67;:::i;:::-;29428:74;;29511:93;29600:3;29511:93;:::i;:::-;29629:2;29624:3;29620:12;29613:19;;29272:366;;;:::o;29644:419::-;29810:4;29848:2;29837:9;29833:18;29825:26;;29897:9;29891:4;29887:20;29883:1;29872:9;29868:17;29861:47;29925:131;30051:4;29925:131;:::i;:::-;29917:139;;29644:419;;;:::o;30069:171::-;30108:3;30131:24;30149:5;30131:24;:::i;:::-;30122:33;;30177:4;30170:5;30167:15;30164:41;;30185:18;;:::i;:::-;30164:41;30232:1;30225:5;30221:13;30214:20;;30069:171;;;:::o;30246:182::-;30386:34;30382:1;30374:6;30370:14;30363:58;30246:182;:::o;30434:366::-;30576:3;30597:67;30661:2;30656:3;30597:67;:::i;:::-;30590:74;;30673:93;30762:3;30673:93;:::i;:::-;30791:2;30786:3;30782:12;30775:19;;30434:366;;;:::o;30806:419::-;30972:4;31010:2;30999:9;30995:18;30987:26;;31059:9;31053:4;31049:20;31045:1;31034:9;31030:17;31023:47;31087:131;31213:4;31087:131;:::i;:::-;31079:139;;30806:419;;;:::o;31231:98::-;31282:6;31316:5;31310:12;31300:22;;31231:98;;;:::o;31335:168::-;31418:11;31452:6;31447:3;31440:19;31492:4;31487:3;31483:14;31468:29;;31335:168;;;;:::o;31509:373::-;31595:3;31623:38;31655:5;31623:38;:::i;:::-;31677:70;31740:6;31735:3;31677:70;:::i;:::-;31670:77;;31756:65;31814:6;31809:3;31802:4;31795:5;31791:16;31756:65;:::i;:::-;31846:29;31868:6;31846:29;:::i;:::-;31841:3;31837:39;31830:46;;31599:283;31509:373;;;;:::o;31888:640::-;32083:4;32121:3;32110:9;32106:19;32098:27;;32135:71;32203:1;32192:9;32188:17;32179:6;32135:71;:::i;:::-;32216:72;32284:2;32273:9;32269:18;32260:6;32216:72;:::i;:::-;32298;32366:2;32355:9;32351:18;32342:6;32298:72;:::i;:::-;32417:9;32411:4;32407:20;32402:2;32391:9;32387:18;32380:48;32445:76;32516:4;32507:6;32445:76;:::i;:::-;32437:84;;31888:640;;;;;;;:::o;32534:141::-;32590:5;32621:6;32615:13;32606:22;;32637:32;32663:5;32637:32;:::i;:::-;32534:141;;;;:::o;32681:349::-;32750:6;32799:2;32787:9;32778:7;32774:23;32770:32;32767:119;;;32805:79;;:::i;:::-;32767:119;32925:1;32950:63;33005:7;32996:6;32985:9;32981:22;32950:63;:::i;:::-;32940:73;;32896:127;32681:349;;;;:::o;33036:233::-;33075:3;33098:24;33116:5;33098:24;:::i;:::-;33089:33;;33144:66;33137:5;33134:77;33131:103;;33214:18;;:::i;:::-;33131:103;33261:1;33254:5;33250:13;33243:20;;33036:233;;;:::o;33275:180::-;33323:77;33320:1;33313:88;33420:4;33417:1;33410:15;33444:4;33441:1;33434:15;33461:185;33501:1;33518:20;33536:1;33518:20;:::i;:::-;33513:25;;33552:20;33570:1;33552:20;:::i;:::-;33547:25;;33591:1;33581:35;;33596:18;;:::i;:::-;33581:35;33638:1;33635;33631:9;33626:14;;33461:185;;;;:::o;33652:176::-;33684:1;33701:20;33719:1;33701:20;:::i;:::-;33696:25;;33735:20;33753:1;33735:20;:::i;:::-;33730:25;;33774:1;33764:35;;33779:18;;:::i;:::-;33764:35;33820:1;33817;33813:9;33808:14;;33652:176;;;;:::o;33834:180::-;33882:77;33879:1;33872:88;33979:4;33976:1;33969:15;34003:4;34000:1;33993:15

Swarm Source

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