ETH Price: $2,388.83 (-3.74%)

Token

CryptoCAAAAAT (CAAAAAT)
 

Overview

Max Total Supply

726 CAAAAAT

Holders

632

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CAAAAAT
0xc48741a8b9af678ae0122c9f9db64e1b3a882465
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:
CryptoCAAAAAT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
╔═╗╔═╗╔═╗╔═╗╔═╗╔═╗╔╦╗
║  ╠═╣╠═╣╠═╣╠═╣╠═╣ ║ 
╚═╝╩ ╩╩ ╩╩ ╩╩ ╩╩ ╩ ╩                                          
 */

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


pragma solidity ^0.8.13;

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

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


pragma solidity ^0.8.13;


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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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

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


pragma solidity ^0.8.13;


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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/NFT.sol


pragma solidity ^0.8.15;


contract CryptoCAAAAAT is ERC721A, DefaultOperatorFilterer, Ownable {

    mapping (address => bool) public minterAddress;
    bool public mintIsOpen;
    string public baseURI = "ipfs://bafybeifbz6t74awuda7kzxt3a5mrrsoum5jexrjoi7pebcgv276zldyfma/";  
    string public baseExtension = ".json";
    uint256 public price = 0.002 ether;
    uint256 public maxSupply = 730;
    uint256 public maxPerTransaction = 7; 
    uint256 public maxFree = 700; 
    uint256 public maxFreePerWallet = 1; 

    mapping(address => bool) freeMintMapping;
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }
    constructor () ERC721A("CryptoCAAAAAT", "CAAAAAT") {
        mintIsOpen = true;
    }

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

    // Mint
    function PublicMint(uint256 amount) public payable callerIsUser{
        require(mintIsOpen , "Not Open Yet!");
        require(amount <= maxPerTransaction, "Max Per Transaction!");
        require(totalSupply() + amount <= maxSupply, "Sold Out!");
        uint256 mintAmount = amount;
        
        if (!freeMintMapping[msg.sender] && totalSupply() + amount <= maxFree) {
            freeMintMapping[msg.sender] = true;
            mintAmount--;
        }

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

    function airdrop(uint256[] calldata amount, address[] calldata owners) public onlyOwner {
        for(uint256 i = 0; i < owners.length; ++i) {            
            _safeMint(owners[i], amount[i]); // Minting of the token
        }
    }

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

    function toggleMint() public onlyOwner {
        mintIsOpen = !mintIsOpen;
    }

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"amount","type":"uint256[]"},{"internalType":"address[]","name":"owners","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintIsOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806043815260200162003fc360439139600b90816200002e9190620006ed565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9081620000759190620006ed565b5066071afd498d0000600d556102da600e556007600f556102bc6010556001601155348015620000a457600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020017f43727970746f43414141414154000000000000000000000000000000000000008152506040518060400160405280600781526020017f43414141414154000000000000000000000000000000000000000000000000008152508160029081620001399190620006ed565b5080600390816200014b9190620006ed565b506200015c6200039c60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003595780156200021f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001e592919062000819565b600060405180830381600087803b1580156200020057600080fd5b505af115801562000215573d6000803e3d6000fd5b5050505062000358565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002d9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200029f92919062000819565b600060405180830381600087803b158015620002ba57600080fd5b505af1158015620002cf573d6000803e3d6000fd5b5050505062000357565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000322919062000846565b600060405180830381600087803b1580156200033d57600080fd5b505af115801562000352573d6000803e3d6000fd5b505050505b5b5b50506200037b6200036f620003a560201b60201c565b620003ad60201b60201c565b6001600a60006101000a81548160ff02191690831515021790555062000863565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f557607f821691505b6020821081036200050b576200050a620004ad565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000536565b62000581868362000536565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005ce620005c8620005c28462000599565b620005a3565b62000599565b9050919050565b6000819050919050565b620005ea83620005ad565b62000602620005f982620005d5565b84845462000543565b825550505050565b600090565b620006196200060a565b62000626818484620005df565b505050565b5b818110156200064e57620006426000826200060f565b6001810190506200062c565b5050565b601f8211156200069d57620006678162000511565b620006728462000526565b8101602085101562000682578190505b6200069a620006918562000526565b8301826200062b565b50505b505050565b600082821c905092915050565b6000620006c260001984600802620006a2565b1980831691505092915050565b6000620006dd8383620006af565b9150826002028217905092915050565b620006f88262000473565b67ffffffffffffffff8111156200071457620007136200047e565b5b620007208254620004dc565b6200072d82828562000652565b600060209050601f83116001811462000765576000841562000750578287015190505b6200075c8582620006cf565b865550620007cc565b601f198416620007758662000511565b60005b828110156200079f5784890151825560018201915060208501945060208101905062000778565b86831015620007bf5784890151620007bb601f891682620006af565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200080182620007d4565b9050919050565b6200081381620007f4565b82525050565b600060408201905062000830600083018562000808565b6200083f602083018462000808565b9392505050565b60006020820190506200085d600083018462000808565b92915050565b61375080620008736000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a7027357116100a0578063c87b56dd1161006f578063c87b56dd14610686578063d3dd5fe0146106c3578063d5abeb01146106da578063e985e9c514610705578063f2fde38b14610742576101ee565b8063a7027357146105e9578063aa1152ab14610614578063b88d4fde1461063f578063c66828621461065b576101ee565b806395d89b41116100dc57806395d89b411461054e5780639fb17e3414610579578063a035b1fe14610595578063a22cb465146105c0576101ee565b806370a08231146104a6578063715018a6146104e35780638da5cb5b146104fa57806391b7f5ed14610525576101ee565b806341f434341161018557806355f804b31161015457806355f804b3146103ec5780636352211e146104155780636673c4c2146104525780636c0360eb1461047b576101ee565b806341f434341461034f57806342842e0e1461037a578063485a68a3146103965780634b980d67146103c1576101ee565b806318160ddd116101c157806318160ddd146102b457806322ae7f7b146102df57806323b872dd1461031c5780633ccfd60b14610338576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612650565b61076b565b6040516102279190612698565b60405180910390f35b34801561023c57600080fd5b506102456107fd565b6040516102529190612743565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061279b565b61088f565b60405161028f9190612809565b60405180910390f35b6102b260048036038101906102ad9190612850565b61090e565b005b3480156102c057600080fd5b506102c9610a18565b6040516102d6919061289f565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906128ba565b610a2f565b6040516103139190612698565b60405180910390f35b610336600480360381019061033191906128e7565b610a4f565b005b34801561034457600080fd5b5061034d610b9f565b005b34801561035b57600080fd5b50610364610bf0565b6040516103719190612999565b60405180910390f35b610394600480360381019061038f91906128e7565b610c02565b005b3480156103a257600080fd5b506103ab610d52565b6040516103b8919061289f565b60405180910390f35b3480156103cd57600080fd5b506103d6610d58565b6040516103e3919061289f565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190612ae9565b610d5e565b005b34801561042157600080fd5b5061043c6004803603810190610437919061279b565b610d79565b6040516104499190612809565b60405180910390f35b34801561045e57600080fd5b5061047960048036038101906104749190612be8565b610d8b565b005b34801561048757600080fd5b50610490610e03565b60405161049d9190612743565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906128ba565b610e91565b6040516104da919061289f565b60405180910390f35b3480156104ef57600080fd5b506104f8610f49565b005b34801561050657600080fd5b5061050f610f5d565b60405161051c9190612809565b60405180910390f35b34801561053157600080fd5b5061054c6004803603810190610547919061279b565b610f87565b005b34801561055a57600080fd5b50610563610f99565b6040516105709190612743565b60405180910390f35b610593600480360381019061058e919061279b565b61102b565b005b3480156105a157600080fd5b506105aa6112d4565b6040516105b7919061289f565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190612c95565b6112da565b005b3480156105f557600080fd5b506105fe6113e4565b60405161060b919061289f565b60405180910390f35b34801561062057600080fd5b506106296113ea565b6040516106369190612698565b60405180910390f35b61065960048036038101906106549190612d76565b6113fd565b005b34801561066757600080fd5b50610670611550565b60405161067d9190612743565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a8919061279b565b6115de565b6040516106ba9190612743565b60405180910390f35b3480156106cf57600080fd5b506106d861167c565b005b3480156106e657600080fd5b506106ef6116b0565b6040516106fc919061289f565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612df9565b6116b6565b6040516107399190612698565b60405180910390f35b34801561074e57600080fd5b50610769600480360381019061076491906128ba565b61174a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080c90612e68565b80601f016020809104026020016040519081016040528092919081815260200182805461083890612e68565b80156108855780601f1061085a57610100808354040283529160200191610885565b820191906000526020600020905b81548152906001019060200180831161086857829003601f168201915b5050505050905090565b600061089a826117cd565b6108d0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a09576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610986929190612e99565b602060405180830381865afa1580156109a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c79190612ed7565b610a0857806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109ff9190612809565b60405180910390fd5b5b610a13838361182c565b505050565b6000610a22611970565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b8d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac157610abc848484611979565b610b99565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b0a929190612e99565b602060405180830381865afa158015610b27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4b9190612ed7565b610b8c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b839190612809565b60405180910390fd5b5b610b98848484611979565b5b50505050565b610ba7611c9b565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bed573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d40573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c7457610c6f848484611d19565b610d4c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cbd929190612e99565b602060405180830381865afa158015610cda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfe9190612ed7565b610d3f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d369190612809565b60405180910390fd5b5b610d4b848484611d19565b5b50505050565b60105481565b600f5481565b610d66611c9b565b80600b9081610d7591906130a6565b5050565b6000610d8482611d39565b9050919050565b610d93611c9b565b60005b82829050811015610dfc57610deb838383818110610db757610db6613178565b5b9050602002016020810190610dcc91906128ba565b868684818110610ddf57610dde613178565b5b90506020020135611e05565b80610df5906131d6565b9050610d96565b5050505050565b600b8054610e1090612e68565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3c90612e68565b8015610e895780601f10610e5e57610100808354040283529160200191610e89565b820191906000526020600020905b815481529060010190602001808311610e6c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f51611c9b565b610f5b6000611e23565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f8f611c9b565b80600d8190555050565b606060038054610fa890612e68565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd490612e68565b80156110215780601f10610ff657610100808354040283529160200191611021565b820191906000526020600020905b81548152906001019060200180831161100457829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110909061326a565b60405180910390fd5b600a60009054906101000a900460ff166110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df906132d6565b60405180910390fd5b600f5481111561112d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112490613342565b60405180910390fd5b600e5481611139610a18565b6111439190613362565b1115611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b906133e2565b60405180910390fd5b6000819050601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156111f75750601054826111ea610a18565b6111f49190613362565b11155b15611263576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061125f90613402565b9150505b60003411806112725750600081145b6112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890613477565b60405180910390fd5b80600d546112bf9190613497565b34106112d0576112cf3383611e05565b5b5050565b600d5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113d5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611352929190612e99565b602060405180830381865afa15801561136f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113939190612ed7565b6113d457806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113cb9190612809565b60405180910390fd5b5b6113df8383611ee9565b505050565b60115481565b600a60009054906101000a900460ff1681565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561153c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114705761146b85858585611ff4565b611549565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016114b9929190612e99565b602060405180830381865afa1580156114d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fa9190612ed7565b61153b57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115329190612809565b60405180910390fd5b5b61154885858585611ff4565b5b5050505050565b600c805461155d90612e68565b80601f016020809104026020016040519081016040528092919081815260200182805461158990612e68565b80156115d65780601f106115ab576101008083540402835291602001916115d6565b820191906000526020600020905b8154815290600101906020018083116115b957829003601f168201915b505050505081565b60606115e9826117cd565b61161f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611629612067565b905060008151036116495760405180602001604052806000815250611674565b80611653846120f9565b604051602001611664929190613515565b6040516020818303038152906040525b915050919050565b611684611c9b565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611752611c9b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b8906135ab565b60405180910390fd5b6117ca81611e23565b50565b6000816117d8611970565b111580156117e7575060005482105b8015611825575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061183782610d79565b90508073ffffffffffffffffffffffffffffffffffffffff16611858612149565b73ffffffffffffffffffffffffffffffffffffffff16146118bb576118848161187f612149565b6116b6565b6118ba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061198482611d39565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119eb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806119f784612151565b91509150611a0d8187611a08612149565b612178565b611a5957611a2286611a1d612149565b6116b6565b611a58576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611abf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611acc86868660016121bc565b8015611ad757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611ba585611b818888876121c2565b7c0200000000000000000000000000000000000000000000000000000000176121ea565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611c2b5760006001850190506000600460008381526020019081526020016000205403611c29576000548114611c28578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c938686866001612215565b505050505050565b611ca361221b565b73ffffffffffffffffffffffffffffffffffffffff16611cc1610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e90613617565b60405180910390fd5b565b611d34838383604051806020016040528060008152506113fd565b505050565b60008082905080611d48611970565b11611dce57600054811015611dcd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611dcb575b60008103611dc1576004600083600190039350838152602001908152602001600020549050611d97565b8092505050611e00565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611e1f828260405180602001604052806000815250612223565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611ef6612149565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fa3612149565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fe89190612698565b60405180910390a35050565b611fff848484610a4f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120615761202a848484846122c0565b612060576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b805461207690612e68565b80601f01602080910402602001604051908101604052809291908181526020018280546120a290612e68565b80156120ef5780601f106120c4576101008083540402835291602001916120ef565b820191906000526020600020905b8154815290600101906020018083116120d257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561213457600184039350600a81066030018453600a8104905080612112575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121d9868684612410565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61222d8383612419565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122bb57600080549050600083820390505b61226d60008683806001019450866122c0565b6122a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061225a5781600054146122b857600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122e6612149565b8786866040518563ffffffff1660e01b8152600401612308949392919061368c565b6020604051808303816000875af192505050801561234457506040513d601f19601f8201168201806040525081019061234191906136ed565b60015b6123bd573d8060008114612374576040519150601f19603f3d011682016040523d82523d6000602084013e612379565b606091505b5060008151036123b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612459576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61246660008483856121bc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124dd836124ce60008660006121c2565b6124d7856125d4565b176121ea565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461257e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612543565b50600082036125b9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125cf6000848385612215565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61262d816125f8565b811461263857600080fd5b50565b60008135905061264a81612624565b92915050565b600060208284031215612666576126656125ee565b5b60006126748482850161263b565b91505092915050565b60008115159050919050565b6126928161267d565b82525050565b60006020820190506126ad6000830184612689565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126ed5780820151818401526020810190506126d2565b60008484015250505050565b6000601f19601f8301169050919050565b6000612715826126b3565b61271f81856126be565b935061272f8185602086016126cf565b612738816126f9565b840191505092915050565b6000602082019050818103600083015261275d818461270a565b905092915050565b6000819050919050565b61277881612765565b811461278357600080fd5b50565b6000813590506127958161276f565b92915050565b6000602082840312156127b1576127b06125ee565b5b60006127bf84828501612786565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127f3826127c8565b9050919050565b612803816127e8565b82525050565b600060208201905061281e60008301846127fa565b92915050565b61282d816127e8565b811461283857600080fd5b50565b60008135905061284a81612824565b92915050565b60008060408385031215612867576128666125ee565b5b60006128758582860161283b565b925050602061288685828601612786565b9150509250929050565b61289981612765565b82525050565b60006020820190506128b46000830184612890565b92915050565b6000602082840312156128d0576128cf6125ee565b5b60006128de8482850161283b565b91505092915050565b600080600060608486031215612900576128ff6125ee565b5b600061290e8682870161283b565b935050602061291f8682870161283b565b925050604061293086828701612786565b9150509250925092565b6000819050919050565b600061295f61295a612955846127c8565b61293a565b6127c8565b9050919050565b600061297182612944565b9050919050565b600061298382612966565b9050919050565b61299381612978565b82525050565b60006020820190506129ae600083018461298a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129f6826126f9565b810181811067ffffffffffffffff82111715612a1557612a146129be565b5b80604052505050565b6000612a286125e4565b9050612a3482826129ed565b919050565b600067ffffffffffffffff821115612a5457612a536129be565b5b612a5d826126f9565b9050602081019050919050565b82818337600083830152505050565b6000612a8c612a8784612a39565b612a1e565b905082815260208101848484011115612aa857612aa76129b9565b5b612ab3848285612a6a565b509392505050565b600082601f830112612ad057612acf6129b4565b5b8135612ae0848260208601612a79565b91505092915050565b600060208284031215612aff57612afe6125ee565b5b600082013567ffffffffffffffff811115612b1d57612b1c6125f3565b5b612b2984828501612abb565b91505092915050565b600080fd5b600080fd5b60008083601f840112612b5257612b516129b4565b5b8235905067ffffffffffffffff811115612b6f57612b6e612b32565b5b602083019150836020820283011115612b8b57612b8a612b37565b5b9250929050565b60008083601f840112612ba857612ba76129b4565b5b8235905067ffffffffffffffff811115612bc557612bc4612b32565b5b602083019150836020820283011115612be157612be0612b37565b5b9250929050565b60008060008060408587031215612c0257612c016125ee565b5b600085013567ffffffffffffffff811115612c2057612c1f6125f3565b5b612c2c87828801612b3c565b9450945050602085013567ffffffffffffffff811115612c4f57612c4e6125f3565b5b612c5b87828801612b92565b925092505092959194509250565b612c728161267d565b8114612c7d57600080fd5b50565b600081359050612c8f81612c69565b92915050565b60008060408385031215612cac57612cab6125ee565b5b6000612cba8582860161283b565b9250506020612ccb85828601612c80565b9150509250929050565b600067ffffffffffffffff821115612cf057612cef6129be565b5b612cf9826126f9565b9050602081019050919050565b6000612d19612d1484612cd5565b612a1e565b905082815260208101848484011115612d3557612d346129b9565b5b612d40848285612a6a565b509392505050565b600082601f830112612d5d57612d5c6129b4565b5b8135612d6d848260208601612d06565b91505092915050565b60008060008060808587031215612d9057612d8f6125ee565b5b6000612d9e8782880161283b565b9450506020612daf8782880161283b565b9350506040612dc087828801612786565b925050606085013567ffffffffffffffff811115612de157612de06125f3565b5b612ded87828801612d48565b91505092959194509250565b60008060408385031215612e1057612e0f6125ee565b5b6000612e1e8582860161283b565b9250506020612e2f8582860161283b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e8057607f821691505b602082108103612e9357612e92612e39565b5b50919050565b6000604082019050612eae60008301856127fa565b612ebb60208301846127fa565b9392505050565b600081519050612ed181612c69565b92915050565b600060208284031215612eed57612eec6125ee565b5b6000612efb84828501612ec2565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612f667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f29565b612f708683612f29565b95508019841693508086168417925050509392505050565b6000612fa3612f9e612f9984612765565b61293a565b612765565b9050919050565b6000819050919050565b612fbd83612f88565b612fd1612fc982612faa565b848454612f36565b825550505050565b600090565b612fe6612fd9565b612ff1818484612fb4565b505050565b5b818110156130155761300a600082612fde565b600181019050612ff7565b5050565b601f82111561305a5761302b81612f04565b61303484612f19565b81016020851015613043578190505b61305761304f85612f19565b830182612ff6565b50505b505050565b600082821c905092915050565b600061307d6000198460080261305f565b1980831691505092915050565b6000613096838361306c565b9150826002028217905092915050565b6130af826126b3565b67ffffffffffffffff8111156130c8576130c76129be565b5b6130d28254612e68565b6130dd828285613019565b600060209050601f83116001811461311057600084156130fe578287015190505b613108858261308a565b865550613170565b601f19841661311e86612f04565b60005b8281101561314657848901518255600182019150602085019450602081019050613121565b86831015613163578489015161315f601f89168261306c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131e182612765565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613213576132126131a7565b5b600182019050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613254601e836126be565b915061325f8261321e565b602082019050919050565b6000602082019050818103600083015261328381613247565b9050919050565b7f4e6f74204f70656e205965742100000000000000000000000000000000000000600082015250565b60006132c0600d836126be565b91506132cb8261328a565b602082019050919050565b600060208201905081810360008301526132ef816132b3565b9050919050565b7f4d617820506572205472616e73616374696f6e21000000000000000000000000600082015250565b600061332c6014836126be565b9150613337826132f6565b602082019050919050565b6000602082019050818103600083015261335b8161331f565b9050919050565b600061336d82612765565b915061337883612765565b92508282019050808211156133905761338f6131a7565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b60006133cc6009836126be565b91506133d782613396565b602082019050919050565b600060208201905081810360008301526133fb816133bf565b9050919050565b600061340d82612765565b9150600082036134205761341f6131a7565b5b600182039050919050565b7f496e73756666696369656e742100000000000000000000000000000000000000600082015250565b6000613461600d836126be565b915061346c8261342b565b602082019050919050565b6000602082019050818103600083015261349081613454565b9050919050565b60006134a282612765565b91506134ad83612765565b92508282026134bb81612765565b915082820484148315176134d2576134d16131a7565b5b5092915050565b600081905092915050565b60006134ef826126b3565b6134f981856134d9565b93506135098185602086016126cf565b80840191505092915050565b600061352182856134e4565b915061352d82846134e4565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135956026836126be565b91506135a082613539565b604082019050919050565b600060208201905081810360008301526135c481613588565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136016020836126be565b915061360c826135cb565b602082019050919050565b60006020820190508181036000830152613630816135f4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061365e82613637565b6136688185613642565b93506136788185602086016126cf565b613681816126f9565b840191505092915050565b60006080820190506136a160008301876127fa565b6136ae60208301866127fa565b6136bb6040830185612890565b81810360608301526136cd8184613653565b905095945050505050565b6000815190506136e781612624565b92915050565b600060208284031215613703576137026125ee565b5b6000613711848285016136d8565b9150509291505056fea26469706673582212209525d6b9dd47de96452f3865d3795b10792d21d094433fac821214a1f143097864736f6c63430008110033697066733a2f2f6261667962656966627a367437346177756461376b7a78743361356d7272736f756d356a6578726a6f69377065626367763237367a6c6479666d612f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063a7027357116100a0578063c87b56dd1161006f578063c87b56dd14610686578063d3dd5fe0146106c3578063d5abeb01146106da578063e985e9c514610705578063f2fde38b14610742576101ee565b8063a7027357146105e9578063aa1152ab14610614578063b88d4fde1461063f578063c66828621461065b576101ee565b806395d89b41116100dc57806395d89b411461054e5780639fb17e3414610579578063a035b1fe14610595578063a22cb465146105c0576101ee565b806370a08231146104a6578063715018a6146104e35780638da5cb5b146104fa57806391b7f5ed14610525576101ee565b806341f434341161018557806355f804b31161015457806355f804b3146103ec5780636352211e146104155780636673c4c2146104525780636c0360eb1461047b576101ee565b806341f434341461034f57806342842e0e1461037a578063485a68a3146103965780634b980d67146103c1576101ee565b806318160ddd116101c157806318160ddd146102b457806322ae7f7b146102df57806323b872dd1461031c5780633ccfd60b14610338576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612650565b61076b565b6040516102279190612698565b60405180910390f35b34801561023c57600080fd5b506102456107fd565b6040516102529190612743565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d919061279b565b61088f565b60405161028f9190612809565b60405180910390f35b6102b260048036038101906102ad9190612850565b61090e565b005b3480156102c057600080fd5b506102c9610a18565b6040516102d6919061289f565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906128ba565b610a2f565b6040516103139190612698565b60405180910390f35b610336600480360381019061033191906128e7565b610a4f565b005b34801561034457600080fd5b5061034d610b9f565b005b34801561035b57600080fd5b50610364610bf0565b6040516103719190612999565b60405180910390f35b610394600480360381019061038f91906128e7565b610c02565b005b3480156103a257600080fd5b506103ab610d52565b6040516103b8919061289f565b60405180910390f35b3480156103cd57600080fd5b506103d6610d58565b6040516103e3919061289f565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190612ae9565b610d5e565b005b34801561042157600080fd5b5061043c6004803603810190610437919061279b565b610d79565b6040516104499190612809565b60405180910390f35b34801561045e57600080fd5b5061047960048036038101906104749190612be8565b610d8b565b005b34801561048757600080fd5b50610490610e03565b60405161049d9190612743565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906128ba565b610e91565b6040516104da919061289f565b60405180910390f35b3480156104ef57600080fd5b506104f8610f49565b005b34801561050657600080fd5b5061050f610f5d565b60405161051c9190612809565b60405180910390f35b34801561053157600080fd5b5061054c6004803603810190610547919061279b565b610f87565b005b34801561055a57600080fd5b50610563610f99565b6040516105709190612743565b60405180910390f35b610593600480360381019061058e919061279b565b61102b565b005b3480156105a157600080fd5b506105aa6112d4565b6040516105b7919061289f565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190612c95565b6112da565b005b3480156105f557600080fd5b506105fe6113e4565b60405161060b919061289f565b60405180910390f35b34801561062057600080fd5b506106296113ea565b6040516106369190612698565b60405180910390f35b61065960048036038101906106549190612d76565b6113fd565b005b34801561066757600080fd5b50610670611550565b60405161067d9190612743565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a8919061279b565b6115de565b6040516106ba9190612743565b60405180910390f35b3480156106cf57600080fd5b506106d861167c565b005b3480156106e657600080fd5b506106ef6116b0565b6040516106fc919061289f565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190612df9565b6116b6565b6040516107399190612698565b60405180910390f35b34801561074e57600080fd5b50610769600480360381019061076491906128ba565b61174a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080c90612e68565b80601f016020809104026020016040519081016040528092919081815260200182805461083890612e68565b80156108855780601f1061085a57610100808354040283529160200191610885565b820191906000526020600020905b81548152906001019060200180831161086857829003601f168201915b5050505050905090565b600061089a826117cd565b6108d0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a09576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610986929190612e99565b602060405180830381865afa1580156109a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109c79190612ed7565b610a0857806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109ff9190612809565b60405180910390fd5b5b610a13838361182c565b505050565b6000610a22611970565b6001546000540303905090565b60096020528060005260406000206000915054906101000a900460ff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b8d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac157610abc848484611979565b610b99565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b0a929190612e99565b602060405180830381865afa158015610b27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4b9190612ed7565b610b8c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b839190612809565b60405180910390fd5b5b610b98848484611979565b5b50505050565b610ba7611c9b565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bed573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d40573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c7457610c6f848484611d19565b610d4c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610cbd929190612e99565b602060405180830381865afa158015610cda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfe9190612ed7565b610d3f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d369190612809565b60405180910390fd5b5b610d4b848484611d19565b5b50505050565b60105481565b600f5481565b610d66611c9b565b80600b9081610d7591906130a6565b5050565b6000610d8482611d39565b9050919050565b610d93611c9b565b60005b82829050811015610dfc57610deb838383818110610db757610db6613178565b5b9050602002016020810190610dcc91906128ba565b868684818110610ddf57610dde613178565b5b90506020020135611e05565b80610df5906131d6565b9050610d96565b5050505050565b600b8054610e1090612e68565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3c90612e68565b8015610e895780601f10610e5e57610100808354040283529160200191610e89565b820191906000526020600020905b815481529060010190602001808311610e6c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ef8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f51611c9b565b610f5b6000611e23565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f8f611c9b565b80600d8190555050565b606060038054610fa890612e68565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd490612e68565b80156110215780601f10610ff657610100808354040283529160200191611021565b820191906000526020600020905b81548152906001019060200180831161100457829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110909061326a565b60405180910390fd5b600a60009054906101000a900460ff166110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df906132d6565b60405180910390fd5b600f5481111561112d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112490613342565b60405180910390fd5b600e5481611139610a18565b6111439190613362565b1115611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b906133e2565b60405180910390fd5b6000819050601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156111f75750601054826111ea610a18565b6111f49190613362565b11155b15611263576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061125f90613402565b9150505b60003411806112725750600081145b6112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890613477565b60405180910390fd5b80600d546112bf9190613497565b34106112d0576112cf3383611e05565b5b5050565b600d5481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156113d5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611352929190612e99565b602060405180830381865afa15801561136f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113939190612ed7565b6113d457806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113cb9190612809565b60405180910390fd5b5b6113df8383611ee9565b505050565b60115481565b600a60009054906101000a900460ff1681565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561153c573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114705761146b85858585611ff4565b611549565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016114b9929190612e99565b602060405180830381865afa1580156114d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fa9190612ed7565b61153b57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016115329190612809565b60405180910390fd5b5b61154885858585611ff4565b5b5050505050565b600c805461155d90612e68565b80601f016020809104026020016040519081016040528092919081815260200182805461158990612e68565b80156115d65780601f106115ab576101008083540402835291602001916115d6565b820191906000526020600020905b8154815290600101906020018083116115b957829003601f168201915b505050505081565b60606115e9826117cd565b61161f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611629612067565b905060008151036116495760405180602001604052806000815250611674565b80611653846120f9565b604051602001611664929190613515565b6040516020818303038152906040525b915050919050565b611684611c9b565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611752611c9b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b8906135ab565b60405180910390fd5b6117ca81611e23565b50565b6000816117d8611970565b111580156117e7575060005482105b8015611825575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061183782610d79565b90508073ffffffffffffffffffffffffffffffffffffffff16611858612149565b73ffffffffffffffffffffffffffffffffffffffff16146118bb576118848161187f612149565b6116b6565b6118ba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061198482611d39565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119eb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806119f784612151565b91509150611a0d8187611a08612149565b612178565b611a5957611a2286611a1d612149565b6116b6565b611a58576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611abf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611acc86868660016121bc565b8015611ad757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611ba585611b818888876121c2565b7c0200000000000000000000000000000000000000000000000000000000176121ea565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611c2b5760006001850190506000600460008381526020019081526020016000205403611c29576000548114611c28578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c938686866001612215565b505050505050565b611ca361221b565b73ffffffffffffffffffffffffffffffffffffffff16611cc1610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e90613617565b60405180910390fd5b565b611d34838383604051806020016040528060008152506113fd565b505050565b60008082905080611d48611970565b11611dce57600054811015611dcd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611dcb575b60008103611dc1576004600083600190039350838152602001908152602001600020549050611d97565b8092505050611e00565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611e1f828260405180602001604052806000815250612223565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611ef6612149565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fa3612149565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fe89190612698565b60405180910390a35050565b611fff848484610a4f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120615761202a848484846122c0565b612060576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600b805461207690612e68565b80601f01602080910402602001604051908101604052809291908181526020018280546120a290612e68565b80156120ef5780601f106120c4576101008083540402835291602001916120ef565b820191906000526020600020905b8154815290600101906020018083116120d257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561213457600184039350600a81066030018453600a8104905080612112575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121d9868684612410565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b61222d8383612419565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122bb57600080549050600083820390505b61226d60008683806001019450866122c0565b6122a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061225a5781600054146122b857600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122e6612149565b8786866040518563ffffffff1660e01b8152600401612308949392919061368c565b6020604051808303816000875af192505050801561234457506040513d601f19601f8201168201806040525081019061234191906136ed565b60015b6123bd573d8060008114612374576040519150601f19603f3d011682016040523d82523d6000602084013e612379565b606091505b5060008151036123b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612459576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61246660008483856121bc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124dd836124ce60008660006121c2565b6124d7856125d4565b176121ea565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461257e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612543565b50600082036125b9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125cf6000848385612215565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61262d816125f8565b811461263857600080fd5b50565b60008135905061264a81612624565b92915050565b600060208284031215612666576126656125ee565b5b60006126748482850161263b565b91505092915050565b60008115159050919050565b6126928161267d565b82525050565b60006020820190506126ad6000830184612689565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126ed5780820151818401526020810190506126d2565b60008484015250505050565b6000601f19601f8301169050919050565b6000612715826126b3565b61271f81856126be565b935061272f8185602086016126cf565b612738816126f9565b840191505092915050565b6000602082019050818103600083015261275d818461270a565b905092915050565b6000819050919050565b61277881612765565b811461278357600080fd5b50565b6000813590506127958161276f565b92915050565b6000602082840312156127b1576127b06125ee565b5b60006127bf84828501612786565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127f3826127c8565b9050919050565b612803816127e8565b82525050565b600060208201905061281e60008301846127fa565b92915050565b61282d816127e8565b811461283857600080fd5b50565b60008135905061284a81612824565b92915050565b60008060408385031215612867576128666125ee565b5b60006128758582860161283b565b925050602061288685828601612786565b9150509250929050565b61289981612765565b82525050565b60006020820190506128b46000830184612890565b92915050565b6000602082840312156128d0576128cf6125ee565b5b60006128de8482850161283b565b91505092915050565b600080600060608486031215612900576128ff6125ee565b5b600061290e8682870161283b565b935050602061291f8682870161283b565b925050604061293086828701612786565b9150509250925092565b6000819050919050565b600061295f61295a612955846127c8565b61293a565b6127c8565b9050919050565b600061297182612944565b9050919050565b600061298382612966565b9050919050565b61299381612978565b82525050565b60006020820190506129ae600083018461298a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129f6826126f9565b810181811067ffffffffffffffff82111715612a1557612a146129be565b5b80604052505050565b6000612a286125e4565b9050612a3482826129ed565b919050565b600067ffffffffffffffff821115612a5457612a536129be565b5b612a5d826126f9565b9050602081019050919050565b82818337600083830152505050565b6000612a8c612a8784612a39565b612a1e565b905082815260208101848484011115612aa857612aa76129b9565b5b612ab3848285612a6a565b509392505050565b600082601f830112612ad057612acf6129b4565b5b8135612ae0848260208601612a79565b91505092915050565b600060208284031215612aff57612afe6125ee565b5b600082013567ffffffffffffffff811115612b1d57612b1c6125f3565b5b612b2984828501612abb565b91505092915050565b600080fd5b600080fd5b60008083601f840112612b5257612b516129b4565b5b8235905067ffffffffffffffff811115612b6f57612b6e612b32565b5b602083019150836020820283011115612b8b57612b8a612b37565b5b9250929050565b60008083601f840112612ba857612ba76129b4565b5b8235905067ffffffffffffffff811115612bc557612bc4612b32565b5b602083019150836020820283011115612be157612be0612b37565b5b9250929050565b60008060008060408587031215612c0257612c016125ee565b5b600085013567ffffffffffffffff811115612c2057612c1f6125f3565b5b612c2c87828801612b3c565b9450945050602085013567ffffffffffffffff811115612c4f57612c4e6125f3565b5b612c5b87828801612b92565b925092505092959194509250565b612c728161267d565b8114612c7d57600080fd5b50565b600081359050612c8f81612c69565b92915050565b60008060408385031215612cac57612cab6125ee565b5b6000612cba8582860161283b565b9250506020612ccb85828601612c80565b9150509250929050565b600067ffffffffffffffff821115612cf057612cef6129be565b5b612cf9826126f9565b9050602081019050919050565b6000612d19612d1484612cd5565b612a1e565b905082815260208101848484011115612d3557612d346129b9565b5b612d40848285612a6a565b509392505050565b600082601f830112612d5d57612d5c6129b4565b5b8135612d6d848260208601612d06565b91505092915050565b60008060008060808587031215612d9057612d8f6125ee565b5b6000612d9e8782880161283b565b9450506020612daf8782880161283b565b9350506040612dc087828801612786565b925050606085013567ffffffffffffffff811115612de157612de06125f3565b5b612ded87828801612d48565b91505092959194509250565b60008060408385031215612e1057612e0f6125ee565b5b6000612e1e8582860161283b565b9250506020612e2f8582860161283b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e8057607f821691505b602082108103612e9357612e92612e39565b5b50919050565b6000604082019050612eae60008301856127fa565b612ebb60208301846127fa565b9392505050565b600081519050612ed181612c69565b92915050565b600060208284031215612eed57612eec6125ee565b5b6000612efb84828501612ec2565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612f667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f29565b612f708683612f29565b95508019841693508086168417925050509392505050565b6000612fa3612f9e612f9984612765565b61293a565b612765565b9050919050565b6000819050919050565b612fbd83612f88565b612fd1612fc982612faa565b848454612f36565b825550505050565b600090565b612fe6612fd9565b612ff1818484612fb4565b505050565b5b818110156130155761300a600082612fde565b600181019050612ff7565b5050565b601f82111561305a5761302b81612f04565b61303484612f19565b81016020851015613043578190505b61305761304f85612f19565b830182612ff6565b50505b505050565b600082821c905092915050565b600061307d6000198460080261305f565b1980831691505092915050565b6000613096838361306c565b9150826002028217905092915050565b6130af826126b3565b67ffffffffffffffff8111156130c8576130c76129be565b5b6130d28254612e68565b6130dd828285613019565b600060209050601f83116001811461311057600084156130fe578287015190505b613108858261308a565b865550613170565b601f19841661311e86612f04565b60005b8281101561314657848901518255600182019150602085019450602081019050613121565b86831015613163578489015161315f601f89168261306c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131e182612765565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613213576132126131a7565b5b600182019050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613254601e836126be565b915061325f8261321e565b602082019050919050565b6000602082019050818103600083015261328381613247565b9050919050565b7f4e6f74204f70656e205965742100000000000000000000000000000000000000600082015250565b60006132c0600d836126be565b91506132cb8261328a565b602082019050919050565b600060208201905081810360008301526132ef816132b3565b9050919050565b7f4d617820506572205472616e73616374696f6e21000000000000000000000000600082015250565b600061332c6014836126be565b9150613337826132f6565b602082019050919050565b6000602082019050818103600083015261335b8161331f565b9050919050565b600061336d82612765565b915061337883612765565b92508282019050808211156133905761338f6131a7565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b60006133cc6009836126be565b91506133d782613396565b602082019050919050565b600060208201905081810360008301526133fb816133bf565b9050919050565b600061340d82612765565b9150600082036134205761341f6131a7565b5b600182039050919050565b7f496e73756666696369656e742100000000000000000000000000000000000000600082015250565b6000613461600d836126be565b915061346c8261342b565b602082019050919050565b6000602082019050818103600083015261349081613454565b9050919050565b60006134a282612765565b91506134ad83612765565b92508282026134bb81612765565b915082820484148315176134d2576134d16131a7565b5b5092915050565b600081905092915050565b60006134ef826126b3565b6134f981856134d9565b93506135098185602086016126cf565b80840191505092915050565b600061352182856134e4565b915061352d82846134e4565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135956026836126be565b91506135a082613539565b604082019050919050565b600060208201905081810360008301526135c481613588565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136016020836126be565b915061360c826135cb565b602082019050919050565b60006020820190508181036000830152613630816135f4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061365e82613637565b6136688185613642565b93506136788185602086016126cf565b613681816126f9565b840191505092915050565b60006080820190506136a160008301876127fa565b6136ae60208301866127fa565b6136bb6040830185612890565b81810360608301526136cd8184613653565b905095945050505050565b6000815190506136e781612624565b92915050565b600060208284031215613703576137026125ee565b5b6000613711848285016136d8565b9150509291505056fea26469706673582212209525d6b9dd47de96452f3865d3795b10792d21d094433fac821214a1f143097864736f6c63430008110033

Deployed Bytecode Sourcemap

64196:3519:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24564:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25466:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31957:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66928:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21217:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64273:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67101:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66410:108;;;;;;;;;;;;;:::i;:::-;;3346:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67280:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64623:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64579:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66530:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26859:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65756:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64355:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22401:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63317:103;;;;;;;;;;;;;:::i;:::-;;62669:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66198:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25642:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65095:649;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64501:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66744:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64659:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64326:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67467:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64457:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25852:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66108:82;;;;;;;;;;;;;:::i;:::-;;64542:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32906:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63575:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24564:639;24649:4;24988:10;24973:25;;:11;:25;;;;:102;;;;25065:10;25050:25;;:11;:25;;;;24973:102;:179;;;;25142:10;25127:25;;:11;:25;;;;24973:179;24953:199;;24564:639;;;:::o;25466:100::-;25520:13;25553:5;25546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25466:100;:::o;31957:218::-;32033:7;32058:16;32066:7;32058;:16::i;:::-;32053:64;;32083:34;;;;;;;;;;;;;;32053:64;32137:15;:24;32153:7;32137:24;;;;;;;;;;;:30;;;;;;;;;;;;32130:37;;31957:218;;;:::o;66928:165::-;67032:8;5388:1;3446:42;5340:45;;;:49;5336:225;;;3446:42;5411;;;5462:4;5469:8;5411:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5406:144;;5525:8;5506:28;;;;;;;;;;;:::i;:::-;;;;;;;;5406:144;5336:225;67053:32:::1;67067:8;67077:7;67053:13;:32::i;:::-;66928:165:::0;;;:::o;21217:323::-;21278:7;21506:15;:13;:15::i;:::-;21491:12;;21475:13;;:28;:46;21468:53;;21217:323;:::o;64273:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;67101:171::-;67210:4;4642:1;3446:42;4594:45;;;:49;4590:539;;;4883:10;4875:18;;:4;:18;;;4871:85;;67227:37:::1;67246:4;67252:2;67256:7;67227:18;:37::i;:::-;4934:7:::0;;4871:85;3446:42;4975;;;5026:4;5033:10;4975:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4970:148;;5091:10;5072:30;;;;;;;;;;;:::i;:::-;;;;;;;;4970:148;4590:539;67227:37:::1;67246:4;67252:2;67256:7;67227:18;:37::i;:::-;67101:171:::0;;;;;:::o;66410:108::-;62555:13;:11;:13::i;:::-;66460:10:::1;66452:28;;:51;66481:21;66452:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66410:108::o:0;3346:143::-;3446:42;3346:143;:::o;67280:179::-;67393:4;4642:1;3446:42;4594:45;;;:49;4590:539;;;4883:10;4875:18;;:4;:18;;;4871:85;;67410:41:::1;67433:4;67439:2;67443:7;67410:22;:41::i;:::-;4934:7:::0;;4871:85;3446:42;4975;;;5026:4;5033:10;4975:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4970:148;;5091:10;5072:30;;;;;;;;;;;:::i;:::-;;;;;;;;4970:148;4590:539;67410:41:::1;67433:4;67439:2;67443:7;67410:22;:41::i;:::-;67280:179:::0;;;;;:::o;64623:28::-;;;;:::o;64579:36::-;;;;:::o;66530:100::-;62555:13;:11;:13::i;:::-;66614:8:::1;66604:7;:18;;;;;;:::i;:::-;;66530:100:::0;:::o;26859:152::-;26931:7;26974:27;26993:7;26974:18;:27::i;:::-;26951:52;;26859:152;;;:::o;65756:243::-;62555:13;:11;:13::i;:::-;65859:9:::1;65855:137;65878:6;;:13;;65874:1;:17;65855:137;;;65925:31;65935:6;;65942:1;65935:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;65946:6;;65953:1;65946:9;;;;;;;:::i;:::-;;;;;;;;65925;:31::i;:::-;65893:3;;;;:::i;:::-;;;65855:137;;;;65756:243:::0;;;;:::o;64355:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22401:233::-;22473:7;22514:1;22497:19;;:5;:19;;;22493:60;;22525:28;;;;;;;;;;;;;;22493:60;16560:13;22571:18;:25;22590:5;22571:25;;;;;;;;;;;;;;;;:55;22564:62;;22401:233;;;:::o;63317:103::-;62555:13;:11;:13::i;:::-;63382:30:::1;63409:1;63382:18;:30::i;:::-;63317:103::o:0;62669:87::-;62715:7;62742:6;;;;;;;;;;;62735:13;;62669:87;:::o;66198:88::-;62555:13;:11;:13::i;:::-;66270:8:::1;66262:5;:16;;;;66198:88:::0;:::o;25642:104::-;25698:13;25731:7;25724:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25642:104;:::o;65095:649::-;64807:10;64794:23;;:9;:23;;;64786:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;65177:10:::1;;;;;;;;;;;65169:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;65235:17;;65225:6;:27;;65217:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;65322:9;;65312:6;65296:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;65288:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;65356:18;65377:6;65356:27;;65409:15;:27;65425:10;65409:27;;;;;;;;;;;;;;;;;;;;;;;;;65408:28;:65;;;;;65466:7;;65456:6;65440:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:33;;65408:65;65404:159;;;65520:4;65490:15;:27;65506:10;65490:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;65539:12;;;;;:::i;:::-;;;;65404:159;65595:1;65583:9;:13;:32;;;;65614:1;65600:10;:15;65583:32;65575:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;65669:10;65661:5;;:18;;;;:::i;:::-;65648:9;:31;65644:93;;65696:29;65706:10;65718:6;65696:9;:29::i;:::-;65644:93;65158:586;65095:649:::0;:::o;64501:34::-;;;;:::o;66744:176::-;66848:8;5388:1;3446:42;5340:45;;;:49;5336:225;;;3446:42;5411;;;5462:4;5469:8;5411:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5406:144;;5525:8;5506:28;;;;;;;;;;;:::i;:::-;;;;;;;;5406:144;5336:225;66869:43:::1;66893:8;66903;66869:23;:43::i;:::-;66744:176:::0;;;:::o;64659:35::-;;;;:::o;64326:22::-;;;;;;;;;;;;;:::o;67467:245::-;67635:4;4642:1;3446:42;4594:45;;;:49;4590:539;;;4883:10;4875:18;;:4;:18;;;4871:85;;67657:47:::1;67680:4;67686:2;67690:7;67699:4;67657:22;:47::i;:::-;4934:7:::0;;4871:85;3446:42;4975;;;5026:4;5033:10;4975:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4970:148;;5091:10;5072:30;;;;;;;;;;;:::i;:::-;;;;;;;;4970:148;4590:539;67657:47:::1;67680:4;67686:2;67690:7;67699:4;67657:22;:47::i;:::-;67467:245:::0;;;;;;:::o;64457:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25852:318::-;25925:13;25956:16;25964:7;25956;:16::i;:::-;25951:59;;25981:29;;;;;;;;;;;;;;25951:59;26023:21;26047:10;:8;:10::i;:::-;26023:34;;26100:1;26081:7;26075:21;:26;:87;;;;;;;;;;;;;;;;;26128:7;26137:18;26147:7;26137:9;:18::i;:::-;26111:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26075:87;26068:94;;;25852:318;;;:::o;66108:82::-;62555:13;:11;:13::i;:::-;66172:10:::1;;;;;;;;;;;66171:11;66158:10;;:24;;;;;;;;;;;;;;;;;;66108:82::o:0;64542:30::-;;;;:::o;32906:164::-;33003:4;33027:18;:25;33046:5;33027:25;;;;;;;;;;;;;;;:35;33053:8;33027:35;;;;;;;;;;;;;;;;;;;;;;;;;33020:42;;32906:164;;;;:::o;63575:201::-;62555:13;:11;:13::i;:::-;63684:1:::1;63664:22;;:8;:22;;::::0;63656:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63740:28;63759:8;63740:18;:28::i;:::-;63575:201:::0;:::o;33328:282::-;33393:4;33449:7;33430:15;:13;:15::i;:::-;:26;;:66;;;;;33483:13;;33473:7;:23;33430:66;:153;;;;;33582:1;17336:8;33534:17;:26;33552:7;33534:26;;;;;;;;;;;;:44;:49;33430:153;33410:173;;33328:282;;;:::o;31390:408::-;31479:13;31495:16;31503:7;31495;:16::i;:::-;31479:32;;31551:5;31528:28;;:19;:17;:19::i;:::-;:28;;;31524:175;;31576:44;31593:5;31600:19;:17;:19::i;:::-;31576:16;:44::i;:::-;31571:128;;31648:35;;;;;;;;;;;;;;31571:128;31524:175;31744:2;31711:15;:24;31727:7;31711:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31782:7;31778:2;31762:28;;31771:5;31762:28;;;;;;;;;;;;31468:330;31390:408;;:::o;64973:101::-;65038:7;65065:1;65058:8;;64973:101;:::o;35596:2825::-;35738:27;35768;35787:7;35768:18;:27::i;:::-;35738:57;;35853:4;35812:45;;35828:19;35812:45;;;35808:86;;35866:28;;;;;;;;;;;;;;35808:86;35908:27;35937:23;35964:35;35991:7;35964:26;:35::i;:::-;35907:92;;;;36099:68;36124:15;36141:4;36147:19;:17;:19::i;:::-;36099:24;:68::i;:::-;36094:180;;36187:43;36204:4;36210:19;:17;:19::i;:::-;36187:16;:43::i;:::-;36182:92;;36239:35;;;;;;;;;;;;;;36182:92;36094:180;36305:1;36291:16;;:2;:16;;;36287:52;;36316:23;;;;;;;;;;;;;;36287:52;36352:43;36374:4;36380:2;36384:7;36393:1;36352:21;:43::i;:::-;36488:15;36485:160;;;36628:1;36607:19;36600:30;36485:160;37025:18;:24;37044:4;37025:24;;;;;;;;;;;;;;;;37023:26;;;;;;;;;;;;37094:18;:22;37113:2;37094:22;;;;;;;;;;;;;;;;37092:24;;;;;;;;;;;37416:146;37453:2;37502:45;37517:4;37523:2;37527:19;37502:14;:45::i;:::-;17616:8;37474:73;37416:18;:146::i;:::-;37387:17;:26;37405:7;37387:26;;;;;;;;;;;:175;;;;37733:1;17616:8;37682:19;:47;:52;37678:627;;37755:19;37787:1;37777:7;:11;37755:33;;37944:1;37910:17;:30;37928:11;37910:30;;;;;;;;;;;;:35;37906:384;;38048:13;;38033:11;:28;38029:242;;38228:19;38195:17;:30;38213:11;38195:30;;;;;;;;;;;:52;;;;38029:242;37906:384;37736:569;37678:627;38352:7;38348:2;38333:27;;38342:4;38333:27;;;;;;;;;;;;38371:42;38392:4;38398:2;38402:7;38411:1;38371:20;:42::i;:::-;35727:2694;;;35596:2825;;;:::o;62834:132::-;62909:12;:10;:12::i;:::-;62898:23;;:7;:5;:7::i;:::-;:23;;;62890:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62834:132::o;38517:193::-;38663:39;38680:4;38686:2;38690:7;38663:39;;;;;;;;;;;;:16;:39::i;:::-;38517:193;;;:::o;28014:1275::-;28081:7;28101:12;28116:7;28101:22;;28184:4;28165:15;:13;:15::i;:::-;:23;28161:1061;;28218:13;;28211:4;:20;28207:1015;;;28256:14;28273:17;:23;28291:4;28273:23;;;;;;;;;;;;28256:40;;28390:1;17336:8;28362:6;:24;:29;28358:845;;29027:113;29044:1;29034:6;:11;29027:113;;29087:17;:25;29105:6;;;;;;;29087:25;;;;;;;;;;;;29078:34;;29027:113;;;29173:6;29166:13;;;;;;28358:845;28233:989;28207:1015;28161:1061;29250:31;;;;;;;;;;;;;;28014:1275;;;;:::o;49468:112::-;49545:27;49555:2;49559:8;49545:27;;;;;;;;;;;;:9;:27::i;:::-;49468:112;;:::o;63936:191::-;64010:16;64029:6;;;;;;;;;;;64010:25;;64055:8;64046:6;;:17;;;;;;;;;;;;;;;;;;64110:8;64079:40;;64100:8;64079:40;;;;;;;;;;;;63999:128;63936:191;:::o;32515:234::-;32662:8;32610:18;:39;32629:19;:17;:19::i;:::-;32610:39;;;;;;;;;;;;;;;:49;32650:8;32610:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32722:8;32686:55;;32701:19;:17;:19::i;:::-;32686:55;;;32732:8;32686:55;;;;;;:::i;:::-;;;;;;;;32515:234;;:::o;39308:407::-;39483:31;39496:4;39502:2;39506:7;39483:12;:31::i;:::-;39547:1;39529:2;:14;;;:19;39525:183;;39568:56;39599:4;39605:2;39609:7;39618:5;39568:30;:56::i;:::-;39563:145;;39652:40;;;;;;;;;;;;;;39563:145;39525:183;39308:407;;;;:::o;66294:108::-;66354:13;66387:7;66380:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66294:108;:::o;55843:1745::-;55908:17;56342:4;56335;56329:11;56325:22;56434:1;56428:4;56421:15;56509:4;56506:1;56502:12;56495:19;;56591:1;56586:3;56579:14;56695:3;56934:5;56916:428;56942:1;56916:428;;;56982:1;56977:3;56973:11;56966:18;;57153:2;57147:4;57143:13;57139:2;57135:22;57130:3;57122:36;57247:2;57241:4;57237:13;57229:21;;57314:4;56916:428;57304:25;56916:428;56920:21;57383:3;57378;57374:13;57498:4;57493:3;57489:14;57482:21;;57563:6;57558:3;57551:19;55947:1634;;;55843:1745;;;:::o;55636:105::-;55696:7;55723:10;55716:17;;55636:105;:::o;34491:485::-;34593:27;34622:23;34663:38;34704:15;:24;34720:7;34704:24;;;;;;;;;;;34663:65;;34881:18;34858:41;;34938:19;34932:26;34913:45;;34843:126;34491:485;;;:::o;33719:659::-;33868:11;34033:16;34026:5;34022:28;34013:37;;34193:16;34182:9;34178:32;34165:45;;34343:15;34332:9;34329:30;34321:5;34310:9;34307:20;34304:56;34294:66;;33719:659;;;;;:::o;40377:159::-;;;;;:::o;54945:311::-;55080:7;55100:16;17740:3;55126:19;:41;;55100:68;;17740:3;55194:31;55205:4;55211:2;55215:9;55194:10;:31::i;:::-;55186:40;;:62;;55179:69;;;54945:311;;;;;:::o;29837:450::-;29917:14;30085:16;30078:5;30074:28;30065:37;;30262:5;30248:11;30223:23;30219:41;30216:52;30209:5;30206:63;30196:73;;29837:450;;;;:::o;41201:158::-;;;;;:::o;61220:98::-;61273:7;61300:10;61293:17;;61220:98;:::o;48695:689::-;48826:19;48832:2;48836:8;48826:5;:19::i;:::-;48905:1;48887:2;:14;;;:19;48883:483;;48927:11;48941:13;;48927:27;;48973:13;48995:8;48989:3;:14;48973:30;;49022:233;49053:62;49092:1;49096:2;49100:7;;;;;;49109:5;49053:30;:62::i;:::-;49048:167;;49151:40;;;;;;;;;;;;;;49048:167;49250:3;49242:5;:11;49022:233;;49337:3;49320:13;;:20;49316:34;;49342:8;;;49316:34;48908:458;;48883:483;48695:689;;;:::o;41799:716::-;41962:4;42008:2;41983:45;;;42029:19;:17;:19::i;:::-;42050:4;42056:7;42065:5;41983:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41979:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42283:1;42266:6;:13;:18;42262:235;;42312:40;;;;;;;;;;;;;;42262:235;42455:6;42449:13;42440:6;42436:2;42432:15;42425:38;41979:529;42152:54;;;42142:64;;;:6;:64;;;;42135:71;;;41799:716;;;;;;:::o;54646:147::-;54783:6;54646:147;;;;;:::o;42977:2966::-;43050:20;43073:13;;43050:36;;43113:1;43101:8;:13;43097:44;;43123:18;;;;;;;;;;;;;;43097:44;43154:61;43184:1;43188:2;43192:12;43206:8;43154:21;:61::i;:::-;43698:1;16698:2;43668:1;:26;;43667:32;43655:8;:45;43629:18;:22;43648:2;43629:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43977:139;44014:2;44068:33;44091:1;44095:2;44099:1;44068:14;:33::i;:::-;44035:30;44056:8;44035:20;:30::i;:::-;:66;43977:18;:139::i;:::-;43943:17;:31;43961:12;43943:31;;;;;;;;;;;:173;;;;44133:16;44164:11;44193:8;44178:12;:23;44164:37;;44714:16;44710:2;44706:25;44694:37;;45086:12;45046:8;45005:1;44943:25;44884:1;44823;44796:335;45457:1;45443:12;45439:20;45397:346;45498:3;45489:7;45486:16;45397:346;;45716:7;45706:8;45703:1;45676:25;45673:1;45670;45665:59;45551:1;45542:7;45538:15;45527:26;;45397:346;;;45401:77;45788:1;45776:8;:13;45772:45;;45798:19;;;;;;;;;;;;;;45772:45;45850:3;45834:13;:19;;;;43403:2462;;45875:60;45904:1;45908:2;45912:12;45926:8;45875:20;:60::i;:::-;43039:2904;42977:2966;;:::o;30389:324::-;30459:14;30692:1;30682:8;30679:15;30653:24;30649:46;30639:56;;30389:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:329::-;5301:6;5350:2;5338:9;5329:7;5325:23;5321:32;5318:119;;;5356:79;;:::i;:::-;5318:119;5476:1;5501:53;5546:7;5537:6;5526:9;5522:22;5501:53;:::i;:::-;5491:63;;5447:117;5242:329;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:60::-;6230:3;6251:5;6244:12;;6202:60;;;:::o;6268:142::-;6318:9;6351:53;6369:34;6378:24;6396:5;6378:24;:::i;:::-;6369:34;:::i;:::-;6351:53;:::i;:::-;6338:66;;6268:142;;;:::o;6416:126::-;6466:9;6499:37;6530:5;6499:37;:::i;:::-;6486:50;;6416:126;;;:::o;6548:157::-;6629:9;6662:37;6693:5;6662:37;:::i;:::-;6649:50;;6548:157;;;:::o;6711:193::-;6829:68;6891:5;6829:68;:::i;:::-;6824:3;6817:81;6711:193;;:::o;6910:284::-;7034:4;7072:2;7061:9;7057:18;7049:26;;7085:102;7184:1;7173:9;7169:17;7160:6;7085:102;:::i;:::-;6910:284;;;;:::o;7200:117::-;7309:1;7306;7299:12;7323:117;7432:1;7429;7422:12;7446:180;7494:77;7491:1;7484:88;7591:4;7588:1;7581:15;7615:4;7612:1;7605:15;7632:281;7715:27;7737:4;7715:27;:::i;:::-;7707:6;7703:40;7845:6;7833:10;7830:22;7809:18;7797:10;7794:34;7791:62;7788:88;;;7856:18;;:::i;:::-;7788:88;7896:10;7892:2;7885:22;7675:238;7632:281;;:::o;7919:129::-;7953:6;7980:20;;:::i;:::-;7970:30;;8009:33;8037:4;8029:6;8009:33;:::i;:::-;7919:129;;;:::o;8054:308::-;8116:4;8206:18;8198:6;8195:30;8192:56;;;8228:18;;:::i;:::-;8192:56;8266:29;8288:6;8266:29;:::i;:::-;8258:37;;8350:4;8344;8340:15;8332:23;;8054:308;;;:::o;8368:146::-;8465:6;8460:3;8455;8442:30;8506:1;8497:6;8492:3;8488:16;8481:27;8368:146;;;:::o;8520:425::-;8598:5;8623:66;8639:49;8681:6;8639:49;:::i;:::-;8623:66;:::i;:::-;8614:75;;8712:6;8705:5;8698:21;8750:4;8743:5;8739:16;8788:3;8779:6;8774:3;8770:16;8767:25;8764:112;;;8795:79;;:::i;:::-;8764:112;8885:54;8932:6;8927:3;8922;8885:54;:::i;:::-;8604:341;8520:425;;;;;:::o;8965:340::-;9021:5;9070:3;9063:4;9055:6;9051:17;9047:27;9037:122;;9078:79;;:::i;:::-;9037:122;9195:6;9182:20;9220:79;9295:3;9287:6;9280:4;9272:6;9268:17;9220:79;:::i;:::-;9211:88;;9027:278;8965:340;;;;:::o;9311:509::-;9380:6;9429:2;9417:9;9408:7;9404:23;9400:32;9397:119;;;9435:79;;:::i;:::-;9397:119;9583:1;9572:9;9568:17;9555:31;9613:18;9605:6;9602:30;9599:117;;;9635:79;;:::i;:::-;9599:117;9740:63;9795:7;9786:6;9775:9;9771:22;9740:63;:::i;:::-;9730:73;;9526:287;9311:509;;;;:::o;9826:117::-;9935:1;9932;9925:12;9949:117;10058:1;10055;10048:12;10089:568;10162:8;10172:6;10222:3;10215:4;10207:6;10203:17;10199:27;10189:122;;10230:79;;:::i;:::-;10189:122;10343:6;10330:20;10320:30;;10373:18;10365:6;10362:30;10359:117;;;10395:79;;:::i;:::-;10359:117;10509:4;10501:6;10497:17;10485:29;;10563:3;10555:4;10547:6;10543:17;10533:8;10529:32;10526:41;10523:128;;;10570:79;;:::i;:::-;10523:128;10089:568;;;;;:::o;10680:::-;10753:8;10763:6;10813:3;10806:4;10798:6;10794:17;10790:27;10780:122;;10821:79;;:::i;:::-;10780:122;10934:6;10921:20;10911:30;;10964:18;10956:6;10953:30;10950:117;;;10986:79;;:::i;:::-;10950:117;11100:4;11092:6;11088:17;11076:29;;11154:3;11146:4;11138:6;11134:17;11124:8;11120:32;11117:41;11114:128;;;11161:79;;:::i;:::-;11114:128;10680:568;;;;;:::o;11254:934::-;11376:6;11384;11392;11400;11449:2;11437:9;11428:7;11424:23;11420:32;11417:119;;;11455:79;;:::i;:::-;11417:119;11603:1;11592:9;11588:17;11575:31;11633:18;11625:6;11622:30;11619:117;;;11655:79;;:::i;:::-;11619:117;11768:80;11840:7;11831:6;11820:9;11816:22;11768:80;:::i;:::-;11750:98;;;;11546:312;11925:2;11914:9;11910:18;11897:32;11956:18;11948:6;11945:30;11942:117;;;11978:79;;:::i;:::-;11942:117;12091:80;12163:7;12154:6;12143:9;12139:22;12091:80;:::i;:::-;12073:98;;;;11868:313;11254:934;;;;;;;:::o;12194:116::-;12264:21;12279:5;12264:21;:::i;:::-;12257:5;12254:32;12244:60;;12300:1;12297;12290:12;12244:60;12194:116;:::o;12316:133::-;12359:5;12397:6;12384:20;12375:29;;12413:30;12437:5;12413:30;:::i;:::-;12316:133;;;;:::o;12455:468::-;12520:6;12528;12577:2;12565:9;12556:7;12552:23;12548:32;12545:119;;;12583:79;;:::i;:::-;12545:119;12703:1;12728:53;12773:7;12764:6;12753:9;12749:22;12728:53;:::i;:::-;12718:63;;12674:117;12830:2;12856:50;12898:7;12889:6;12878:9;12874:22;12856:50;:::i;:::-;12846:60;;12801:115;12455:468;;;;;:::o;12929:307::-;12990:4;13080:18;13072:6;13069:30;13066:56;;;13102:18;;:::i;:::-;13066:56;13140:29;13162:6;13140:29;:::i;:::-;13132:37;;13224:4;13218;13214:15;13206:23;;12929:307;;;:::o;13242:423::-;13319:5;13344:65;13360:48;13401:6;13360:48;:::i;:::-;13344:65;:::i;:::-;13335:74;;13432:6;13425:5;13418:21;13470:4;13463:5;13459:16;13508:3;13499:6;13494:3;13490:16;13487:25;13484:112;;;13515:79;;:::i;:::-;13484:112;13605:54;13652:6;13647:3;13642;13605:54;:::i;:::-;13325:340;13242:423;;;;;:::o;13684:338::-;13739:5;13788:3;13781:4;13773:6;13769:17;13765:27;13755:122;;13796:79;;:::i;:::-;13755:122;13913:6;13900:20;13938:78;14012:3;14004:6;13997:4;13989:6;13985:17;13938:78;:::i;:::-;13929:87;;13745:277;13684:338;;;;:::o;14028:943::-;14123:6;14131;14139;14147;14196:3;14184:9;14175:7;14171:23;14167:33;14164:120;;;14203:79;;:::i;:::-;14164:120;14323:1;14348:53;14393:7;14384:6;14373:9;14369:22;14348:53;:::i;:::-;14338:63;;14294:117;14450:2;14476:53;14521:7;14512:6;14501:9;14497:22;14476:53;:::i;:::-;14466:63;;14421:118;14578:2;14604:53;14649:7;14640:6;14629:9;14625:22;14604:53;:::i;:::-;14594:63;;14549:118;14734:2;14723:9;14719:18;14706:32;14765:18;14757:6;14754:30;14751:117;;;14787:79;;:::i;:::-;14751:117;14892:62;14946:7;14937:6;14926:9;14922:22;14892:62;:::i;:::-;14882:72;;14677:287;14028:943;;;;;;;:::o;14977:474::-;15045:6;15053;15102:2;15090:9;15081:7;15077:23;15073:32;15070:119;;;15108:79;;:::i;:::-;15070:119;15228:1;15253:53;15298:7;15289:6;15278:9;15274:22;15253:53;:::i;:::-;15243:63;;15199:117;15355:2;15381:53;15426:7;15417:6;15406:9;15402:22;15381:53;:::i;:::-;15371:63;;15326:118;14977:474;;;;;:::o;15457:180::-;15505:77;15502:1;15495:88;15602:4;15599:1;15592:15;15626:4;15623:1;15616:15;15643:320;15687:6;15724:1;15718:4;15714:12;15704:22;;15771:1;15765:4;15761:12;15792:18;15782:81;;15848:4;15840:6;15836:17;15826:27;;15782:81;15910:2;15902:6;15899:14;15879:18;15876:38;15873:84;;15929:18;;:::i;:::-;15873:84;15694:269;15643:320;;;:::o;15969:332::-;16090:4;16128:2;16117:9;16113:18;16105:26;;16141:71;16209:1;16198:9;16194:17;16185:6;16141:71;:::i;:::-;16222:72;16290:2;16279:9;16275:18;16266:6;16222:72;:::i;:::-;15969:332;;;;;:::o;16307:137::-;16361:5;16392:6;16386:13;16377:22;;16408:30;16432:5;16408:30;:::i;:::-;16307:137;;;;:::o;16450:345::-;16517:6;16566:2;16554:9;16545:7;16541:23;16537:32;16534:119;;;16572:79;;:::i;:::-;16534:119;16692:1;16717:61;16770:7;16761:6;16750:9;16746:22;16717:61;:::i;:::-;16707:71;;16663:125;16450:345;;;;:::o;16801:141::-;16850:4;16873:3;16865:11;;16896:3;16893:1;16886:14;16930:4;16927:1;16917:18;16909:26;;16801:141;;;:::o;16948:93::-;16985:6;17032:2;17027;17020:5;17016:14;17012:23;17002:33;;16948:93;;;:::o;17047:107::-;17091:8;17141:5;17135:4;17131:16;17110:37;;17047:107;;;;:::o;17160:393::-;17229:6;17279:1;17267:10;17263:18;17302:97;17332:66;17321:9;17302:97;:::i;:::-;17420:39;17450:8;17439:9;17420:39;:::i;:::-;17408:51;;17492:4;17488:9;17481:5;17477:21;17468:30;;17541:4;17531:8;17527:19;17520:5;17517:30;17507:40;;17236:317;;17160:393;;;;;:::o;17559:142::-;17609:9;17642:53;17660:34;17669:24;17687:5;17669:24;:::i;:::-;17660:34;:::i;:::-;17642:53;:::i;:::-;17629:66;;17559:142;;;:::o;17707:75::-;17750:3;17771:5;17764:12;;17707:75;;;:::o;17788:269::-;17898:39;17929:7;17898:39;:::i;:::-;17959:91;18008:41;18032:16;18008:41;:::i;:::-;18000:6;17993:4;17987:11;17959:91;:::i;:::-;17953:4;17946:105;17864:193;17788:269;;;:::o;18063:73::-;18108:3;18063:73;:::o;18142:189::-;18219:32;;:::i;:::-;18260:65;18318:6;18310;18304:4;18260:65;:::i;:::-;18195:136;18142:189;;:::o;18337:186::-;18397:120;18414:3;18407:5;18404:14;18397:120;;;18468:39;18505:1;18498:5;18468:39;:::i;:::-;18441:1;18434:5;18430:13;18421:22;;18397:120;;;18337:186;;:::o;18529:543::-;18630:2;18625:3;18622:11;18619:446;;;18664:38;18696:5;18664:38;:::i;:::-;18748:29;18766:10;18748:29;:::i;:::-;18738:8;18734:44;18931:2;18919:10;18916:18;18913:49;;;18952:8;18937:23;;18913:49;18975:80;19031:22;19049:3;19031:22;:::i;:::-;19021:8;19017:37;19004:11;18975:80;:::i;:::-;18634:431;;18619:446;18529:543;;;:::o;19078:117::-;19132:8;19182:5;19176:4;19172:16;19151:37;;19078:117;;;;:::o;19201:169::-;19245:6;19278:51;19326:1;19322:6;19314:5;19311:1;19307:13;19278:51;:::i;:::-;19274:56;19359:4;19353;19349:15;19339:25;;19252:118;19201:169;;;;:::o;19375:295::-;19451:4;19597:29;19622:3;19616:4;19597:29;:::i;:::-;19589:37;;19659:3;19656:1;19652:11;19646:4;19643:21;19635:29;;19375:295;;;;:::o;19675:1395::-;19792:37;19825:3;19792:37;:::i;:::-;19894:18;19886:6;19883:30;19880:56;;;19916:18;;:::i;:::-;19880:56;19960:38;19992:4;19986:11;19960:38;:::i;:::-;20045:67;20105:6;20097;20091:4;20045:67;:::i;:::-;20139:1;20163:4;20150:17;;20195:2;20187:6;20184:14;20212:1;20207:618;;;;20869:1;20886:6;20883:77;;;20935:9;20930:3;20926:19;20920:26;20911:35;;20883:77;20986:67;21046:6;21039:5;20986:67;:::i;:::-;20980:4;20973:81;20842:222;20177:887;;20207:618;20259:4;20255:9;20247:6;20243:22;20293:37;20325:4;20293:37;:::i;:::-;20352:1;20366:208;20380:7;20377:1;20374:14;20366:208;;;20459:9;20454:3;20450:19;20444:26;20436:6;20429:42;20510:1;20502:6;20498:14;20488:24;;20557:2;20546:9;20542:18;20529:31;;20403:4;20400:1;20396:12;20391:17;;20366:208;;;20602:6;20593:7;20590:19;20587:179;;;20660:9;20655:3;20651:19;20645:26;20703:48;20745:4;20737:6;20733:17;20722:9;20703:48;:::i;:::-;20695:6;20688:64;20610:156;20587:179;20812:1;20808;20800:6;20796:14;20792:22;20786:4;20779:36;20214:611;;;20177:887;;19767:1303;;;19675:1395;;:::o;21076:180::-;21124:77;21121:1;21114:88;21221:4;21218:1;21211:15;21245:4;21242:1;21235:15;21262:180;21310:77;21307:1;21300:88;21407:4;21404:1;21397:15;21431:4;21428:1;21421:15;21448:233;21487:3;21510:24;21528:5;21510:24;:::i;:::-;21501:33;;21556:66;21549:5;21546:77;21543:103;;21626:18;;:::i;:::-;21543:103;21673:1;21666:5;21662:13;21655:20;;21448:233;;;:::o;21687:180::-;21827:32;21823:1;21815:6;21811:14;21804:56;21687:180;:::o;21873:366::-;22015:3;22036:67;22100:2;22095:3;22036:67;:::i;:::-;22029:74;;22112:93;22201:3;22112:93;:::i;:::-;22230:2;22225:3;22221:12;22214:19;;21873:366;;;:::o;22245:419::-;22411:4;22449:2;22438:9;22434:18;22426:26;;22498:9;22492:4;22488:20;22484:1;22473:9;22469:17;22462:47;22526:131;22652:4;22526:131;:::i;:::-;22518:139;;22245:419;;;:::o;22670:163::-;22810:15;22806:1;22798:6;22794:14;22787:39;22670:163;:::o;22839:366::-;22981:3;23002:67;23066:2;23061:3;23002:67;:::i;:::-;22995:74;;23078:93;23167:3;23078:93;:::i;:::-;23196:2;23191:3;23187:12;23180:19;;22839:366;;;:::o;23211:419::-;23377:4;23415:2;23404:9;23400:18;23392:26;;23464:9;23458:4;23454:20;23450:1;23439:9;23435:17;23428:47;23492:131;23618:4;23492:131;:::i;:::-;23484:139;;23211:419;;;:::o;23636:170::-;23776:22;23772:1;23764:6;23760:14;23753:46;23636:170;:::o;23812:366::-;23954:3;23975:67;24039:2;24034:3;23975:67;:::i;:::-;23968:74;;24051:93;24140:3;24051:93;:::i;:::-;24169:2;24164:3;24160:12;24153:19;;23812:366;;;:::o;24184:419::-;24350:4;24388:2;24377:9;24373:18;24365:26;;24437:9;24431:4;24427:20;24423:1;24412:9;24408:17;24401:47;24465:131;24591:4;24465:131;:::i;:::-;24457:139;;24184:419;;;:::o;24609:191::-;24649:3;24668:20;24686:1;24668:20;:::i;:::-;24663:25;;24702:20;24720:1;24702:20;:::i;:::-;24697:25;;24745:1;24742;24738:9;24731:16;;24766:3;24763:1;24760:10;24757:36;;;24773:18;;:::i;:::-;24757:36;24609:191;;;;:::o;24806:159::-;24946:11;24942:1;24934:6;24930:14;24923:35;24806:159;:::o;24971:365::-;25113:3;25134:66;25198:1;25193:3;25134:66;:::i;:::-;25127:73;;25209:93;25298:3;25209:93;:::i;:::-;25327:2;25322:3;25318:12;25311:19;;24971:365;;;:::o;25342:419::-;25508:4;25546:2;25535:9;25531:18;25523:26;;25595:9;25589:4;25585:20;25581:1;25570:9;25566:17;25559:47;25623:131;25749:4;25623:131;:::i;:::-;25615:139;;25342:419;;;:::o;25767:171::-;25806:3;25829:24;25847:5;25829:24;:::i;:::-;25820:33;;25875:4;25868:5;25865:15;25862:41;;25883:18;;:::i;:::-;25862:41;25930:1;25923:5;25919:13;25912:20;;25767:171;;;:::o;25944:163::-;26084:15;26080:1;26072:6;26068:14;26061:39;25944:163;:::o;26113:366::-;26255:3;26276:67;26340:2;26335:3;26276:67;:::i;:::-;26269:74;;26352:93;26441:3;26352:93;:::i;:::-;26470:2;26465:3;26461:12;26454:19;;26113:366;;;:::o;26485:419::-;26651:4;26689:2;26678:9;26674:18;26666:26;;26738:9;26732:4;26728:20;26724:1;26713:9;26709:17;26702:47;26766:131;26892:4;26766:131;:::i;:::-;26758:139;;26485:419;;;:::o;26910:410::-;26950:7;26973:20;26991:1;26973:20;:::i;:::-;26968:25;;27007:20;27025:1;27007:20;:::i;:::-;27002:25;;27062:1;27059;27055:9;27084:30;27102:11;27084:30;:::i;:::-;27073:41;;27263:1;27254:7;27250:15;27247:1;27244:22;27224:1;27217:9;27197:83;27174:139;;27293:18;;:::i;:::-;27174:139;26958:362;26910:410;;;;:::o;27326:148::-;27428:11;27465:3;27450:18;;27326:148;;;;:::o;27480:390::-;27586:3;27614:39;27647:5;27614:39;:::i;:::-;27669:89;27751:6;27746:3;27669:89;:::i;:::-;27662:96;;27767:65;27825:6;27820:3;27813:4;27806:5;27802:16;27767:65;:::i;:::-;27857:6;27852:3;27848:16;27841:23;;27590:280;27480:390;;;;:::o;27876:435::-;28056:3;28078:95;28169:3;28160:6;28078:95;:::i;:::-;28071:102;;28190:95;28281:3;28272:6;28190:95;:::i;:::-;28183:102;;28302:3;28295:10;;27876:435;;;;;:::o;28317:225::-;28457:34;28453:1;28445:6;28441:14;28434:58;28526:8;28521:2;28513:6;28509:15;28502:33;28317:225;:::o;28548:366::-;28690:3;28711:67;28775:2;28770:3;28711:67;:::i;:::-;28704:74;;28787:93;28876:3;28787:93;:::i;:::-;28905:2;28900:3;28896:12;28889:19;;28548:366;;;:::o;28920:419::-;29086:4;29124:2;29113:9;29109:18;29101:26;;29173:9;29167:4;29163:20;29159:1;29148:9;29144:17;29137:47;29201:131;29327:4;29201:131;:::i;:::-;29193:139;;28920:419;;;:::o;29345:182::-;29485:34;29481:1;29473:6;29469:14;29462:58;29345:182;:::o;29533:366::-;29675:3;29696:67;29760:2;29755:3;29696:67;:::i;:::-;29689:74;;29772:93;29861:3;29772:93;:::i;:::-;29890:2;29885:3;29881:12;29874:19;;29533:366;;;:::o;29905:419::-;30071:4;30109:2;30098:9;30094:18;30086:26;;30158:9;30152:4;30148:20;30144:1;30133:9;30129:17;30122:47;30186:131;30312:4;30186:131;:::i;:::-;30178:139;;29905:419;;;:::o;30330:98::-;30381:6;30415:5;30409:12;30399:22;;30330:98;;;:::o;30434:168::-;30517:11;30551:6;30546:3;30539:19;30591:4;30586:3;30582:14;30567:29;;30434:168;;;;:::o;30608:373::-;30694:3;30722:38;30754:5;30722:38;:::i;:::-;30776:70;30839:6;30834:3;30776:70;:::i;:::-;30769:77;;30855:65;30913:6;30908:3;30901:4;30894:5;30890:16;30855:65;:::i;:::-;30945:29;30967:6;30945:29;:::i;:::-;30940:3;30936:39;30929:46;;30698:283;30608:373;;;;:::o;30987:640::-;31182:4;31220:3;31209:9;31205:19;31197:27;;31234:71;31302:1;31291:9;31287:17;31278:6;31234:71;:::i;:::-;31315:72;31383:2;31372:9;31368:18;31359:6;31315:72;:::i;:::-;31397;31465:2;31454:9;31450:18;31441:6;31397:72;:::i;:::-;31516:9;31510:4;31506:20;31501:2;31490:9;31486:18;31479:48;31544:76;31615:4;31606:6;31544:76;:::i;:::-;31536:84;;30987:640;;;;;;;:::o;31633:141::-;31689:5;31720:6;31714:13;31705:22;;31736:32;31762:5;31736:32;:::i;:::-;31633:141;;;;:::o;31780:349::-;31849:6;31898:2;31886:9;31877:7;31873:23;31869:32;31866:119;;;31904:79;;:::i;:::-;31866:119;32024:1;32049:63;32104:7;32095:6;32084:9;32080:22;32049:63;:::i;:::-;32039:73;;31995:127;31780:349;;;;:::o

Swarm Source

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