ETH Price: $2,517.28 (+3.36%)

Token

RareMortyYachtClub (RMYC)
 

Overview

Max Total Supply

837 RMYC

Holders

176

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RMYC
0x26de4ee00e24784fec514b02d23453676de229aa
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
RareMortyYachtClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: ERC721A (5).sol


//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel



pragma solidity >=0.7.0 <0.9.0;





contract RareMortyYachtClub is ERC721A, Ownable, ReentrancyGuard {


  string public baseURI;
  string public notRevealedUri;
  uint256 public cost = 0.004 ether;
  uint256 public maxSupply = 10000;
  uint256 public MaxperWallet = 15;
  uint256 public FreeLimit = 1;
  bool public paused = true;
  bool public revealed = true;
  uint256 public FreeMinted;
  mapping (address => uint256) public AddressFreeMinted;

  constructor(
  
    
  ) ERC721A("RareMortyYachtClub", "RMYC") {
    setBaseURI("ipfs://QmbUP2YKneB8nLCTEEmsALxXwHPTB9bcM4tYgM5t6HkgGd/");
    setNotRevealedURI("ipfs://Qmeo1Mk4xrUZK4wUv2y28ohm8FPDQ4CxjqYxq46tDaSeEA");
  }

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

  // public
  /// @dev Public mint 
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "oops contract is paused");
    require(tokens <= MaxperWallet, "max mint amount per tx exceeded");
    require(totalSupply() + tokens <= maxSupply, "We Soldout");

    if(AddressFreeMinted[_msgSenderERC721A()] >= FreeLimit) {
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "insufficient funds");
    } else {
            require(msg.value >= cost * (tokens - (FreeLimit - AddressFreeMinted[_msgSenderERC721A()])), "insufficient funds");
            AddressFreeMinted[_msgSenderERC721A()] = FreeLimit;
    }
    FreeMinted += FreeLimit;
      _safeMint(_msgSenderERC721A(), tokens);
  }

  /// @dev use it for giveaway and team mint
     function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
  }

/// @notice returns metadata link of tokenid
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _toString(tokenId), ".json"))
        : "";
  }

     /// @notice return the number minted by an address
    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    /// @notice return the tokens owned by an address
      function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

  /// @dev change the public max per wallet
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

  /// @dev change the whitelist max per wallet
    function setFreeLimit(uint256 _limit) public onlyOwner {
    FreeLimit = _limit;
  }

   /// @dev change the public price(amount need to be in wei)
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  /// @dev cut the supply if we dont sold out
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }


 /// @dev set your baseuri
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

   /// @dev set hidden uri
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

 /// @dev to pause and unpause your contract(use booleans true or false)
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  /// @dev withdraw funds from contract
  function withdraw() public payable onlyOwner nonReentrant {
      uint256 balance = address(this).balance;
      payable(_msgSenderERC721A()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AddressFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052660e35fa931a0000600c55612710600d55600f600e556001600f556001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040518060400160405280601281526020017f526172654d6f7274795961636874436c756200000000000000000000000000008152506040518060400160405280600481526020017f524d5943000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e792919062000385565b5080600390805190602001906200010092919062000385565b50620001116200019b60201b60201c565b6000819055505050620001396200012d620001a460201b60201c565b620001ac60201b60201c565b60016009819055506200016b60405180606001604052806036815260200162003c5f603691396200027260201b60201c565b6200019560405180606001604052806035815260200162003c95603591396200029e60201b60201c565b6200051d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000282620002ca60201b60201c565b80600a90805190602001906200029a92919062000385565b5050565b620002ae620002ca60201b60201c565b80600b9080519060200190620002c692919062000385565b5050565b620002da620001a460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003006200035b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000350906200045c565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000393906200048f565b90600052602060002090601f016020900481019282620003b7576000855562000403565b82601f10620003d257805160ff191683800117855562000403565b8280016001018555821562000403579182015b8281111562000402578251825591602001919060010190620003e5565b5b50905062000412919062000416565b5090565b5b808211156200043157600081600090555060010162000417565b5090565b6000620004446020836200047e565b91506200045182620004f4565b602082019050919050565b60006020820190508181036000830152620004778162000435565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004a857607f821691505b60208210811415620004bf57620004be620004c5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613732806200052d6000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063bc63f02e116100ab578063e268e4d31161006f578063e268e4d314610823578063e985e9c51461084c578063f2c4ce1e14610889578063f2fde38b146108b2578063f8604f11146108db5761023b565b8063bc63f02e1461072a578063bd7a199814610753578063c87b56dd1461077e578063d5abeb01146107bb578063dc33e681146107e65761023b565b8063940cd05b116100f2578063940cd05b1461067557806395d89b411461069e578063a0712d68146106c9578063a22cb465146106e5578063b88d4fde1461070e5761023b565b806370a082311461058e578063715018a6146105cb5780638462151c146105e25780638da5cb5b1461061f578063904c24dd1461064a5761023b565b806323b872dd116101bc578063518302271161018057806351830227146104a757806355f804b3146104d25780635c975abb146104fb5780636352211e146105265780636c0360eb146105635761023b565b806323b872dd146104115780633ccfd60b1461042d57806342842e0e146104375780634404f8521461045357806344a0d68a1461047e5761023b565b8063095ea7b311610203578063095ea7b314610339578063123d1d8b1461035557806313faede614610392578063149835a0146103bd57806318160ddd146103e65761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063081c8c441461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612a7a565b610904565b6040516102749190612f18565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190612a4d565b610996565b005b3480156102b257600080fd5b506102bb6109bb565b6040516102c89190612f33565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190612b1d565b610a4d565b6040516103059190612e8f565b60405180910390f35b34801561031a57600080fd5b50610323610acc565b6040516103309190612f33565b60405180910390f35b610353600480360381019061034e9190612a0d565b610b5a565b005b34801561036157600080fd5b5061037c6004803603810190610377919061288a565b610c9e565b6040516103899190613095565b60405180910390f35b34801561039e57600080fd5b506103a7610cb6565b6040516103b49190613095565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190612b1d565b610cbc565b005b3480156103f257600080fd5b506103fb610cce565b6040516104089190613095565b60405180910390f35b61042b600480360381019061042691906128f7565b610ce5565b005b61043561100a565b005b610451600480360381019061044c91906128f7565b611078565b005b34801561045f57600080fd5b50610468611098565b6040516104759190613095565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190612b1d565b61109e565b005b3480156104b357600080fd5b506104bc6110b0565b6040516104c99190612f18565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612ad4565b6110c3565b005b34801561050757600080fd5b506105106110e5565b60405161051d9190612f18565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190612b1d565b6110f8565b60405161055a9190612e8f565b60405180910390f35b34801561056f57600080fd5b5061057861110a565b6040516105859190612f33565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b0919061288a565b611198565b6040516105c29190613095565b60405180910390f35b3480156105d757600080fd5b506105e0611251565b005b3480156105ee57600080fd5b506106096004803603810190610604919061288a565b611265565b6040516106169190612ef6565b60405180910390f35b34801561062b57600080fd5b506106346113af565b6040516106419190612e8f565b60405180910390f35b34801561065657600080fd5b5061065f6113d9565b60405161066c9190613095565b60405180910390f35b34801561068157600080fd5b5061069c60048036038101906106979190612a4d565b6113df565b005b3480156106aa57600080fd5b506106b3611404565b6040516106c09190612f33565b60405180910390f35b6106e360048036038101906106de9190612b1d565b611496565b005b3480156106f157600080fd5b5061070c600480360381019061070791906129cd565b6117c0565b005b6107286004803603810190610723919061294a565b6118cb565b005b34801561073657600080fd5b50610751600480360381019061074c9190612b4a565b61193e565b005b34801561075f57600080fd5b506107686119bb565b6040516107759190613095565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190612b1d565b6119c1565b6040516107b29190612f33565b60405180910390f35b3480156107c757600080fd5b506107d0611b17565b6040516107dd9190613095565b60405180910390f35b3480156107f257600080fd5b5061080d6004803603810190610808919061288a565b611b1d565b60405161081a9190613095565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190612b1d565b611b2f565b005b34801561085857600080fd5b50610873600480360381019061086e91906128b7565b611b41565b6040516108809190612f18565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab9190612ad4565b611bd5565b005b3480156108be57600080fd5b506108d960048036038101906108d4919061288a565b611bf7565b005b3480156108e757600080fd5b5061090260048036038101906108fd9190612b1d565b611c7b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61099e611c8d565b80601060006101000a81548160ff02191690831515021790555050565b6060600280546109ca9061334d565b80601f01602080910402602001604051908101604052809291908181526020018280546109f69061334d565b8015610a435780601f10610a1857610100808354040283529160200191610a43565b820191906000526020600020905b815481529060010190602001808311610a2657829003601f168201915b5050505050905090565b6000610a5882611d0b565b610a8e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610ad99061334d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b059061334d565b8015610b525780601f10610b2757610100808354040283529160200191610b52565b820191906000526020600020905b815481529060010190602001808311610b3557829003601f168201915b505050505081565b6000610b65826110f8565b90508073ffffffffffffffffffffffffffffffffffffffff16610b86611d6a565b73ffffffffffffffffffffffffffffffffffffffff1614610be957610bb281610bad611d6a565b611b41565b610be8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60126020528060005260406000206000915090505481565b600c5481565b610cc4611c8d565b80600d8190555050565b6000610cd8611d72565b6001546000540303905090565b6000610cf082611d7b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d57576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d6384611e49565b91509150610d798187610d74611d6a565b611e70565b610dc557610d8e86610d89611d6a565b611b41565b610dc4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e2c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e398686866001611eb4565b8015610e4457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1285610eee888887611eba565b7c020000000000000000000000000000000000000000000000000000000017611ee2565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f9a576000600185019050600060046000838152602001908152602001600020541415610f98576000548114610f97578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110028686866001611f0d565b505050505050565b611012611c8d565b61101a611f13565b6000479050611027611d6a565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561106c573d6000803e3d6000fd5b5050611076611f63565b565b611093838383604051806020016040528060008152506118cb565b505050565b600f5481565b6110a6611c8d565b80600c8190555050565b601060019054906101000a900460ff1681565b6110cb611c8d565b80600a90805190602001906110e192919061264f565b5050565b601060009054906101000a900460ff1681565b600061110382611d7b565b9050919050565b600a80546111179061334d565b80601f01602080910402602001604051908101604052809291908181526020018280546111439061334d565b80156111905780601f1061116557610100808354040283529160200191611190565b820191906000526020600020905b81548152906001019060200180831161117357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611200576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611259611c8d565b6112636000611f6d565b565b6060600080600061127585611198565b905060008167ffffffffffffffff8111156112935761129261343d565b5b6040519080825280602002602001820160405280156112c15781602001602082028036833780820191505090505b5090506112cc6126d5565b60006112d6611d72565b90505b8386146113a1576112e981612033565b91508160400151156112fa57611396565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461133a57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561139557808387806001019850815181106113885761138761340e565b5b6020026020010181815250505b5b8060010190506112d9565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6113e7611c8d565b80601060016101000a81548160ff02191690831515021790555050565b6060600380546114139061334d565b80601f016020809104026020016040519081016040528092919081815260200182805461143f9061334d565b801561148c5780601f106114615761010080835404028352916020019161148c565b820191906000526020600020905b81548152906001019060200180831161146f57829003601f168201915b5050505050905090565b61149e611f13565b601060009054906101000a900460ff16156114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590612fb5565b60405180910390fd5b600e54811115611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613075565b60405180910390fd5b600d548161153f610cce565b61154991906131b3565b111561158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190612f95565b60405180910390fd5b600f5460126000611599611d6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061168d57600e54816115ed6115e8611d6a565b61205e565b6115f791906131b3565b1115611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90613035565b60405180910390fd5b80600c546116469190613209565b341015611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90613015565b60405180910390fd5b611789565b60126000611699611d6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f546116e19190613263565b816116ec9190613263565b600c546116f99190613209565b34101561173b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173290613015565b60405180910390fd5b600f546012600061174a611d6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600f546011600082825461179d91906131b3565b925050819055506117b56117af611d6a565b826120b5565b6117bd611f63565b50565b80600760006117cd611d6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661187a611d6a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118bf9190612f18565b60405180910390a35050565b6118d6848484610ce5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461193857611901848484846120d3565b611937576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611946611c8d565b61194e611f13565b600d548261195a610cce565b61196491906131b3565b11156119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c90612fd5565b60405180910390fd5b6119af81836120b5565b6119b7611f63565b5050565b600e5481565b60606119cc82611d0b565b611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290612f55565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611ab957600b8054611a349061334d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a609061334d565b8015611aad5780601f10611a8257610100808354040283529160200191611aad565b820191906000526020600020905b815481529060010190602001808311611a9057829003601f168201915b50505050509050611b12565b6000611ac3612233565b90506000815111611ae35760405180602001604052806000815250611b0e565b80611aed846122c5565b604051602001611afe929190612e60565b6040516020818303038152906040525b9150505b919050565b600d5481565b6000611b288261205e565b9050919050565b611b37611c8d565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bdd611c8d565b80600b9080519060200190611bf392919061264f565b5050565b611bff611c8d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6690612f75565b60405180910390fd5b611c7881611f6d565b50565b611c83611c8d565b80600f8190555050565b611c9561231e565b73ffffffffffffffffffffffffffffffffffffffff16611cb36113af565b73ffffffffffffffffffffffffffffffffffffffff1614611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090612ff5565b60405180910390fd5b565b600081611d16611d72565b11158015611d25575060005482105b8015611d63575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d8a611d72565b11611e1257600054811015611e115760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e0f575b6000811415611e05576004600083600190039350838152602001908152602001600020549050611dda565b8092505050611e44565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ed1868684612326565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009541415611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5090613055565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61203b6126d5565b612057600460008481526020019081526020016000205461232f565b9050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6120cf8282604051806020016040528060008152506123e5565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120f9611d6a565b8786866040518563ffffffff1660e01b815260040161211b9493929190612eaa565b602060405180830381600087803b15801561213557600080fd5b505af192505050801561216657506040513d601f19601f820116820180604052508101906121639190612aa7565b60015b6121e0573d8060008114612196576040519150601f19603f3d011682016040523d82523d6000602084013e61219b565b606091505b506000815114156121d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546122429061334d565b80601f016020809104026020016040519081016040528092919081815260200182805461226e9061334d565b80156122bb5780601f10612290576101008083540402835291602001916122bb565b820191906000526020600020905b81548152906001019060200180831161229e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561230957600184039350600a81066030018453600a810490508061230457612309565b6122de565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b6123376126d5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6123ef8383612482565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461247d57600080549050600083820390505b61242f60008683806001019450866120d3565b612465576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061241c57816000541461247a57600080fd5b50505b505050565b60008054905060008214156124c3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124d06000848385611eb4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612547836125386000866000611eba565b6125418561263f565b17611ee2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125e857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125ad565b506000821415612624576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061263a6000848385611f0d565b505050565b60006001821460e11b9050919050565b82805461265b9061334d565b90600052602060002090601f01602090048101928261267d57600085556126c4565b82601f1061269657805160ff19168380011785556126c4565b828001600101855582156126c4579182015b828111156126c35782518255916020019190600101906126a8565b5b5090506126d19190612724565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561273d576000816000905550600101612725565b5090565b600061275461274f846130d5565b6130b0565b9050828152602081018484840111156127705761276f613471565b5b61277b84828561330b565b509392505050565b600061279661279184613106565b6130b0565b9050828152602081018484840111156127b2576127b1613471565b5b6127bd84828561330b565b509392505050565b6000813590506127d4816136a0565b92915050565b6000813590506127e9816136b7565b92915050565b6000813590506127fe816136ce565b92915050565b600081519050612813816136ce565b92915050565b600082601f83011261282e5761282d61346c565b5b813561283e848260208601612741565b91505092915050565b600082601f83011261285c5761285b61346c565b5b813561286c848260208601612783565b91505092915050565b600081359050612884816136e5565b92915050565b6000602082840312156128a05761289f61347b565b5b60006128ae848285016127c5565b91505092915050565b600080604083850312156128ce576128cd61347b565b5b60006128dc858286016127c5565b92505060206128ed858286016127c5565b9150509250929050565b6000806000606084860312156129105761290f61347b565b5b600061291e868287016127c5565b935050602061292f868287016127c5565b925050604061294086828701612875565b9150509250925092565b600080600080608085870312156129645761296361347b565b5b6000612972878288016127c5565b9450506020612983878288016127c5565b935050604061299487828801612875565b925050606085013567ffffffffffffffff8111156129b5576129b4613476565b5b6129c187828801612819565b91505092959194509250565b600080604083850312156129e4576129e361347b565b5b60006129f2858286016127c5565b9250506020612a03858286016127da565b9150509250929050565b60008060408385031215612a2457612a2361347b565b5b6000612a32858286016127c5565b9250506020612a4385828601612875565b9150509250929050565b600060208284031215612a6357612a6261347b565b5b6000612a71848285016127da565b91505092915050565b600060208284031215612a9057612a8f61347b565b5b6000612a9e848285016127ef565b91505092915050565b600060208284031215612abd57612abc61347b565b5b6000612acb84828501612804565b91505092915050565b600060208284031215612aea57612ae961347b565b5b600082013567ffffffffffffffff811115612b0857612b07613476565b5b612b1484828501612847565b91505092915050565b600060208284031215612b3357612b3261347b565b5b6000612b4184828501612875565b91505092915050565b60008060408385031215612b6157612b6061347b565b5b6000612b6f85828601612875565b9250506020612b80858286016127c5565b9150509250929050565b6000612b968383612e42565b60208301905092915050565b612bab81613297565b82525050565b6000612bbc82613147565b612bc68185613175565b9350612bd183613137565b8060005b83811015612c02578151612be98882612b8a565b9750612bf483613168565b925050600181019050612bd5565b5085935050505092915050565b612c18816132a9565b82525050565b6000612c2982613152565b612c338185613186565b9350612c4381856020860161331a565b612c4c81613480565b840191505092915050565b6000612c628261315d565b612c6c8185613197565b9350612c7c81856020860161331a565b612c8581613480565b840191505092915050565b6000612c9b8261315d565b612ca581856131a8565b9350612cb581856020860161331a565b80840191505092915050565b6000612cce603083613197565b9150612cd982613491565b604082019050919050565b6000612cf1602683613197565b9150612cfc826134e0565b604082019050919050565b6000612d14600a83613197565b9150612d1f8261352f565b602082019050919050565b6000612d37601783613197565b9150612d4282613558565b602082019050919050565b6000612d5a601683613197565b9150612d6582613581565b602082019050919050565b6000612d7d6005836131a8565b9150612d88826135aa565b600582019050919050565b6000612da0602083613197565b9150612dab826135d3565b602082019050919050565b6000612dc3601283613197565b9150612dce826135fc565b602082019050919050565b6000612de6601b83613197565b9150612df182613625565b602082019050919050565b6000612e09601f83613197565b9150612e148261364e565b602082019050919050565b6000612e2c601f83613197565b9150612e3782613677565b602082019050919050565b612e4b81613301565b82525050565b612e5a81613301565b82525050565b6000612e6c8285612c90565b9150612e788284612c90565b9150612e8382612d70565b91508190509392505050565b6000602082019050612ea46000830184612ba2565b92915050565b6000608082019050612ebf6000830187612ba2565b612ecc6020830186612ba2565b612ed96040830185612e51565b8181036060830152612eeb8184612c1e565b905095945050505050565b60006020820190508181036000830152612f108184612bb1565b905092915050565b6000602082019050612f2d6000830184612c0f565b92915050565b60006020820190508181036000830152612f4d8184612c57565b905092915050565b60006020820190508181036000830152612f6e81612cc1565b9050919050565b60006020820190508181036000830152612f8e81612ce4565b9050919050565b60006020820190508181036000830152612fae81612d07565b9050919050565b60006020820190508181036000830152612fce81612d2a565b9050919050565b60006020820190508181036000830152612fee81612d4d565b9050919050565b6000602082019050818103600083015261300e81612d93565b9050919050565b6000602082019050818103600083015261302e81612db6565b9050919050565b6000602082019050818103600083015261304e81612dd9565b9050919050565b6000602082019050818103600083015261306e81612dfc565b9050919050565b6000602082019050818103600083015261308e81612e1f565b9050919050565b60006020820190506130aa6000830184612e51565b92915050565b60006130ba6130cb565b90506130c6828261337f565b919050565b6000604051905090565b600067ffffffffffffffff8211156130f0576130ef61343d565b5b6130f982613480565b9050602081019050919050565b600067ffffffffffffffff8211156131215761312061343d565b5b61312a82613480565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131be82613301565b91506131c983613301565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131fe576131fd6133b0565b5b828201905092915050565b600061321482613301565b915061321f83613301565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613258576132576133b0565b5b828202905092915050565b600061326e82613301565b915061327983613301565b92508282101561328c5761328b6133b0565b5b828203905092915050565b60006132a2826132e1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561333857808201518184015260208101905061331d565b83811115613347576000848401525b50505050565b6000600282049050600182168061336557607f821691505b60208210811415613379576133786133df565b5b50919050565b61338882613480565b810181811067ffffffffffffffff821117156133a7576133a661343d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b6136a981613297565b81146136b457600080fd5b50565b6136c0816132a9565b81146136cb57600080fd5b50565b6136d7816132b5565b81146136e257600080fd5b50565b6136ee81613301565b81146136f957600080fd5b5056fea264697066735822122070b94c3bdac23309b1775cae064d6e0f7f904cb1c636f111ba93768a2edd6c6d64736f6c63430008070033697066733a2f2f516d62555032594b6e6542386e4c435445456d73414c785877485054423962634d347459674d357436486b6747642f697066733a2f2f516d656f314d6b347872555a4b34775576327932386f686d38465044513443786a71597871343674446153654541

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063bc63f02e116100ab578063e268e4d31161006f578063e268e4d314610823578063e985e9c51461084c578063f2c4ce1e14610889578063f2fde38b146108b2578063f8604f11146108db5761023b565b8063bc63f02e1461072a578063bd7a199814610753578063c87b56dd1461077e578063d5abeb01146107bb578063dc33e681146107e65761023b565b8063940cd05b116100f2578063940cd05b1461067557806395d89b411461069e578063a0712d68146106c9578063a22cb465146106e5578063b88d4fde1461070e5761023b565b806370a082311461058e578063715018a6146105cb5780638462151c146105e25780638da5cb5b1461061f578063904c24dd1461064a5761023b565b806323b872dd116101bc578063518302271161018057806351830227146104a757806355f804b3146104d25780635c975abb146104fb5780636352211e146105265780636c0360eb146105635761023b565b806323b872dd146104115780633ccfd60b1461042d57806342842e0e146104375780634404f8521461045357806344a0d68a1461047e5761023b565b8063095ea7b311610203578063095ea7b314610339578063123d1d8b1461035557806313faede614610392578063149835a0146103bd57806318160ddd146103e65761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063081c8c441461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612a7a565b610904565b6040516102749190612f18565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190612a4d565b610996565b005b3480156102b257600080fd5b506102bb6109bb565b6040516102c89190612f33565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190612b1d565b610a4d565b6040516103059190612e8f565b60405180910390f35b34801561031a57600080fd5b50610323610acc565b6040516103309190612f33565b60405180910390f35b610353600480360381019061034e9190612a0d565b610b5a565b005b34801561036157600080fd5b5061037c6004803603810190610377919061288a565b610c9e565b6040516103899190613095565b60405180910390f35b34801561039e57600080fd5b506103a7610cb6565b6040516103b49190613095565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190612b1d565b610cbc565b005b3480156103f257600080fd5b506103fb610cce565b6040516104089190613095565b60405180910390f35b61042b600480360381019061042691906128f7565b610ce5565b005b61043561100a565b005b610451600480360381019061044c91906128f7565b611078565b005b34801561045f57600080fd5b50610468611098565b6040516104759190613095565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190612b1d565b61109e565b005b3480156104b357600080fd5b506104bc6110b0565b6040516104c99190612f18565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612ad4565b6110c3565b005b34801561050757600080fd5b506105106110e5565b60405161051d9190612f18565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190612b1d565b6110f8565b60405161055a9190612e8f565b60405180910390f35b34801561056f57600080fd5b5061057861110a565b6040516105859190612f33565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b0919061288a565b611198565b6040516105c29190613095565b60405180910390f35b3480156105d757600080fd5b506105e0611251565b005b3480156105ee57600080fd5b506106096004803603810190610604919061288a565b611265565b6040516106169190612ef6565b60405180910390f35b34801561062b57600080fd5b506106346113af565b6040516106419190612e8f565b60405180910390f35b34801561065657600080fd5b5061065f6113d9565b60405161066c9190613095565b60405180910390f35b34801561068157600080fd5b5061069c60048036038101906106979190612a4d565b6113df565b005b3480156106aa57600080fd5b506106b3611404565b6040516106c09190612f33565b60405180910390f35b6106e360048036038101906106de9190612b1d565b611496565b005b3480156106f157600080fd5b5061070c600480360381019061070791906129cd565b6117c0565b005b6107286004803603810190610723919061294a565b6118cb565b005b34801561073657600080fd5b50610751600480360381019061074c9190612b4a565b61193e565b005b34801561075f57600080fd5b506107686119bb565b6040516107759190613095565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190612b1d565b6119c1565b6040516107b29190612f33565b60405180910390f35b3480156107c757600080fd5b506107d0611b17565b6040516107dd9190613095565b60405180910390f35b3480156107f257600080fd5b5061080d6004803603810190610808919061288a565b611b1d565b60405161081a9190613095565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190612b1d565b611b2f565b005b34801561085857600080fd5b50610873600480360381019061086e91906128b7565b611b41565b6040516108809190612f18565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab9190612ad4565b611bd5565b005b3480156108be57600080fd5b506108d960048036038101906108d4919061288a565b611bf7565b005b3480156108e757600080fd5b5061090260048036038101906108fd9190612b1d565b611c7b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61099e611c8d565b80601060006101000a81548160ff02191690831515021790555050565b6060600280546109ca9061334d565b80601f01602080910402602001604051908101604052809291908181526020018280546109f69061334d565b8015610a435780601f10610a1857610100808354040283529160200191610a43565b820191906000526020600020905b815481529060010190602001808311610a2657829003601f168201915b5050505050905090565b6000610a5882611d0b565b610a8e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610ad99061334d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b059061334d565b8015610b525780601f10610b2757610100808354040283529160200191610b52565b820191906000526020600020905b815481529060010190602001808311610b3557829003601f168201915b505050505081565b6000610b65826110f8565b90508073ffffffffffffffffffffffffffffffffffffffff16610b86611d6a565b73ffffffffffffffffffffffffffffffffffffffff1614610be957610bb281610bad611d6a565b611b41565b610be8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60126020528060005260406000206000915090505481565b600c5481565b610cc4611c8d565b80600d8190555050565b6000610cd8611d72565b6001546000540303905090565b6000610cf082611d7b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d57576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d6384611e49565b91509150610d798187610d74611d6a565b611e70565b610dc557610d8e86610d89611d6a565b611b41565b610dc4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e2c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e398686866001611eb4565b8015610e4457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1285610eee888887611eba565b7c020000000000000000000000000000000000000000000000000000000017611ee2565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f9a576000600185019050600060046000838152602001908152602001600020541415610f98576000548114610f97578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110028686866001611f0d565b505050505050565b611012611c8d565b61101a611f13565b6000479050611027611d6a565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561106c573d6000803e3d6000fd5b5050611076611f63565b565b611093838383604051806020016040528060008152506118cb565b505050565b600f5481565b6110a6611c8d565b80600c8190555050565b601060019054906101000a900460ff1681565b6110cb611c8d565b80600a90805190602001906110e192919061264f565b5050565b601060009054906101000a900460ff1681565b600061110382611d7b565b9050919050565b600a80546111179061334d565b80601f01602080910402602001604051908101604052809291908181526020018280546111439061334d565b80156111905780601f1061116557610100808354040283529160200191611190565b820191906000526020600020905b81548152906001019060200180831161117357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611200576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611259611c8d565b6112636000611f6d565b565b6060600080600061127585611198565b905060008167ffffffffffffffff8111156112935761129261343d565b5b6040519080825280602002602001820160405280156112c15781602001602082028036833780820191505090505b5090506112cc6126d5565b60006112d6611d72565b90505b8386146113a1576112e981612033565b91508160400151156112fa57611396565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461133a57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561139557808387806001019850815181106113885761138761340e565b5b6020026020010181815250505b5b8060010190506112d9565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6113e7611c8d565b80601060016101000a81548160ff02191690831515021790555050565b6060600380546114139061334d565b80601f016020809104026020016040519081016040528092919081815260200182805461143f9061334d565b801561148c5780601f106114615761010080835404028352916020019161148c565b820191906000526020600020905b81548152906001019060200180831161146f57829003601f168201915b5050505050905090565b61149e611f13565b601060009054906101000a900460ff16156114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590612fb5565b60405180910390fd5b600e54811115611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613075565b60405180910390fd5b600d548161153f610cce565b61154991906131b3565b111561158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190612f95565b60405180910390fd5b600f5460126000611599611d6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061168d57600e54816115ed6115e8611d6a565b61205e565b6115f791906131b3565b1115611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90613035565b60405180910390fd5b80600c546116469190613209565b341015611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90613015565b60405180910390fd5b611789565b60126000611699611d6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f546116e19190613263565b816116ec9190613263565b600c546116f99190613209565b34101561173b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173290613015565b60405180910390fd5b600f546012600061174a611d6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600f546011600082825461179d91906131b3565b925050819055506117b56117af611d6a565b826120b5565b6117bd611f63565b50565b80600760006117cd611d6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661187a611d6a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118bf9190612f18565b60405180910390a35050565b6118d6848484610ce5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461193857611901848484846120d3565b611937576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611946611c8d565b61194e611f13565b600d548261195a610cce565b61196491906131b3565b11156119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c90612fd5565b60405180910390fd5b6119af81836120b5565b6119b7611f63565b5050565b600e5481565b60606119cc82611d0b565b611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290612f55565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611ab957600b8054611a349061334d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a609061334d565b8015611aad5780601f10611a8257610100808354040283529160200191611aad565b820191906000526020600020905b815481529060010190602001808311611a9057829003601f168201915b50505050509050611b12565b6000611ac3612233565b90506000815111611ae35760405180602001604052806000815250611b0e565b80611aed846122c5565b604051602001611afe929190612e60565b6040516020818303038152906040525b9150505b919050565b600d5481565b6000611b288261205e565b9050919050565b611b37611c8d565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bdd611c8d565b80600b9080519060200190611bf392919061264f565b5050565b611bff611c8d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6690612f75565b60405180910390fd5b611c7881611f6d565b50565b611c83611c8d565b80600f8190555050565b611c9561231e565b73ffffffffffffffffffffffffffffffffffffffff16611cb36113af565b73ffffffffffffffffffffffffffffffffffffffff1614611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0090612ff5565b60405180910390fd5b565b600081611d16611d72565b11158015611d25575060005482105b8015611d63575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611d8a611d72565b11611e1257600054811015611e115760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e0f575b6000811415611e05576004600083600190039350838152602001908152602001600020549050611dda565b8092505050611e44565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ed1868684612326565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009541415611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5090613055565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61203b6126d5565b612057600460008481526020019081526020016000205461232f565b9050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6120cf8282604051806020016040528060008152506123e5565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120f9611d6a565b8786866040518563ffffffff1660e01b815260040161211b9493929190612eaa565b602060405180830381600087803b15801561213557600080fd5b505af192505050801561216657506040513d601f19601f820116820180604052508101906121639190612aa7565b60015b6121e0573d8060008114612196576040519150601f19603f3d011682016040523d82523d6000602084013e61219b565b606091505b506000815114156121d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546122429061334d565b80601f016020809104026020016040519081016040528092919081815260200182805461226e9061334d565b80156122bb5780601f10612290576101008083540402835291602001916122bb565b820191906000526020600020905b81548152906001019060200180831161229e57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561230957600184039350600a81066030018453600a810490508061230457612309565b6122de565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b6123376126d5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6123ef8383612482565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461247d57600080549050600083820390505b61242f60008683806001019450866120d3565b612465576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061241c57816000541461247a57600080fd5b50505b505050565b60008054905060008214156124c3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124d06000848385611eb4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612547836125386000866000611eba565b6125418561263f565b17611ee2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125e857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125ad565b506000821415612624576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061263a6000848385611f0d565b505050565b60006001821460e11b9050919050565b82805461265b9061334d565b90600052602060002090601f01602090048101928261267d57600085556126c4565b82601f1061269657805160ff19168380011785556126c4565b828001600101855582156126c4579182015b828111156126c35782518255916020019190600101906126a8565b5b5090506126d19190612724565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561273d576000816000905550600101612725565b5090565b600061275461274f846130d5565b6130b0565b9050828152602081018484840111156127705761276f613471565b5b61277b84828561330b565b509392505050565b600061279661279184613106565b6130b0565b9050828152602081018484840111156127b2576127b1613471565b5b6127bd84828561330b565b509392505050565b6000813590506127d4816136a0565b92915050565b6000813590506127e9816136b7565b92915050565b6000813590506127fe816136ce565b92915050565b600081519050612813816136ce565b92915050565b600082601f83011261282e5761282d61346c565b5b813561283e848260208601612741565b91505092915050565b600082601f83011261285c5761285b61346c565b5b813561286c848260208601612783565b91505092915050565b600081359050612884816136e5565b92915050565b6000602082840312156128a05761289f61347b565b5b60006128ae848285016127c5565b91505092915050565b600080604083850312156128ce576128cd61347b565b5b60006128dc858286016127c5565b92505060206128ed858286016127c5565b9150509250929050565b6000806000606084860312156129105761290f61347b565b5b600061291e868287016127c5565b935050602061292f868287016127c5565b925050604061294086828701612875565b9150509250925092565b600080600080608085870312156129645761296361347b565b5b6000612972878288016127c5565b9450506020612983878288016127c5565b935050604061299487828801612875565b925050606085013567ffffffffffffffff8111156129b5576129b4613476565b5b6129c187828801612819565b91505092959194509250565b600080604083850312156129e4576129e361347b565b5b60006129f2858286016127c5565b9250506020612a03858286016127da565b9150509250929050565b60008060408385031215612a2457612a2361347b565b5b6000612a32858286016127c5565b9250506020612a4385828601612875565b9150509250929050565b600060208284031215612a6357612a6261347b565b5b6000612a71848285016127da565b91505092915050565b600060208284031215612a9057612a8f61347b565b5b6000612a9e848285016127ef565b91505092915050565b600060208284031215612abd57612abc61347b565b5b6000612acb84828501612804565b91505092915050565b600060208284031215612aea57612ae961347b565b5b600082013567ffffffffffffffff811115612b0857612b07613476565b5b612b1484828501612847565b91505092915050565b600060208284031215612b3357612b3261347b565b5b6000612b4184828501612875565b91505092915050565b60008060408385031215612b6157612b6061347b565b5b6000612b6f85828601612875565b9250506020612b80858286016127c5565b9150509250929050565b6000612b968383612e42565b60208301905092915050565b612bab81613297565b82525050565b6000612bbc82613147565b612bc68185613175565b9350612bd183613137565b8060005b83811015612c02578151612be98882612b8a565b9750612bf483613168565b925050600181019050612bd5565b5085935050505092915050565b612c18816132a9565b82525050565b6000612c2982613152565b612c338185613186565b9350612c4381856020860161331a565b612c4c81613480565b840191505092915050565b6000612c628261315d565b612c6c8185613197565b9350612c7c81856020860161331a565b612c8581613480565b840191505092915050565b6000612c9b8261315d565b612ca581856131a8565b9350612cb581856020860161331a565b80840191505092915050565b6000612cce603083613197565b9150612cd982613491565b604082019050919050565b6000612cf1602683613197565b9150612cfc826134e0565b604082019050919050565b6000612d14600a83613197565b9150612d1f8261352f565b602082019050919050565b6000612d37601783613197565b9150612d4282613558565b602082019050919050565b6000612d5a601683613197565b9150612d6582613581565b602082019050919050565b6000612d7d6005836131a8565b9150612d88826135aa565b600582019050919050565b6000612da0602083613197565b9150612dab826135d3565b602082019050919050565b6000612dc3601283613197565b9150612dce826135fc565b602082019050919050565b6000612de6601b83613197565b9150612df182613625565b602082019050919050565b6000612e09601f83613197565b9150612e148261364e565b602082019050919050565b6000612e2c601f83613197565b9150612e3782613677565b602082019050919050565b612e4b81613301565b82525050565b612e5a81613301565b82525050565b6000612e6c8285612c90565b9150612e788284612c90565b9150612e8382612d70565b91508190509392505050565b6000602082019050612ea46000830184612ba2565b92915050565b6000608082019050612ebf6000830187612ba2565b612ecc6020830186612ba2565b612ed96040830185612e51565b8181036060830152612eeb8184612c1e565b905095945050505050565b60006020820190508181036000830152612f108184612bb1565b905092915050565b6000602082019050612f2d6000830184612c0f565b92915050565b60006020820190508181036000830152612f4d8184612c57565b905092915050565b60006020820190508181036000830152612f6e81612cc1565b9050919050565b60006020820190508181036000830152612f8e81612ce4565b9050919050565b60006020820190508181036000830152612fae81612d07565b9050919050565b60006020820190508181036000830152612fce81612d2a565b9050919050565b60006020820190508181036000830152612fee81612d4d565b9050919050565b6000602082019050818103600083015261300e81612d93565b9050919050565b6000602082019050818103600083015261302e81612db6565b9050919050565b6000602082019050818103600083015261304e81612dd9565b9050919050565b6000602082019050818103600083015261306e81612dfc565b9050919050565b6000602082019050818103600083015261308e81612e1f565b9050919050565b60006020820190506130aa6000830184612e51565b92915050565b60006130ba6130cb565b90506130c6828261337f565b919050565b6000604051905090565b600067ffffffffffffffff8211156130f0576130ef61343d565b5b6130f982613480565b9050602081019050919050565b600067ffffffffffffffff8211156131215761312061343d565b5b61312a82613480565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131be82613301565b91506131c983613301565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131fe576131fd6133b0565b5b828201905092915050565b600061321482613301565b915061321f83613301565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613258576132576133b0565b5b828202905092915050565b600061326e82613301565b915061327983613301565b92508282101561328c5761328b6133b0565b5b828203905092915050565b60006132a2826132e1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561333857808201518184015260208101905061331d565b83811115613347576000848401525b50505050565b6000600282049050600182168061336557607f821691505b60208210811415613379576133786133df565b5b50919050565b61338882613480565b810181811067ffffffffffffffff821117156133a7576133a661343d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b6136a981613297565b81146136b457600080fd5b50565b6136c0816132a9565b81146136cb57600080fd5b50565b6136d7816132b5565b81146136e257600080fd5b50565b6136ee81613301565b81146136f957600080fd5b5056fea264697066735822122070b94c3bdac23309b1775cae064d6e0f7f904cb1c636f111ba93768a2edd6c6d64736f6c63430008070033

Deployed Bytecode Sourcemap

58110:4996:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24943:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62814:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25845:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32336:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58210:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31769:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58480:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58243:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62352:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21596:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35975:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62936:167;;;:::i;:::-;;38896:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58355:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62217:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58418:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62482:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58388:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27238:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58184:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22780:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5722:103;;;;;;;;;;;;;:::i;:::-;;60882:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5074:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58450:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61785:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26021:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59044:779;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32894:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39687:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59878:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58318:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60153:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58281:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60710:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61914:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33285:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62614:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5980:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62062:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24943:639;25028:4;25367:10;25352:25;;:11;:25;;;;:102;;;;25444:10;25429:25;;:11;:25;;;;25352:102;:179;;;;25521:10;25506:25;;:11;:25;;;;25352:179;25332:199;;24943:639;;;:::o;62814:73::-;4960:13;:11;:13::i;:::-;62875:6:::1;62866;;:15;;;;;;;;;;;;;;;;;;62814:73:::0;:::o;25845:100::-;25899:13;25932:5;25925:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25845:100;:::o;32336:218::-;32412:7;32437:16;32445:7;32437;:16::i;:::-;32432:64;;32462:34;;;;;;;;;;;;;;32432:64;32516:15;:24;32532:7;32516:24;;;;;;;;;;;:30;;;;;;;;;;;;32509:37;;32336:218;;;:::o;58210:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31769:408::-;31858:13;31874:16;31882:7;31874;:16::i;:::-;31858:32;;31930:5;31907:28;;:19;:17;:19::i;:::-;:28;;;31903:175;;31955:44;31972:5;31979:19;:17;:19::i;:::-;31955:16;:44::i;:::-;31950:128;;32027:35;;;;;;;;;;;;;;31950:128;31903:175;32123:2;32090:15;:24;32106:7;32090:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32161:7;32157:2;32141:28;;32150:5;32141:28;;;;;;;;;;;;31847:330;31769:408;;:::o;58480:53::-;;;;;;;;;;;;;;;;;:::o;58243:33::-;;;;:::o;62352:94::-;4960:13;:11;:13::i;:::-;62430:10:::1;62418:9;:22;;;;62352:94:::0;:::o;21596:323::-;21657:7;21885:15;:13;:15::i;:::-;21870:12;;21854:13;;:28;:46;21847:53;;21596:323;:::o;35975:2825::-;36117:27;36147;36166:7;36147:18;:27::i;:::-;36117:57;;36232:4;36191:45;;36207:19;36191:45;;;36187:86;;36245:28;;;;;;;;;;;;;;36187:86;36287:27;36316:23;36343:35;36370:7;36343:26;:35::i;:::-;36286:92;;;;36478:68;36503:15;36520:4;36526:19;:17;:19::i;:::-;36478:24;:68::i;:::-;36473:180;;36566:43;36583:4;36589:19;:17;:19::i;:::-;36566:16;:43::i;:::-;36561:92;;36618:35;;;;;;;;;;;;;;36561:92;36473:180;36684:1;36670:16;;:2;:16;;;36666:52;;;36695:23;;;;;;;;;;;;;;36666:52;36731:43;36753:4;36759:2;36763:7;36772:1;36731:21;:43::i;:::-;36867:15;36864:160;;;37007:1;36986:19;36979:30;36864:160;37404:18;:24;37423:4;37404:24;;;;;;;;;;;;;;;;37402:26;;;;;;;;;;;;37473:18;:22;37492:2;37473:22;;;;;;;;;;;;;;;;37471:24;;;;;;;;;;;37795:146;37832:2;37881:45;37896:4;37902:2;37906:19;37881:14;:45::i;:::-;17995:8;37853:73;37795:18;:146::i;:::-;37766:17;:26;37784:7;37766:26;;;;;;;;;;;:175;;;;38112:1;17995:8;38061:19;:47;:52;38057:627;;;38134:19;38166:1;38156:7;:11;38134:33;;38323:1;38289:17;:30;38307:11;38289:30;;;;;;;;;;;;:35;38285:384;;;38427:13;;38412:11;:28;38408:242;;38607:19;38574:17;:30;38592:11;38574:30;;;;;;;;;;;:52;;;;38408:242;38285:384;38115:569;38057:627;38731:7;38727:2;38712:27;;38721:4;38712:27;;;;;;;;;;;;38750:42;38771:4;38777:2;38781:7;38790:1;38750:20;:42::i;:::-;36106:2694;;;35975:2825;;;:::o;62936:167::-;4960:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;63003:15:::2;63021:21;63003:39;;63059:19;:17;:19::i;:::-;63051:37;;:46;63089:7;63051:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;62994:109;2389:20:::1;:18;:20::i;:::-;62936:167::o:0;38896:193::-;39042:39;39059:4;39065:2;39069:7;39042:39;;;;;;;;;;;;:16;:39::i;:::-;38896:193;;;:::o;58355:28::-;;;;:::o;62217:80::-;4960:13;:11;:13::i;:::-;62283:8:::1;62276:4;:15;;;;62217:80:::0;:::o;58418:27::-;;;;;;;;;;;;;:::o;62482:98::-;4960:13;:11;:13::i;:::-;62563:11:::1;62553:7;:21;;;;;;;;;;;;:::i;:::-;;62482:98:::0;:::o;58388:25::-;;;;;;;;;;;;;:::o;27238:152::-;27310:7;27353:27;27372:7;27353:18;:27::i;:::-;27330:52;;27238:152;;;:::o;58184:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22780:233::-;22852:7;22893:1;22876:19;;:5;:19;;;22872:60;;;22904:28;;;;;;;;;;;;;;22872:60;16939:13;22950:18;:25;22969:5;22950:25;;;;;;;;;;;;;;;;:55;22943:62;;22780:233;;;:::o;5722:103::-;4960:13;:11;:13::i;:::-;5787:30:::1;5814:1;5787:18;:30::i;:::-;5722:103::o:0;60882:881::-;60941:16;60995:19;61029:25;61069:22;61094:16;61104:5;61094:9;:16::i;:::-;61069:41;;61125:25;61167:14;61153:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61125:57;;61197:31;;:::i;:::-;61248:9;61260:15;:13;:15::i;:::-;61248:27;;61243:472;61292:14;61277:11;:29;61243:472;;61344:15;61357:1;61344:12;:15::i;:::-;61332:27;;61382:9;:16;;;61378:73;;;61423:8;;61378:73;61499:1;61473:28;;:9;:14;;;:28;;;61469:111;;61546:9;:14;;;61526:34;;61469:111;61623:5;61602:26;;:17;:26;;;61598:102;;;61679:1;61653:8;61662:13;;;;;;61653:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;61598:102;61243:472;61308:3;;;;;61243:472;;;;61736:8;61729:15;;;;;;;60882:881;;;:::o;5074:87::-;5120:7;5147:6;;;;;;;;;;;5140:13;;5074:87;:::o;58450:25::-;;;;:::o;61785:78::-;4960:13;:11;:13::i;:::-;61851:6:::1;61840:8;;:17;;;;;;;;;;;;;;;;;;61785:78:::0;:::o;26021:104::-;26077:13;26110:7;26103:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26021:104;:::o;59044:779::-;2345:21;:19;:21::i;:::-;59118:6:::1;;;;;;;;;;;59117:7;59109:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59177:12;;59167:6;:22;;59159:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;59266:9;;59256:6;59240:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;59232:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59344:9;;59302:17;:38;59320:19;:17;:19::i;:::-;59302:38;;;;;;;;;;;;;;;;:51;59299:442;;59417:12;;59407:6;59370:34;59384:19;:17;:19::i;:::-;59370:13;:34::i;:::-;:43;;;;:::i;:::-;:59;;59362:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;59496:6;59489:4;;:13;;;;:::i;:::-;59476:9;:26;;59468:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;59299:442;;;59605:17;:38;59623:19;:17;:19::i;:::-;59605:38;;;;;;;;;;;;;;;;59593:9;;:50;;;;:::i;:::-;59583:6;:61;;;;:::i;:::-;59575:4;;:70;;;;:::i;:::-;59562:9;:83;;59554:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;59724:9;;59683:17;:38;59701:19;:17;:19::i;:::-;59683:38;;;;;;;;;;;;;;;:50;;;;59299:442;59761:9;;59747:10;;:23;;;;;;;:::i;:::-;;;;;;;;59779:38;59789:19;:17;:19::i;:::-;59810:6;59779:9;:38::i;:::-;2389:20:::0;:18;:20::i;:::-;59044:779;:::o;32894:234::-;33041:8;32989:18;:39;33008:19;:17;:19::i;:::-;32989:39;;;;;;;;;;;;;;;:49;33029:8;32989:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33101:8;33065:55;;33080:19;:17;:19::i;:::-;33065:55;;;33111:8;33065:55;;;;;;:::i;:::-;;;;;;;;32894:234;;:::o;39687:407::-;39862:31;39875:4;39881:2;39885:7;39862:12;:31::i;:::-;39926:1;39908:2;:14;;;:19;39904:183;;39947:56;39978:4;39984:2;39988:7;39997:5;39947:30;:56::i;:::-;39942:145;;40031:40;;;;;;;;;;;;;;39942:145;39904:183;39687:407;;;;:::o;59878:223::-;4960:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;60013:9:::2;;59998:11;59982:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;59974:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;60060:35;60070:11;60083;60060:9;:35::i;:::-;2389:20:::1;:18;:20::i;:::-;59878:223:::0;;:::o;58318:32::-;;;;:::o;60153:492::-;60251:13;60292:16;60300:7;60292;:16::i;:::-;60276:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;60402:5;60390:17;;:8;;;;;;;;;;;:17;;;60387:62;;;60427:14;60420:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60387:62;60457:28;60488:10;:8;:10::i;:::-;60457:41;;60543:1;60518:14;60512:28;:32;:127;;;;;;;;;;;;;;;;;60580:14;60596:18;60606:7;60596:9;:18::i;:::-;60563:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60512:127;60505:134;;;60153:492;;;;:::o;58281:32::-;;;;:::o;60710:107::-;60768:7;60791:20;60805:5;60791:13;:20::i;:::-;60784:27;;60710:107;;;:::o;61914:92::-;4960:13;:11;:13::i;:::-;61994:6:::1;61979:12;:21;;;;61914:92:::0;:::o;33285:164::-;33382:4;33406:18;:25;33425:5;33406:25;;;;;;;;;;;;;;;:35;33432:8;33406:35;;;;;;;;;;;;;;;;;;;;;;;;;33399:42;;33285:164;;;;:::o;62614:120::-;4960:13;:11;:13::i;:::-;62713:15:::1;62696:14;:32;;;;;;;;;;;;:::i;:::-;;62614:120:::0;:::o;5980:201::-;4960:13;:11;:13::i;:::-;6089:1:::1;6069:22;;:8;:22;;;;6061:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6145:28;6164:8;6145:18;:28::i;:::-;5980:201:::0;:::o;62062:86::-;4960:13;:11;:13::i;:::-;62136:6:::1;62124:9;:18;;;;62062:86:::0;:::o;5239:132::-;5314:12;:10;:12::i;:::-;5303:23;;:7;:5;:7::i;:::-;:23;;;5295:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5239:132::o;33707:282::-;33772:4;33828:7;33809:15;:13;:15::i;:::-;:26;;:66;;;;;33862:13;;33852:7;:23;33809:66;:153;;;;;33961:1;17715:8;33913:17;:26;33931:7;33913:26;;;;;;;;;;;;:44;:49;33809:153;33789:173;;33707:282;;;:::o;56015:105::-;56075:7;56102:10;56095:17;;56015:105;:::o;58899:101::-;58964:7;58991:1;58984:8;;58899:101;:::o;28393:1275::-;28460:7;28480:12;28495:7;28480:22;;28563:4;28544:15;:13;:15::i;:::-;:23;28540:1061;;28597:13;;28590:4;:20;28586:1015;;;28635:14;28652:17;:23;28670:4;28652:23;;;;;;;;;;;;28635:40;;28769:1;17715:8;28741:6;:24;:29;28737:845;;;29406:113;29423:1;29413:6;:11;29406:113;;;29466:17;:25;29484:6;;;;;;;29466:25;;;;;;;;;;;;29457:34;;29406:113;;;29552:6;29545:13;;;;;;28737:845;28612:989;28586:1015;28540:1061;29629:31;;;;;;;;;;;;;;28393:1275;;;;:::o;34870:485::-;34972:27;35001:23;35042:38;35083:15;:24;35099:7;35083:24;;;;;;;;;;;35042:65;;35260:18;35237:41;;35317:19;35311:26;35292:45;;35222:126;34870:485;;;:::o;34098:659::-;34247:11;34412:16;34405:5;34401:28;34392:37;;34572:16;34561:9;34557:32;34544:45;;34722:15;34711:9;34708:30;34700:5;34689:9;34686:20;34683:56;34673:66;;34098:659;;;;;:::o;40756:159::-;;;;;:::o;55324:311::-;55459:7;55479:16;18119:3;55505:19;:41;;55479:68;;18119:3;55573:31;55584:4;55590:2;55594:9;55573:10;:31::i;:::-;55565:40;;:62;;55558:69;;;55324:311;;;;;:::o;30216:450::-;30296:14;30464:16;30457:5;30453:28;30444:37;;30641:5;30627:11;30602:23;30598:41;30595:52;30588:5;30585:63;30575:73;;30216:450;;;;:::o;41580:158::-;;;;;:::o;2425:293::-;1827:1;2559:7;;:19;;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;6341:191::-;6415:16;6434:6;;;;;;;;;;;6415:25;;6460:8;6451:6;;:17;;;;;;;;;;;;;;;;;;6515:8;6484:40;;6505:8;6484:40;;;;;;;;;;;;6404:128;6341:191;:::o;27841:161::-;27909:21;;:::i;:::-;27950:44;27969:17;:24;27987:5;27969:24;;;;;;;;;;;;27950:18;:44::i;:::-;27943:51;;27841:161;;;:::o;23095:178::-;23156:7;16939:13;17077:2;23184:18;:25;23203:5;23184:25;;;;;;;;;;;;;;;;:50;;23183:82;23176:89;;23095:178;;;:::o;49847:112::-;49924:27;49934:2;49938:8;49924:27;;;;;;;;;;;;:9;:27::i;:::-;49847:112;;:::o;42178:716::-;42341:4;42387:2;42362:45;;;42408:19;:17;:19::i;:::-;42429:4;42435:7;42444:5;42362:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42358:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42662:1;42645:6;:13;:18;42641:235;;;42691:40;;;;;;;;;;;;;;42641:235;42834:6;42828:13;42819:6;42815:2;42811:15;42804:38;42358:529;42531:54;;;42521:64;;;:6;:64;;;;42514:71;;;42178:716;;;;;;:::o;58789:102::-;58849:13;58878:7;58871:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58789:102;:::o;56222:1745::-;56287:17;56721:4;56714;56708:11;56704:22;56813:1;56807:4;56800:15;56888:4;56885:1;56881:12;56874:19;;56970:1;56965:3;56958:14;57074:3;57313:5;57295:428;57321:1;57295:428;;;57361:1;57356:3;57352:11;57345:18;;57532:2;57526:4;57522:13;57518:2;57514:22;57509:3;57501:36;57626:2;57620:4;57616:13;57608:21;;57693:4;57683:25;;57701:5;;57683:25;57295:428;;;57299:21;57762:3;57757;57753:13;57877:4;57872:3;57868:14;57861:21;;57942:6;57937:3;57930:19;56326:1634;;;56222:1745;;;:::o;3625:98::-;3678:7;3705:10;3698:17;;3625:98;:::o;55025:147::-;55162:6;55025:147;;;;;:::o;29767:366::-;29833:31;;:::i;:::-;29910:6;29877:9;:14;;:41;;;;;;;;;;;17598:3;29963:6;:33;;29929:9;:24;;:68;;;;;;;;;;;30055:1;17715:8;30027:6;:24;:29;;30008:9;:16;;:48;;;;;;;;;;;18119:3;30096:6;:28;;30067:9;:19;;:58;;;;;;;;;;;29767:366;;;:::o;49074:689::-;49205:19;49211:2;49215:8;49205:5;:19::i;:::-;49284:1;49266:2;:14;;;:19;49262:483;;49306:11;49320:13;;49306:27;;49352:13;49374:8;49368:3;:14;49352:30;;49401:233;49432:62;49471:1;49475:2;49479:7;;;;;;49488:5;49432:30;:62::i;:::-;49427:167;;49530:40;;;;;;;;;;;;;;49427:167;49629:3;49621:5;:11;49401:233;;49716:3;49699:13;;:20;49695:34;;49721:8;;;49695:34;49287:458;;49262:483;49074:689;;;:::o;43356:2966::-;43429:20;43452:13;;43429:36;;43492:1;43480:8;:13;43476:44;;;43502:18;;;;;;;;;;;;;;43476:44;43533:61;43563:1;43567:2;43571:12;43585:8;43533:21;:61::i;:::-;44077:1;17077:2;44047:1;:26;;44046:32;44034:8;:45;44008:18;:22;44027:2;44008:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44356:139;44393:2;44447:33;44470:1;44474:2;44478:1;44447:14;:33::i;:::-;44414:30;44435:8;44414:20;:30::i;:::-;:66;44356:18;:139::i;:::-;44322:17;:31;44340:12;44322:31;;;;;;;;;;;:173;;;;44512:16;44543:11;44572:8;44557:12;:23;44543:37;;45093:16;45089:2;45085:25;45073:37;;45465:12;45425:8;45384:1;45322:25;45263:1;45202;45175:335;45836:1;45822:12;45818:20;45776:346;45877:3;45868:7;45865:16;45776:346;;46095:7;46085:8;46082:1;46055:25;46052:1;46049;46044:59;45930:1;45921:7;45917:15;45906:26;;45776:346;;;45780:77;46167:1;46155:8;:13;46151:45;;;46177:19;;;;;;;;;;;;;;46151:45;46229:3;46213:13;:19;;;;43782:2462;;46254:60;46283:1;46287:2;46291:12;46305:8;46254:20;:60::i;:::-;43418:2904;43356:2966;;:::o;30768:324::-;30838:14;31071:1;31061:8;31058:15;31032:24;31028:46;31018:56;;30768:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10278:366::-;10420:3;10441:67;10505:2;10500:3;10441:67;:::i;:::-;10434:74;;10517:93;10606:3;10517:93;:::i;:::-;10635:2;10630:3;10626:12;10619:19;;10278:366;;;:::o;10650:::-;10792:3;10813:67;10877:2;10872:3;10813:67;:::i;:::-;10806:74;;10889:93;10978:3;10889:93;:::i;:::-;11007:2;11002:3;10998:12;10991:19;;10650:366;;;:::o;11022:::-;11164:3;11185:67;11249:2;11244:3;11185:67;:::i;:::-;11178:74;;11261:93;11350:3;11261:93;:::i;:::-;11379:2;11374:3;11370:12;11363:19;;11022:366;;;:::o;11394:::-;11536:3;11557:67;11621:2;11616:3;11557:67;:::i;:::-;11550:74;;11633:93;11722:3;11633:93;:::i;:::-;11751:2;11746:3;11742:12;11735:19;;11394:366;;;:::o;11766:::-;11908:3;11929:67;11993:2;11988:3;11929:67;:::i;:::-;11922:74;;12005:93;12094:3;12005:93;:::i;:::-;12123:2;12118:3;12114:12;12107:19;;11766:366;;;:::o;12138:400::-;12298:3;12319:84;12401:1;12396:3;12319:84;:::i;:::-;12312:91;;12412:93;12501:3;12412:93;:::i;:::-;12530:1;12525:3;12521:11;12514:18;;12138:400;;;:::o;12544:366::-;12686:3;12707:67;12771:2;12766:3;12707:67;:::i;:::-;12700:74;;12783:93;12872:3;12783:93;:::i;:::-;12901:2;12896:3;12892:12;12885:19;;12544:366;;;:::o;12916:::-;13058:3;13079:67;13143:2;13138:3;13079:67;:::i;:::-;13072:74;;13155:93;13244:3;13155:93;:::i;:::-;13273:2;13268:3;13264:12;13257:19;;12916:366;;;:::o;13288:::-;13430:3;13451:67;13515:2;13510:3;13451:67;:::i;:::-;13444:74;;13527:93;13616:3;13527:93;:::i;:::-;13645:2;13640:3;13636:12;13629:19;;13288:366;;;:::o;13660:::-;13802:3;13823:67;13887:2;13882:3;13823:67;:::i;:::-;13816:74;;13899:93;13988:3;13899:93;:::i;:::-;14017:2;14012:3;14008:12;14001:19;;13660:366;;;:::o;14032:::-;14174:3;14195:67;14259:2;14254:3;14195:67;:::i;:::-;14188:74;;14271:93;14360:3;14271:93;:::i;:::-;14389:2;14384:3;14380:12;14373:19;;14032:366;;;:::o;14404:108::-;14481:24;14499:5;14481:24;:::i;:::-;14476:3;14469:37;14404:108;;:::o;14518:118::-;14605:24;14623:5;14605:24;:::i;:::-;14600:3;14593:37;14518:118;;:::o;14642:701::-;14923:3;14945:95;15036:3;15027:6;14945:95;:::i;:::-;14938:102;;15057:95;15148:3;15139:6;15057:95;:::i;:::-;15050:102;;15169:148;15313:3;15169:148;:::i;:::-;15162:155;;15334:3;15327:10;;14642:701;;;;;:::o;15349:222::-;15442:4;15480:2;15469:9;15465:18;15457:26;;15493:71;15561:1;15550:9;15546:17;15537:6;15493:71;:::i;:::-;15349:222;;;;:::o;15577:640::-;15772:4;15810:3;15799:9;15795:19;15787:27;;15824:71;15892:1;15881:9;15877:17;15868:6;15824:71;:::i;:::-;15905:72;15973:2;15962:9;15958:18;15949:6;15905:72;:::i;:::-;15987;16055:2;16044:9;16040:18;16031:6;15987:72;:::i;:::-;16106:9;16100:4;16096:20;16091:2;16080:9;16076:18;16069:48;16134:76;16205:4;16196:6;16134:76;:::i;:::-;16126:84;;15577:640;;;;;;;:::o;16223:373::-;16366:4;16404:2;16393:9;16389:18;16381:26;;16453:9;16447:4;16443:20;16439:1;16428:9;16424:17;16417:47;16481:108;16584:4;16575:6;16481:108;:::i;:::-;16473:116;;16223:373;;;;:::o;16602:210::-;16689:4;16727:2;16716:9;16712:18;16704:26;;16740:65;16802:1;16791:9;16787:17;16778:6;16740:65;:::i;:::-;16602:210;;;;:::o;16818:313::-;16931:4;16969:2;16958:9;16954:18;16946:26;;17018:9;17012:4;17008:20;17004:1;16993:9;16989:17;16982:47;17046:78;17119:4;17110:6;17046:78;:::i;:::-;17038:86;;16818:313;;;;:::o;17137:419::-;17303:4;17341:2;17330:9;17326:18;17318:26;;17390:9;17384:4;17380:20;17376:1;17365:9;17361:17;17354:47;17418:131;17544:4;17418:131;:::i;:::-;17410:139;;17137:419;;;:::o;17562:::-;17728:4;17766:2;17755:9;17751:18;17743:26;;17815:9;17809:4;17805:20;17801:1;17790:9;17786:17;17779:47;17843:131;17969:4;17843:131;:::i;:::-;17835:139;;17562:419;;;:::o;17987:::-;18153:4;18191:2;18180:9;18176:18;18168:26;;18240:9;18234:4;18230:20;18226:1;18215:9;18211:17;18204:47;18268:131;18394:4;18268:131;:::i;:::-;18260:139;;17987:419;;;:::o;18412:::-;18578:4;18616:2;18605:9;18601:18;18593:26;;18665:9;18659:4;18655:20;18651:1;18640:9;18636:17;18629:47;18693:131;18819:4;18693:131;:::i;:::-;18685:139;;18412:419;;;:::o;18837:::-;19003:4;19041:2;19030:9;19026:18;19018:26;;19090:9;19084:4;19080:20;19076:1;19065:9;19061:17;19054:47;19118:131;19244:4;19118:131;:::i;:::-;19110:139;;18837:419;;;:::o;19262:::-;19428:4;19466:2;19455:9;19451:18;19443:26;;19515:9;19509:4;19505:20;19501:1;19490:9;19486:17;19479:47;19543:131;19669:4;19543:131;:::i;:::-;19535:139;;19262:419;;;:::o;19687:::-;19853:4;19891:2;19880:9;19876:18;19868:26;;19940:9;19934:4;19930:20;19926:1;19915:9;19911:17;19904:47;19968:131;20094:4;19968:131;:::i;:::-;19960:139;;19687:419;;;:::o;20112:::-;20278:4;20316:2;20305:9;20301:18;20293:26;;20365:9;20359:4;20355:20;20351:1;20340:9;20336:17;20329:47;20393:131;20519:4;20393:131;:::i;:::-;20385:139;;20112:419;;;:::o;20537:::-;20703:4;20741:2;20730:9;20726:18;20718:26;;20790:9;20784:4;20780:20;20776:1;20765:9;20761:17;20754:47;20818:131;20944:4;20818:131;:::i;:::-;20810:139;;20537:419;;;:::o;20962:::-;21128:4;21166:2;21155:9;21151:18;21143:26;;21215:9;21209:4;21205:20;21201:1;21190:9;21186:17;21179:47;21243:131;21369:4;21243:131;:::i;:::-;21235:139;;20962:419;;;:::o;21387:222::-;21480:4;21518:2;21507:9;21503:18;21495:26;;21531:71;21599:1;21588:9;21584:17;21575:6;21531:71;:::i;:::-;21387:222;;;;:::o;21615:129::-;21649:6;21676:20;;:::i;:::-;21666:30;;21705:33;21733:4;21725:6;21705:33;:::i;:::-;21615:129;;;:::o;21750:75::-;21783:6;21816:2;21810:9;21800:19;;21750:75;:::o;21831:307::-;21892:4;21982:18;21974:6;21971:30;21968:56;;;22004:18;;:::i;:::-;21968:56;22042:29;22064:6;22042:29;:::i;:::-;22034:37;;22126:4;22120;22116:15;22108:23;;21831:307;;;:::o;22144:308::-;22206:4;22296:18;22288:6;22285:30;22282:56;;;22318:18;;:::i;:::-;22282:56;22356:29;22378:6;22356:29;:::i;:::-;22348:37;;22440:4;22434;22430:15;22422:23;;22144:308;;;:::o;22458:132::-;22525:4;22548:3;22540:11;;22578:4;22573:3;22569:14;22561:22;;22458:132;;;:::o;22596:114::-;22663:6;22697:5;22691:12;22681:22;;22596:114;;;:::o;22716:98::-;22767:6;22801:5;22795:12;22785:22;;22716:98;;;:::o;22820:99::-;22872:6;22906:5;22900:12;22890:22;;22820:99;;;:::o;22925:113::-;22995:4;23027;23022:3;23018:14;23010:22;;22925:113;;;:::o;23044:184::-;23143:11;23177:6;23172:3;23165:19;23217:4;23212:3;23208:14;23193:29;;23044:184;;;;:::o;23234:168::-;23317:11;23351:6;23346:3;23339:19;23391:4;23386:3;23382:14;23367:29;;23234:168;;;;:::o;23408:169::-;23492:11;23526:6;23521:3;23514:19;23566:4;23561:3;23557:14;23542:29;;23408:169;;;;:::o;23583:148::-;23685:11;23722:3;23707:18;;23583:148;;;;:::o;23737:305::-;23777:3;23796:20;23814:1;23796:20;:::i;:::-;23791:25;;23830:20;23848:1;23830:20;:::i;:::-;23825:25;;23984:1;23916:66;23912:74;23909:1;23906:81;23903:107;;;23990:18;;:::i;:::-;23903:107;24034:1;24031;24027:9;24020:16;;23737:305;;;;:::o;24048:348::-;24088:7;24111:20;24129:1;24111:20;:::i;:::-;24106:25;;24145:20;24163:1;24145:20;:::i;:::-;24140:25;;24333:1;24265:66;24261:74;24258:1;24255:81;24250:1;24243:9;24236:17;24232:105;24229:131;;;24340:18;;:::i;:::-;24229:131;24388:1;24385;24381:9;24370:20;;24048:348;;;;:::o;24402:191::-;24442:4;24462:20;24480:1;24462:20;:::i;:::-;24457:25;;24496:20;24514:1;24496:20;:::i;:::-;24491:25;;24535:1;24532;24529:8;24526:34;;;24540:18;;:::i;:::-;24526:34;24585:1;24582;24578:9;24570:17;;24402:191;;;;:::o;24599:96::-;24636:7;24665:24;24683:5;24665:24;:::i;:::-;24654:35;;24599:96;;;:::o;24701:90::-;24735:7;24778:5;24771:13;24764:21;24753:32;;24701:90;;;:::o;24797:149::-;24833:7;24873:66;24866:5;24862:78;24851:89;;24797:149;;;:::o;24952:126::-;24989:7;25029:42;25022:5;25018:54;25007:65;;24952:126;;;:::o;25084:77::-;25121:7;25150:5;25139:16;;25084:77;;;:::o;25167:154::-;25251:6;25246:3;25241;25228:30;25313:1;25304:6;25299:3;25295:16;25288:27;25167:154;;;:::o;25327:307::-;25395:1;25405:113;25419:6;25416:1;25413:13;25405:113;;;25504:1;25499:3;25495:11;25489:18;25485:1;25480:3;25476:11;25469:39;25441:2;25438:1;25434:10;25429:15;;25405:113;;;25536:6;25533:1;25530:13;25527:101;;;25616:1;25607:6;25602:3;25598:16;25591:27;25527:101;25376:258;25327:307;;;:::o;25640:320::-;25684:6;25721:1;25715:4;25711:12;25701:22;;25768:1;25762:4;25758:12;25789:18;25779:81;;25845:4;25837:6;25833:17;25823:27;;25779:81;25907:2;25899:6;25896:14;25876:18;25873:38;25870:84;;;25926:18;;:::i;:::-;25870:84;25691:269;25640:320;;;:::o;25966:281::-;26049:27;26071:4;26049:27;:::i;:::-;26041:6;26037:40;26179:6;26167:10;26164:22;26143:18;26131:10;26128:34;26125:62;26122:88;;;26190:18;;:::i;:::-;26122:88;26230:10;26226:2;26219:22;26009:238;25966:281;;:::o;26253:180::-;26301:77;26298:1;26291:88;26398:4;26395:1;26388:15;26422:4;26419:1;26412:15;26439:180;26487:77;26484:1;26477:88;26584:4;26581:1;26574:15;26608:4;26605:1;26598:15;26625:180;26673:77;26670:1;26663:88;26770:4;26767:1;26760:15;26794:4;26791:1;26784:15;26811:180;26859:77;26856:1;26849:88;26956:4;26953:1;26946:15;26980:4;26977:1;26970:15;26997:117;27106:1;27103;27096:12;27120:117;27229:1;27226;27219:12;27243:117;27352:1;27349;27342:12;27366:117;27475:1;27472;27465:12;27489:102;27530:6;27581:2;27577:7;27572:2;27565:5;27561:14;27557:28;27547:38;;27489:102;;;:::o;27597:235::-;27737:34;27733:1;27725:6;27721:14;27714:58;27806:18;27801:2;27793:6;27789:15;27782:43;27597:235;:::o;27838:225::-;27978:34;27974:1;27966:6;27962:14;27955:58;28047:8;28042:2;28034:6;28030:15;28023:33;27838:225;:::o;28069:160::-;28209:12;28205:1;28197:6;28193:14;28186:36;28069:160;:::o;28235:173::-;28375:25;28371:1;28363:6;28359:14;28352:49;28235:173;:::o;28414:172::-;28554:24;28550:1;28542:6;28538:14;28531:48;28414:172;:::o;28592:155::-;28732:7;28728:1;28720:6;28716:14;28709:31;28592:155;:::o;28753:182::-;28893:34;28889:1;28881:6;28877:14;28870:58;28753:182;:::o;28941:168::-;29081:20;29077:1;29069:6;29065:14;29058:44;28941:168;:::o;29115:177::-;29255:29;29251:1;29243:6;29239:14;29232:53;29115:177;:::o;29298:181::-;29438:33;29434:1;29426:6;29422:14;29415:57;29298:181;:::o;29485:::-;29625:33;29621:1;29613:6;29609:14;29602:57;29485:181;:::o;29672:122::-;29745:24;29763:5;29745:24;:::i;:::-;29738:5;29735:35;29725:63;;29784:1;29781;29774:12;29725:63;29672:122;:::o;29800:116::-;29870:21;29885:5;29870:21;:::i;:::-;29863:5;29860:32;29850:60;;29906:1;29903;29896:12;29850:60;29800:116;:::o;29922:120::-;29994:23;30011:5;29994:23;:::i;:::-;29987:5;29984:34;29974:62;;30032:1;30029;30022:12;29974:62;29922:120;:::o;30048:122::-;30121:24;30139:5;30121:24;:::i;:::-;30114:5;30111:35;30101:63;;30160:1;30157;30150:12;30101:63;30048:122;:::o

Swarm Source

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