ETH Price: $2,504.44 (-0.83%)

Token

The Dog Experiment (TDE)
 

Overview

Max Total Supply

3,000 TDE

Holders

574

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 TDE
0x4A61278F356b48fB5482d4935d20f96bf4a0e580
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:
TheDogExperiment

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-31
*/

// SPDX-License-Identifier: MIT


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





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

pragma solidity ^0.8.15;

contract TheDogExperiment is ERC721A, DefaultOperatorFilterer, Ownable {

    bool public toggleForMint;
    bool public toggleForPreReveal;
    string public baseURI; 
    string public preRevealURI;
    uint256 public maxSupply = 3000;
    uint256 public mintMax = 5;
    mapping (address => uint256) public walletPublic;

    constructor () ERC721A("The Dog Experiment", "TDE") {
        toggleForMint = false;
        setPreRevealURI("ipfs://bafkreih6u726i5dvdgzbntdtzh7ixkivvcvzuzqckiyeothdipk7y2xgli");
    }
    
    function mint(uint256 amount) external payable
    {
        require(toggleForMint , "Sale not active");
        require(amount <= mintMax, "You cannot mint more than wallet limit");
        require(totalSupply() + amount <= maxSupply,"Max Supply is Reached");
        walletPublic[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }


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

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

    function withdrawFunds() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
        
	}

    function setPreRevealURI(string memory preRevealURI_) public onlyOwner {
        preRevealURI = preRevealURI_;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {

        if (toggleForPreReveal == false) {
            return preRevealURI;
        }

        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, _toString(tokenId), ""));
    }


    function setMaxMints(uint256 newMax) public onlyOwner {
        mintMax = newMax;

    }


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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"preRevealURI_","type":"string"}],"name":"setPreRevealURI","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":"toggleForMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleForPreReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610bb8600b556005600c553480156200001c57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601281526020017f54686520446f67204578706572696d656e7400000000000000000000000000008152506040518060400160405280600381526020017f54444500000000000000000000000000000000000000000000000000000000008152508160029081620000b191906200076b565b508060039081620000c391906200076b565b50620000d46200033e60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002d157801562000197576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200015d92919062000897565b600060405180830381600087803b1580156200017857600080fd5b505af11580156200018d573d6000803e3d6000fd5b50505050620002d0565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000251576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200021792919062000897565b600060405180830381600087803b1580156200023257600080fd5b505af115801562000247573d6000803e3d6000fd5b50505050620002cf565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200029a9190620008c4565b600060405180830381600087803b158015620002b557600080fd5b505af1158015620002ca573d6000803e3d6000fd5b505050505b5b5b5050620002f3620002e76200034360201b60201c565b6200034b60201b60201c565b6000600860146101000a81548160ff0219169083151502179055506200033860405180608001604052806042815260200162003d35604291396200041160201b60201c565b62000964565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004216200043660201b60201c565b80600a90816200043291906200076b565b5050565b620004466200034360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200046c620004c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004bc9062000942565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200057357607f821691505b6020821081036200058957620005886200052b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005f37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005b4565b620005ff8683620005b4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200064c62000646620006408462000617565b62000621565b62000617565b9050919050565b6000819050919050565b62000668836200062b565b62000680620006778262000653565b848454620005c1565b825550505050565b600090565b6200069762000688565b620006a48184846200065d565b505050565b5b81811015620006cc57620006c06000826200068d565b600181019050620006aa565b5050565b601f8211156200071b57620006e5816200058f565b620006f084620005a4565b8101602085101562000700578190505b620007186200070f85620005a4565b830182620006a9565b50505b505050565b600082821c905092915050565b6000620007406000198460080262000720565b1980831691505092915050565b60006200075b83836200072d565b9150826002028217905092915050565b6200077682620004f1565b67ffffffffffffffff811115620007925762000791620004fc565b5b6200079e82546200055a565b620007ab828285620006d0565b600060209050601f831160018114620007e35760008415620007ce578287015190505b620007da85826200074d565b8655506200084a565b601f198416620007f3866200058f565b60005b828110156200081d57848901518255600182019150602085019450602081019050620007f6565b868310156200083d578489015162000839601f8916826200072d565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200087f8262000852565b9050919050565b620008918162000872565b82525050565b6000604082019050620008ae600083018562000886565b620008bd602083018462000886565b9392505050565b6000602082019050620008db600083018462000886565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200092a602083620008e1565b91506200093782620008f2565b602082019050919050565b600060208201905081810360008301526200095d816200091b565b9050919050565b6133c180620009746000396000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063a0712d6811610095578063d3dd5fe011610064578063d3dd5fe014610657578063d5abeb011461066e578063e985e9c514610699578063f2fde38b146106d6576101d8565b8063a0712d68146105b9578063a22cb465146105d5578063b88d4fde146105fe578063c87b56dd1461061a576101d8565b806379b6ed36116100d157806379b6ed361461050f57806379c9cb7b1461053a5780638da5cb5b1461056357806395d89b411461058e576101d8565b80636352211e146104535780636c0360eb1461049057806370a08231146104bb578063715018a6146104f8576101d8565b80632a85db551161017a57806341f434341161014957806341f43434146103b857806342842e0e146103e35780634d155561146103ff57806355f804b31461042a576101d8565b80632a85db55146102fc5780632be905ba14610325578063300e85bf14610362578063344194b31461038d576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e57806323b872dd146102c957806324600fc3146102e5576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061241b565b6106ff565b6040516102119190612463565b60405180910390f35b34801561022657600080fd5b5061022f610791565b60405161023c9190612517565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061256f565b610823565b60405161027991906125dd565b60405180910390f35b61029c60048036038101906102979190612624565b6108a2565b005b3480156102aa57600080fd5b506102b36109ac565b6040516102c09190612673565b60405180910390f35b6102e360048036038101906102de919061268e565b6109c3565b005b3480156102f157600080fd5b506102fa610b13565b005b34801561030857600080fd5b50610323600480360381019061031e9190612816565b610b64565b005b34801561033157600080fd5b5061034c6004803603810190610347919061285f565b610b7f565b6040516103599190612673565b60405180910390f35b34801561036e57600080fd5b50610377610b97565b6040516103849190612463565b60405180910390f35b34801561039957600080fd5b506103a2610baa565b6040516103af9190612463565b60405180910390f35b3480156103c457600080fd5b506103cd610bbd565b6040516103da91906128eb565b60405180910390f35b6103fd60048036038101906103f8919061268e565b610bcf565b005b34801561040b57600080fd5b50610414610d1f565b6040516104219190612673565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612816565b610d25565b005b34801561045f57600080fd5b5061047a6004803603810190610475919061256f565b610d40565b60405161048791906125dd565b60405180910390f35b34801561049c57600080fd5b506104a5610d52565b6040516104b29190612517565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd919061285f565b610de0565b6040516104ef9190612673565b60405180910390f35b34801561050457600080fd5b5061050d610e98565b005b34801561051b57600080fd5b50610524610eac565b6040516105319190612517565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c919061256f565b610f3a565b005b34801561056f57600080fd5b50610578610f4c565b60405161058591906125dd565b60405180910390f35b34801561059a57600080fd5b506105a3610f76565b6040516105b09190612517565b60405180910390f35b6105d360048036038101906105ce919061256f565b611008565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190612932565b611156565b005b61061860048036038101906106139190612a13565b611260565b005b34801561062657600080fd5b50610641600480360381019061063c919061256f565b6113b3565b60405161064e9190612517565b60405180910390f35b34801561066357600080fd5b5061066c6114dd565b005b34801561067a57600080fd5b50610683611511565b6040516106909190612673565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190612a96565b611517565b6040516106cd9190612463565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f8919061285f565b6115ab565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061078a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107a090612b05565b80601f01602080910402602001604051908101604052809291908181526020018280546107cc90612b05565b80156108195780601f106107ee57610100808354040283529160200191610819565b820191906000526020600020905b8154815290600101906020018083116107fc57829003601f168201915b5050505050905090565b600061082e8261162e565b610864576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561099d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161091a929190612b36565b602060405180830381865afa158015610937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095b9190612b74565b61099c57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161099391906125dd565b60405180910390fd5b5b6109a7838361168d565b505050565b60006109b66117d1565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b01573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a3557610a308484846117d6565b610b0d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a7e929190612b36565b602060405180830381865afa158015610a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abf9190612b74565b610b0057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610af791906125dd565b60405180910390fd5b5b610b0c8484846117d6565b5b50505050565b610b1b611af8565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b61573d6000803e3d6000fd5b50565b610b6c611af8565b80600a9081610b7b9190612d43565b5050565b600d6020528060005260406000206000915090505481565b600860149054906101000a900460ff1681565b600860159054906101000a900460ff1681565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d0d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c4157610c3c848484611b76565b610d19565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c8a929190612b36565b602060405180830381865afa158015610ca7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccb9190612b74565b610d0c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d0391906125dd565b60405180910390fd5b5b610d18848484611b76565b5b50505050565b600c5481565b610d2d611af8565b8060099081610d3c9190612d43565b5050565b6000610d4b82611b96565b9050919050565b60098054610d5f90612b05565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8b90612b05565b8015610dd85780601f10610dad57610100808354040283529160200191610dd8565b820191906000526020600020905b815481529060010190602001808311610dbb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e47576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea0611af8565b610eaa6000611c62565b565b600a8054610eb990612b05565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee590612b05565b8015610f325780601f10610f0757610100808354040283529160200191610f32565b820191906000526020600020905b815481529060010190602001808311610f1557829003601f168201915b505050505081565b610f42611af8565b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f8590612b05565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb190612b05565b8015610ffe5780601f10610fd357610100808354040283529160200191610ffe565b820191906000526020600020905b815481529060010190602001808311610fe157829003601f168201915b5050505050905090565b600860149054906101000a900460ff16611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90612e61565b60405180910390fd5b600c5481111561109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390612ef3565b60405180910390fd5b600b54816110a86109ac565b6110b29190612f42565b11156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90612fe4565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111429190612f42565b925050819055506111533382611d28565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611251576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111ce929190612b36565b602060405180830381865afa1580156111eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120f9190612b74565b61125057806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161124791906125dd565b60405180910390fd5b5b61125b8383611d46565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561139f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d3576112ce85858585611e51565b6113ac565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161131c929190612b36565b602060405180830381865afa158015611339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135d9190612b74565b61139e57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161139591906125dd565b60405180910390fd5b5b6113ab85858585611e51565b5b5050505050565b606060001515600860159054906101000a900460ff1615150361146257600a80546113dd90612b05565b80601f016020809104026020016040519081016040528092919081815260200182805461140990612b05565b80156114565780601f1061142b57610100808354040283529160200191611456565b820191906000526020600020905b81548152906001019060200180831161143957829003601f168201915b505050505090506114d8565b61146b8261162e565b6114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190613076565b60405180910390fd5b60096114b583611ec4565b6040516020016114c692919061317b565b60405160208183030381529060405290505b919050565b6114e5611af8565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b3611af8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611622576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116199061321c565b60405180910390fd5b61162b81611c62565b50565b6000816116396117d1565b11158015611648575060005482105b8015611686575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061169882610d40565b90508073ffffffffffffffffffffffffffffffffffffffff166116b9611f14565b73ffffffffffffffffffffffffffffffffffffffff161461171c576116e5816116e0611f14565b611517565b61171b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006117e182611b96565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611848576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061185484611f1c565b9150915061186a8187611865611f14565b611f43565b6118b65761187f8661187a611f14565b611517565b6118b5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361191c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119298686866001611f87565b801561193457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611a02856119de888887611f8d565b7c020000000000000000000000000000000000000000000000000000000017611fb5565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a885760006001850190506000600460008381526020019081526020016000205403611a86576000548114611a85578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611af08686866001611fe0565b505050505050565b611b00611fe6565b73ffffffffffffffffffffffffffffffffffffffff16611b1e610f4c565b73ffffffffffffffffffffffffffffffffffffffff1614611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90613288565b60405180910390fd5b565b611b9183838360405180602001604052806000815250611260565b505050565b60008082905080611ba56117d1565b11611c2b57600054811015611c2a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c28575b60008103611c1e576004600083600190039350838152602001908152602001600020549050611bf4565b8092505050611c5d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d42828260405180602001604052806000815250611fee565b5050565b8060076000611d53611f14565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e00611f14565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e459190612463565b60405180910390a35050565b611e5c8484846109c3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ebe57611e878484848461208b565b611ebd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611eff57600184039350600a81066030018453600a8104905080611edd575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fa48686846121db565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611ff883836121e4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461208657600080549050600083820390505b612038600086838060010194508661208b565b61206e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061202557816000541461208357600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b1611f14565b8786866040518563ffffffff1660e01b81526004016120d394939291906132fd565b6020604051808303816000875af192505050801561210f57506040513d601f19601f8201168201806040525081019061210c919061335e565b60015b612188573d806000811461213f576040519150601f19603f3d011682016040523d82523d6000602084013e612144565b606091505b506000815103612180576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612224576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122316000848385611f87565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122a8836122996000866000611f8d565b6122a28561239f565b17611fb5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461234957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061230e565b5060008203612384576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061239a6000848385611fe0565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123f8816123c3565b811461240357600080fd5b50565b600081359050612415816123ef565b92915050565b600060208284031215612431576124306123b9565b5b600061243f84828501612406565b91505092915050565b60008115159050919050565b61245d81612448565b82525050565b60006020820190506124786000830184612454565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124b857808201518184015260208101905061249d565b838111156124c7576000848401525b50505050565b6000601f19601f8301169050919050565b60006124e98261247e565b6124f38185612489565b935061250381856020860161249a565b61250c816124cd565b840191505092915050565b6000602082019050818103600083015261253181846124de565b905092915050565b6000819050919050565b61254c81612539565b811461255757600080fd5b50565b60008135905061256981612543565b92915050565b600060208284031215612585576125846123b9565b5b60006125938482850161255a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125c78261259c565b9050919050565b6125d7816125bc565b82525050565b60006020820190506125f260008301846125ce565b92915050565b612601816125bc565b811461260c57600080fd5b50565b60008135905061261e816125f8565b92915050565b6000806040838503121561263b5761263a6123b9565b5b60006126498582860161260f565b925050602061265a8582860161255a565b9150509250929050565b61266d81612539565b82525050565b60006020820190506126886000830184612664565b92915050565b6000806000606084860312156126a7576126a66123b9565b5b60006126b58682870161260f565b93505060206126c68682870161260f565b92505060406126d78682870161255a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612723826124cd565b810181811067ffffffffffffffff82111715612742576127416126eb565b5b80604052505050565b60006127556123af565b9050612761828261271a565b919050565b600067ffffffffffffffff821115612781576127806126eb565b5b61278a826124cd565b9050602081019050919050565b82818337600083830152505050565b60006127b96127b484612766565b61274b565b9050828152602081018484840111156127d5576127d46126e6565b5b6127e0848285612797565b509392505050565b600082601f8301126127fd576127fc6126e1565b5b813561280d8482602086016127a6565b91505092915050565b60006020828403121561282c5761282b6123b9565b5b600082013567ffffffffffffffff81111561284a576128496123be565b5b612856848285016127e8565b91505092915050565b600060208284031215612875576128746123b9565b5b60006128838482850161260f565b91505092915050565b6000819050919050565b60006128b16128ac6128a78461259c565b61288c565b61259c565b9050919050565b60006128c382612896565b9050919050565b60006128d5826128b8565b9050919050565b6128e5816128ca565b82525050565b600060208201905061290060008301846128dc565b92915050565b61290f81612448565b811461291a57600080fd5b50565b60008135905061292c81612906565b92915050565b60008060408385031215612949576129486123b9565b5b60006129578582860161260f565b92505060206129688582860161291d565b9150509250929050565b600067ffffffffffffffff82111561298d5761298c6126eb565b5b612996826124cd565b9050602081019050919050565b60006129b66129b184612972565b61274b565b9050828152602081018484840111156129d2576129d16126e6565b5b6129dd848285612797565b509392505050565b600082601f8301126129fa576129f96126e1565b5b8135612a0a8482602086016129a3565b91505092915050565b60008060008060808587031215612a2d57612a2c6123b9565b5b6000612a3b8782880161260f565b9450506020612a4c8782880161260f565b9350506040612a5d8782880161255a565b925050606085013567ffffffffffffffff811115612a7e57612a7d6123be565b5b612a8a878288016129e5565b91505092959194509250565b60008060408385031215612aad57612aac6123b9565b5b6000612abb8582860161260f565b9250506020612acc8582860161260f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b1d57607f821691505b602082108103612b3057612b2f612ad6565b5b50919050565b6000604082019050612b4b60008301856125ce565b612b5860208301846125ce565b9392505050565b600081519050612b6e81612906565b92915050565b600060208284031215612b8a57612b896123b9565b5b6000612b9884828501612b5f565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bc6565b612c0d8683612bc6565b95508019841693508086168417925050509392505050565b6000612c40612c3b612c3684612539565b61288c565b612539565b9050919050565b6000819050919050565b612c5a83612c25565b612c6e612c6682612c47565b848454612bd3565b825550505050565b600090565b612c83612c76565b612c8e818484612c51565b505050565b5b81811015612cb257612ca7600082612c7b565b600181019050612c94565b5050565b601f821115612cf757612cc881612ba1565b612cd184612bb6565b81016020851015612ce0578190505b612cf4612cec85612bb6565b830182612c93565b50505b505050565b600082821c905092915050565b6000612d1a60001984600802612cfc565b1980831691505092915050565b6000612d338383612d09565b9150826002028217905092915050565b612d4c8261247e565b67ffffffffffffffff811115612d6557612d646126eb565b5b612d6f8254612b05565b612d7a828285612cb6565b600060209050601f831160018114612dad5760008415612d9b578287015190505b612da58582612d27565b865550612e0d565b601f198416612dbb86612ba1565b60005b82811015612de357848901518255600182019150602085019450602081019050612dbe565b86831015612e005784890151612dfc601f891682612d09565b8355505b6001600288020188555050505b505050505050565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b6000612e4b600f83612489565b9150612e5682612e15565b602082019050919050565b60006020820190508181036000830152612e7a81612e3e565b9050919050565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e2077616c6c657460008201527f206c696d69740000000000000000000000000000000000000000000000000000602082015250565b6000612edd602683612489565b9150612ee882612e81565b604082019050919050565b60006020820190508181036000830152612f0c81612ed0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f4d82612539565b9150612f5883612539565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f8d57612f8c612f13565b5b828201905092915050565b7f4d617820537570706c7920697320526561636865640000000000000000000000600082015250565b6000612fce601583612489565b9150612fd982612f98565b602082019050919050565b60006020820190508181036000830152612ffd81612fc1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613060602f83612489565b915061306b82613004565b604082019050919050565b6000602082019050818103600083015261308f81613053565b9050919050565b600081905092915050565b600081546130ae81612b05565b6130b88186613096565b945060018216600081146130d357600181146130e85761311b565b60ff198316865281151582028601935061311b565b6130f185612ba1565b60005b83811015613113578154818901526001820191506020810190506130f4565b838801955050505b50505092915050565b600061312f8261247e565b6131398185613096565b935061314981856020860161249a565b80840191505092915050565b50565b6000613165600083613096565b915061317082613155565b600082019050919050565b600061318782856130a1565b91506131938284613124565b915061319e82613158565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613206602683612489565b9150613211826131aa565b604082019050919050565b60006020820190508181036000830152613235816131f9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613272602083612489565b915061327d8261323c565b602082019050919050565b600060208201905081810360008301526132a181613265565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132cf826132a8565b6132d981856132b3565b93506132e981856020860161249a565b6132f2816124cd565b840191505092915050565b600060808201905061331260008301876125ce565b61331f60208301866125ce565b61332c6040830185612664565b818103606083015261333e81846132c4565b905095945050505050565b600081519050613358816123ef565b92915050565b600060208284031215613374576133736123b9565b5b600061338284828501613349565b9150509291505056fea2646970667358221220f678201cc2dff2b46ba3b8b42e0d696d8fb92e4fc1f91e7f8924671fbccaaf3964736f6c634300080f0033697066733a2f2f6261666b7265696836753732366935647664677a626e7464747a683769786b69767663767a757a71636b6979656f74686469706b37793278676c69

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e11610102578063a0712d6811610095578063d3dd5fe011610064578063d3dd5fe014610657578063d5abeb011461066e578063e985e9c514610699578063f2fde38b146106d6576101d8565b8063a0712d68146105b9578063a22cb465146105d5578063b88d4fde146105fe578063c87b56dd1461061a576101d8565b806379b6ed36116100d157806379b6ed361461050f57806379c9cb7b1461053a5780638da5cb5b1461056357806395d89b411461058e576101d8565b80636352211e146104535780636c0360eb1461049057806370a08231146104bb578063715018a6146104f8576101d8565b80632a85db551161017a57806341f434341161014957806341f43434146103b857806342842e0e146103e35780634d155561146103ff57806355f804b31461042a576101d8565b80632a85db55146102fc5780632be905ba14610325578063300e85bf14610362578063344194b31461038d576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e57806323b872dd146102c957806324600fc3146102e5576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061241b565b6106ff565b6040516102119190612463565b60405180910390f35b34801561022657600080fd5b5061022f610791565b60405161023c9190612517565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061256f565b610823565b60405161027991906125dd565b60405180910390f35b61029c60048036038101906102979190612624565b6108a2565b005b3480156102aa57600080fd5b506102b36109ac565b6040516102c09190612673565b60405180910390f35b6102e360048036038101906102de919061268e565b6109c3565b005b3480156102f157600080fd5b506102fa610b13565b005b34801561030857600080fd5b50610323600480360381019061031e9190612816565b610b64565b005b34801561033157600080fd5b5061034c6004803603810190610347919061285f565b610b7f565b6040516103599190612673565b60405180910390f35b34801561036e57600080fd5b50610377610b97565b6040516103849190612463565b60405180910390f35b34801561039957600080fd5b506103a2610baa565b6040516103af9190612463565b60405180910390f35b3480156103c457600080fd5b506103cd610bbd565b6040516103da91906128eb565b60405180910390f35b6103fd60048036038101906103f8919061268e565b610bcf565b005b34801561040b57600080fd5b50610414610d1f565b6040516104219190612673565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612816565b610d25565b005b34801561045f57600080fd5b5061047a6004803603810190610475919061256f565b610d40565b60405161048791906125dd565b60405180910390f35b34801561049c57600080fd5b506104a5610d52565b6040516104b29190612517565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd919061285f565b610de0565b6040516104ef9190612673565b60405180910390f35b34801561050457600080fd5b5061050d610e98565b005b34801561051b57600080fd5b50610524610eac565b6040516105319190612517565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c919061256f565b610f3a565b005b34801561056f57600080fd5b50610578610f4c565b60405161058591906125dd565b60405180910390f35b34801561059a57600080fd5b506105a3610f76565b6040516105b09190612517565b60405180910390f35b6105d360048036038101906105ce919061256f565b611008565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190612932565b611156565b005b61061860048036038101906106139190612a13565b611260565b005b34801561062657600080fd5b50610641600480360381019061063c919061256f565b6113b3565b60405161064e9190612517565b60405180910390f35b34801561066357600080fd5b5061066c6114dd565b005b34801561067a57600080fd5b50610683611511565b6040516106909190612673565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190612a96565b611517565b6040516106cd9190612463565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f8919061285f565b6115ab565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061078a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107a090612b05565b80601f01602080910402602001604051908101604052809291908181526020018280546107cc90612b05565b80156108195780601f106107ee57610100808354040283529160200191610819565b820191906000526020600020905b8154815290600101906020018083116107fc57829003601f168201915b5050505050905090565b600061082e8261162e565b610864576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561099d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161091a929190612b36565b602060405180830381865afa158015610937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095b9190612b74565b61099c57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161099391906125dd565b60405180910390fd5b5b6109a7838361168d565b505050565b60006109b66117d1565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b01573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a3557610a308484846117d6565b610b0d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a7e929190612b36565b602060405180830381865afa158015610a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abf9190612b74565b610b0057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610af791906125dd565b60405180910390fd5b5b610b0c8484846117d6565b5b50505050565b610b1b611af8565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b61573d6000803e3d6000fd5b50565b610b6c611af8565b80600a9081610b7b9190612d43565b5050565b600d6020528060005260406000206000915090505481565b600860149054906101000a900460ff1681565b600860159054906101000a900460ff1681565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d0d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c4157610c3c848484611b76565b610d19565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c8a929190612b36565b602060405180830381865afa158015610ca7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccb9190612b74565b610d0c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d0391906125dd565b60405180910390fd5b5b610d18848484611b76565b5b50505050565b600c5481565b610d2d611af8565b8060099081610d3c9190612d43565b5050565b6000610d4b82611b96565b9050919050565b60098054610d5f90612b05565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8b90612b05565b8015610dd85780601f10610dad57610100808354040283529160200191610dd8565b820191906000526020600020905b815481529060010190602001808311610dbb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e47576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea0611af8565b610eaa6000611c62565b565b600a8054610eb990612b05565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee590612b05565b8015610f325780601f10610f0757610100808354040283529160200191610f32565b820191906000526020600020905b815481529060010190602001808311610f1557829003601f168201915b505050505081565b610f42611af8565b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f8590612b05565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb190612b05565b8015610ffe5780601f10610fd357610100808354040283529160200191610ffe565b820191906000526020600020905b815481529060010190602001808311610fe157829003601f168201915b5050505050905090565b600860149054906101000a900460ff16611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90612e61565b60405180910390fd5b600c5481111561109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109390612ef3565b60405180910390fd5b600b54816110a86109ac565b6110b29190612f42565b11156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90612fe4565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111429190612f42565b925050819055506111533382611d28565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611251576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111ce929190612b36565b602060405180830381865afa1580156111eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120f9190612b74565b61125057806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161124791906125dd565b60405180910390fd5b5b61125b8383611d46565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561139f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d3576112ce85858585611e51565b6113ac565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161131c929190612b36565b602060405180830381865afa158015611339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135d9190612b74565b61139e57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161139591906125dd565b60405180910390fd5b5b6113ab85858585611e51565b5b5050505050565b606060001515600860159054906101000a900460ff1615150361146257600a80546113dd90612b05565b80601f016020809104026020016040519081016040528092919081815260200182805461140990612b05565b80156114565780601f1061142b57610100808354040283529160200191611456565b820191906000526020600020905b81548152906001019060200180831161143957829003601f168201915b505050505090506114d8565b61146b8261162e565b6114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190613076565b60405180910390fd5b60096114b583611ec4565b6040516020016114c692919061317b565b60405160208183030381529060405290505b919050565b6114e5611af8565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b3611af8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611622576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116199061321c565b60405180910390fd5b61162b81611c62565b50565b6000816116396117d1565b11158015611648575060005482105b8015611686575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061169882610d40565b90508073ffffffffffffffffffffffffffffffffffffffff166116b9611f14565b73ffffffffffffffffffffffffffffffffffffffff161461171c576116e5816116e0611f14565b611517565b61171b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006117e182611b96565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611848576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061185484611f1c565b9150915061186a8187611865611f14565b611f43565b6118b65761187f8661187a611f14565b611517565b6118b5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361191c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119298686866001611f87565b801561193457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611a02856119de888887611f8d565b7c020000000000000000000000000000000000000000000000000000000017611fb5565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611a885760006001850190506000600460008381526020019081526020016000205403611a86576000548114611a85578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611af08686866001611fe0565b505050505050565b611b00611fe6565b73ffffffffffffffffffffffffffffffffffffffff16611b1e610f4c565b73ffffffffffffffffffffffffffffffffffffffff1614611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90613288565b60405180910390fd5b565b611b9183838360405180602001604052806000815250611260565b505050565b60008082905080611ba56117d1565b11611c2b57600054811015611c2a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c28575b60008103611c1e576004600083600190039350838152602001908152602001600020549050611bf4565b8092505050611c5d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d42828260405180602001604052806000815250611fee565b5050565b8060076000611d53611f14565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e00611f14565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e459190612463565b60405180910390a35050565b611e5c8484846109c3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ebe57611e878484848461208b565b611ebd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611eff57600184039350600a81066030018453600a8104905080611edd575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fa48686846121db565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611ff883836121e4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461208657600080549050600083820390505b612038600086838060010194508661208b565b61206e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061202557816000541461208357600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b1611f14565b8786866040518563ffffffff1660e01b81526004016120d394939291906132fd565b6020604051808303816000875af192505050801561210f57506040513d601f19601f8201168201806040525081019061210c919061335e565b60015b612188573d806000811461213f576040519150601f19603f3d011682016040523d82523d6000602084013e612144565b606091505b506000815103612180576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612224576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122316000848385611f87565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122a8836122996000866000611f8d565b6122a28561239f565b17611fb5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461234957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061230e565b5060008203612384576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061239a6000848385611fe0565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123f8816123c3565b811461240357600080fd5b50565b600081359050612415816123ef565b92915050565b600060208284031215612431576124306123b9565b5b600061243f84828501612406565b91505092915050565b60008115159050919050565b61245d81612448565b82525050565b60006020820190506124786000830184612454565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124b857808201518184015260208101905061249d565b838111156124c7576000848401525b50505050565b6000601f19601f8301169050919050565b60006124e98261247e565b6124f38185612489565b935061250381856020860161249a565b61250c816124cd565b840191505092915050565b6000602082019050818103600083015261253181846124de565b905092915050565b6000819050919050565b61254c81612539565b811461255757600080fd5b50565b60008135905061256981612543565b92915050565b600060208284031215612585576125846123b9565b5b60006125938482850161255a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125c78261259c565b9050919050565b6125d7816125bc565b82525050565b60006020820190506125f260008301846125ce565b92915050565b612601816125bc565b811461260c57600080fd5b50565b60008135905061261e816125f8565b92915050565b6000806040838503121561263b5761263a6123b9565b5b60006126498582860161260f565b925050602061265a8582860161255a565b9150509250929050565b61266d81612539565b82525050565b60006020820190506126886000830184612664565b92915050565b6000806000606084860312156126a7576126a66123b9565b5b60006126b58682870161260f565b93505060206126c68682870161260f565b92505060406126d78682870161255a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612723826124cd565b810181811067ffffffffffffffff82111715612742576127416126eb565b5b80604052505050565b60006127556123af565b9050612761828261271a565b919050565b600067ffffffffffffffff821115612781576127806126eb565b5b61278a826124cd565b9050602081019050919050565b82818337600083830152505050565b60006127b96127b484612766565b61274b565b9050828152602081018484840111156127d5576127d46126e6565b5b6127e0848285612797565b509392505050565b600082601f8301126127fd576127fc6126e1565b5b813561280d8482602086016127a6565b91505092915050565b60006020828403121561282c5761282b6123b9565b5b600082013567ffffffffffffffff81111561284a576128496123be565b5b612856848285016127e8565b91505092915050565b600060208284031215612875576128746123b9565b5b60006128838482850161260f565b91505092915050565b6000819050919050565b60006128b16128ac6128a78461259c565b61288c565b61259c565b9050919050565b60006128c382612896565b9050919050565b60006128d5826128b8565b9050919050565b6128e5816128ca565b82525050565b600060208201905061290060008301846128dc565b92915050565b61290f81612448565b811461291a57600080fd5b50565b60008135905061292c81612906565b92915050565b60008060408385031215612949576129486123b9565b5b60006129578582860161260f565b92505060206129688582860161291d565b9150509250929050565b600067ffffffffffffffff82111561298d5761298c6126eb565b5b612996826124cd565b9050602081019050919050565b60006129b66129b184612972565b61274b565b9050828152602081018484840111156129d2576129d16126e6565b5b6129dd848285612797565b509392505050565b600082601f8301126129fa576129f96126e1565b5b8135612a0a8482602086016129a3565b91505092915050565b60008060008060808587031215612a2d57612a2c6123b9565b5b6000612a3b8782880161260f565b9450506020612a4c8782880161260f565b9350506040612a5d8782880161255a565b925050606085013567ffffffffffffffff811115612a7e57612a7d6123be565b5b612a8a878288016129e5565b91505092959194509250565b60008060408385031215612aad57612aac6123b9565b5b6000612abb8582860161260f565b9250506020612acc8582860161260f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b1d57607f821691505b602082108103612b3057612b2f612ad6565b5b50919050565b6000604082019050612b4b60008301856125ce565b612b5860208301846125ce565b9392505050565b600081519050612b6e81612906565b92915050565b600060208284031215612b8a57612b896123b9565b5b6000612b9884828501612b5f565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bc6565b612c0d8683612bc6565b95508019841693508086168417925050509392505050565b6000612c40612c3b612c3684612539565b61288c565b612539565b9050919050565b6000819050919050565b612c5a83612c25565b612c6e612c6682612c47565b848454612bd3565b825550505050565b600090565b612c83612c76565b612c8e818484612c51565b505050565b5b81811015612cb257612ca7600082612c7b565b600181019050612c94565b5050565b601f821115612cf757612cc881612ba1565b612cd184612bb6565b81016020851015612ce0578190505b612cf4612cec85612bb6565b830182612c93565b50505b505050565b600082821c905092915050565b6000612d1a60001984600802612cfc565b1980831691505092915050565b6000612d338383612d09565b9150826002028217905092915050565b612d4c8261247e565b67ffffffffffffffff811115612d6557612d646126eb565b5b612d6f8254612b05565b612d7a828285612cb6565b600060209050601f831160018114612dad5760008415612d9b578287015190505b612da58582612d27565b865550612e0d565b601f198416612dbb86612ba1565b60005b82811015612de357848901518255600182019150602085019450602081019050612dbe565b86831015612e005784890151612dfc601f891682612d09565b8355505b6001600288020188555050505b505050505050565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b6000612e4b600f83612489565b9150612e5682612e15565b602082019050919050565b60006020820190508181036000830152612e7a81612e3e565b9050919050565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e2077616c6c657460008201527f206c696d69740000000000000000000000000000000000000000000000000000602082015250565b6000612edd602683612489565b9150612ee882612e81565b604082019050919050565b60006020820190508181036000830152612f0c81612ed0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f4d82612539565b9150612f5883612539565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f8d57612f8c612f13565b5b828201905092915050565b7f4d617820537570706c7920697320526561636865640000000000000000000000600082015250565b6000612fce601583612489565b9150612fd982612f98565b602082019050919050565b60006020820190508181036000830152612ffd81612fc1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613060602f83612489565b915061306b82613004565b604082019050919050565b6000602082019050818103600083015261308f81613053565b9050919050565b600081905092915050565b600081546130ae81612b05565b6130b88186613096565b945060018216600081146130d357600181146130e85761311b565b60ff198316865281151582028601935061311b565b6130f185612ba1565b60005b83811015613113578154818901526001820191506020810190506130f4565b838801955050505b50505092915050565b600061312f8261247e565b6131398185613096565b935061314981856020860161249a565b80840191505092915050565b50565b6000613165600083613096565b915061317082613155565b600082019050919050565b600061318782856130a1565b91506131938284613124565b915061319e82613158565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613206602683612489565b9150613211826131aa565b604082019050919050565b60006020820190508181036000830152613235816131f9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613272602083612489565b915061327d8261323c565b602082019050919050565b600060208201905081810360008301526132a181613265565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132cf826132a8565b6132d981856132b3565b93506132e981856020860161249a565b6132f2816124cd565b840191505092915050565b600060808201905061331260008301876125ce565b61331f60208301866125ce565b61332c6040830185612664565b818103606083015261333e81846132c4565b905095945050505050565b600081519050613358816123ef565b92915050565b600060208284031215613374576133736123b9565b5b600061338284828501613349565b9150509291505056fea2646970667358221220f678201cc2dff2b46ba3b8b42e0d696d8fb92e4fc1f91e7f8924671fbccaaf3964736f6c634300080f0033

Deployed Bytecode Sourcemap

63623:2992:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24025:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24927:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31418:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65828:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20678:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66001:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64740:113;;;;;;;;;;;;;:::i;:::-;;64861:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63905:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63703:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63735:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2807:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66180:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63872:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64987:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26320:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63772:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21862:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62778:103;;;;;;;;;;;;;:::i;:::-;;63801:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65543:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62130:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25103:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64162:356;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65644:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66367:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65095:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64528:88;;;;;;;;;;;;;:::i;:::-;;63834:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32367:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63036:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24025:639;24110:4;24449:10;24434:25;;:11;:25;;;;:102;;;;24526:10;24511:25;;:11;:25;;;;24434:102;:179;;;;24603:10;24588:25;;:11;:25;;;;24434:179;24414:199;;24025:639;;;:::o;24927:100::-;24981:13;25014:5;25007:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24927:100;:::o;31418:218::-;31494:7;31519:16;31527:7;31519;:16::i;:::-;31514:64;;31544:34;;;;;;;;;;;;;;31514:64;31598:15;:24;31614:7;31598:24;;;;;;;;;;;:30;;;;;;;;;;;;31591:37;;31418:218;;;:::o;65828:165::-;65932:8;4849:1;2907:42;4801:45;;;:49;4797:225;;;2907:42;4872;;;4923:4;4930:8;4872:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4867:144;;4986:8;4967:28;;;;;;;;;;;:::i;:::-;;;;;;;;4867:144;4797:225;65953:32:::1;65967:8;65977:7;65953:13;:32::i;:::-;65828:165:::0;;;:::o;20678:323::-;20739:7;20967:15;:13;:15::i;:::-;20952:12;;20936:13;;:28;:46;20929:53;;20678:323;:::o;66001:171::-;66110:4;4103:1;2907:42;4055:45;;;:49;4051:539;;;4344:10;4336:18;;:4;:18;;;4332:85;;66127:37:::1;66146:4;66152:2;66156:7;66127:18;:37::i;:::-;4395:7:::0;;4332:85;2907:42;4436;;;4487:4;4494:10;4436:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4431:148;;4552:10;4533:30;;;;;;;;;;;:::i;:::-;;;;;;;;4431:148;4051:539;66127:37:::1;66146:4;66152:2;66156:7;66127:18;:37::i;:::-;66001:171:::0;;;;;:::o;64740:113::-;62016:13;:11;:13::i;:::-;64795:10:::1;64787:28;;:51;64816:21;64787:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;64740:113::o:0;64861:118::-;62016:13;:11;:13::i;:::-;64958::::1;64943:12;:28;;;;;;:::i;:::-;;64861:118:::0;:::o;63905:48::-;;;;;;;;;;;;;;;;;:::o;63703:25::-;;;;;;;;;;;;;:::o;63735:30::-;;;;;;;;;;;;;:::o;2807:143::-;2907:42;2807:143;:::o;66180:179::-;66293:4;4103:1;2907:42;4055:45;;;:49;4051:539;;;4344:10;4336:18;;:4;:18;;;4332:85;;66310:41:::1;66333:4;66339:2;66343:7;66310:22;:41::i;:::-;4395:7:::0;;4332:85;2907:42;4436;;;4487:4;4494:10;4436:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4431:148;;4552:10;4533:30;;;;;;;;;;;:::i;:::-;;;;;;;;4431:148;4051:539;66310:41:::1;66333:4;66339:2;66343:7;66310:22;:41::i;:::-;66180:179:::0;;;;;:::o;63872:26::-;;;;:::o;64987:100::-;62016:13;:11;:13::i;:::-;65071:8:::1;65061:7;:18;;;;;;:::i;:::-;;64987:100:::0;:::o;26320:152::-;26392:7;26435:27;26454:7;26435:18;:27::i;:::-;26412:52;;26320:152;;;:::o;63772:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21862:233::-;21934:7;21975:1;21958:19;;:5;:19;;;21954:60;;21986:28;;;;;;;;;;;;;;21954:60;16021:13;22032:18;:25;22051:5;22032:25;;;;;;;;;;;;;;;;:55;22025:62;;21862:233;;;:::o;62778:103::-;62016:13;:11;:13::i;:::-;62843:30:::1;62870:1;62843:18;:30::i;:::-;62778:103::o:0;63801:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65543:91::-;62016:13;:11;:13::i;:::-;65618:6:::1;65608:7;:16;;;;65543:91:::0;:::o;62130:87::-;62176:7;62203:6;;;;;;;;;;;62196:13;;62130:87;:::o;25103:104::-;25159:13;25192:7;25185:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25103:104;:::o;64162:356::-;64233:13;;;;;;;;;;;64225:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;64296:7;;64286:6;:17;;64278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64391:9;;64381:6;64365:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;64357:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64464:6;64436:12;:24;64449:10;64436:24;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;64481:29;64491:10;64503:6;64481:9;:29::i;:::-;64162:356;:::o;65644:176::-;65748:8;4849:1;2907:42;4801:45;;;:49;4797:225;;;2907:42;4872;;;4923:4;4930:8;4872:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4867:144;;4986:8;4967:28;;;;;;;;;;;:::i;:::-;;;;;;;;4867:144;4797:225;65769:43:::1;65793:8;65803;65769:23;:43::i;:::-;65644:176:::0;;;:::o;66367:245::-;66535:4;4103:1;2907:42;4055:45;;;:49;4051:539;;;4344:10;4336:18;;:4;:18;;;4332:85;;66557:47:::1;66580:4;66586:2;66590:7;66599:4;66557:22;:47::i;:::-;4395:7:::0;;4332:85;2907:42;4436;;;4487:4;4494:10;4436:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4431:148;;4552:10;4533:30;;;;;;;;;;;:::i;:::-;;;;;;;;4431:148;4051:539;66557:47:::1;66580:4;66586:2;66590:7;66599:4;66557:22;:47::i;:::-;66367:245:::0;;;;;;:::o;65095:438::-;65213:13;65272:5;65250:27;;:18;;;;;;;;;;;:27;;;65246:79;;65301:12;65294:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65246:79;65359:16;65367:7;65359;:16::i;:::-;65337:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;65492:7;65501:18;65511:7;65501:9;:18::i;:::-;65475:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65461:64;;65095:438;;;;:::o;64528:88::-;62016:13;:11;:13::i;:::-;64595::::1;;;;;;;;;;;64594:14;64578:13;;:30;;;;;;;;;;;;;;;;;;64528:88::o:0;63834:31::-;;;;:::o;32367:164::-;32464:4;32488:18;:25;32507:5;32488:25;;;;;;;;;;;;;;;:35;32514:8;32488:35;;;;;;;;;;;;;;;;;;;;;;;;;32481:42;;32367:164;;;;:::o;63036:201::-;62016:13;:11;:13::i;:::-;63145:1:::1;63125:22;;:8;:22;;::::0;63117:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63201:28;63220:8;63201:18;:28::i;:::-;63036:201:::0;:::o;32789:282::-;32854:4;32910:7;32891:15;:13;:15::i;:::-;:26;;:66;;;;;32944:13;;32934:7;:23;32891:66;:153;;;;;33043:1;16797:8;32995:17;:26;33013:7;32995:26;;;;;;;;;;;;:44;:49;32891:153;32871:173;;32789:282;;;:::o;30851:408::-;30940:13;30956:16;30964:7;30956;:16::i;:::-;30940:32;;31012:5;30989:28;;:19;:17;:19::i;:::-;:28;;;30985:175;;31037:44;31054:5;31061:19;:17;:19::i;:::-;31037:16;:44::i;:::-;31032:128;;31109:35;;;;;;;;;;;;;;31032:128;30985:175;31205:2;31172:15;:24;31188:7;31172:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31243:7;31239:2;31223:28;;31232:5;31223:28;;;;;;;;;;;;30929:330;30851:408;;:::o;20194:92::-;20250:7;20194:92;:::o;35057:2825::-;35199:27;35229;35248:7;35229:18;:27::i;:::-;35199:57;;35314:4;35273:45;;35289:19;35273:45;;;35269:86;;35327:28;;;;;;;;;;;;;;35269:86;35369:27;35398:23;35425:35;35452:7;35425:26;:35::i;:::-;35368:92;;;;35560:68;35585:15;35602:4;35608:19;:17;:19::i;:::-;35560:24;:68::i;:::-;35555:180;;35648:43;35665:4;35671:19;:17;:19::i;:::-;35648:16;:43::i;:::-;35643:92;;35700:35;;;;;;;;;;;;;;35643:92;35555:180;35766:1;35752:16;;:2;:16;;;35748:52;;35777:23;;;;;;;;;;;;;;35748:52;35813:43;35835:4;35841:2;35845:7;35854:1;35813:21;:43::i;:::-;35949:15;35946:160;;;36089:1;36068:19;36061:30;35946:160;36486:18;:24;36505:4;36486:24;;;;;;;;;;;;;;;;36484:26;;;;;;;;;;;;36555:18;:22;36574:2;36555:22;;;;;;;;;;;;;;;;36553:24;;;;;;;;;;;36877:146;36914:2;36963:45;36978:4;36984:2;36988:19;36963:14;:45::i;:::-;17077:8;36935:73;36877:18;:146::i;:::-;36848:17;:26;36866:7;36848:26;;;;;;;;;;;:175;;;;37194:1;17077:8;37143:19;:47;:52;37139:627;;37216:19;37248:1;37238:7;:11;37216:33;;37405:1;37371:17;:30;37389:11;37371:30;;;;;;;;;;;;:35;37367:384;;37509:13;;37494:11;:28;37490:242;;37689:19;37656:17;:30;37674:11;37656:30;;;;;;;;;;;:52;;;;37490:242;37367:384;37197:569;37139:627;37813:7;37809:2;37794:27;;37803:4;37794:27;;;;;;;;;;;;37832:42;37853:4;37859:2;37863:7;37872:1;37832:20;:42::i;:::-;35188:2694;;;35057:2825;;;:::o;62295:132::-;62370:12;:10;:12::i;:::-;62359:23;;:7;:5;:7::i;:::-;:23;;;62351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62295:132::o;37978:193::-;38124:39;38141:4;38147:2;38151:7;38124:39;;;;;;;;;;;;:16;:39::i;:::-;37978:193;;;:::o;27475:1275::-;27542:7;27562:12;27577:7;27562:22;;27645:4;27626:15;:13;:15::i;:::-;:23;27622:1061;;27679:13;;27672:4;:20;27668:1015;;;27717:14;27734:17;:23;27752:4;27734:23;;;;;;;;;;;;27717:40;;27851:1;16797:8;27823:6;:24;:29;27819:845;;28488:113;28505:1;28495:6;:11;28488:113;;28548:17;:25;28566:6;;;;;;;28548:25;;;;;;;;;;;;28539:34;;28488:113;;;28634:6;28627:13;;;;;;27819:845;27694:989;27668:1015;27622:1061;28711:31;;;;;;;;;;;;;;27475:1275;;;;:::o;63397:191::-;63471:16;63490:6;;;;;;;;;;;63471:25;;63516:8;63507:6;;:17;;;;;;;;;;;;;;;;;;63571:8;63540:40;;63561:8;63540:40;;;;;;;;;;;;63460:128;63397:191;:::o;48929:112::-;49006:27;49016:2;49020:8;49006:27;;;;;;;;;;;;:9;:27::i;:::-;48929:112;;:::o;31976:234::-;32123:8;32071:18;:39;32090:19;:17;:19::i;:::-;32071:39;;;;;;;;;;;;;;;:49;32111:8;32071:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32183:8;32147:55;;32162:19;:17;:19::i;:::-;32147:55;;;32193:8;32147:55;;;;;;:::i;:::-;;;;;;;;31976:234;;:::o;38769:407::-;38944:31;38957:4;38963:2;38967:7;38944:12;:31::i;:::-;39008:1;38990:2;:14;;;:19;38986:183;;39029:56;39060:4;39066:2;39070:7;39079:5;39029:30;:56::i;:::-;39024:145;;39113:40;;;;;;;;;;;;;;39024:145;38986:183;38769:407;;;;:::o;55304:1745::-;55369:17;55803:4;55796;55790:11;55786:22;55895:1;55889:4;55882:15;55970:4;55967:1;55963:12;55956:19;;56052:1;56047:3;56040:14;56156:3;56395:5;56377:428;56403:1;56377:428;;;56443:1;56438:3;56434:11;56427:18;;56614:2;56608:4;56604:13;56600:2;56596:22;56591:3;56583:36;56708:2;56702:4;56698:13;56690:21;;56775:4;56377:428;56765:25;56377:428;56381:21;56844:3;56839;56835:13;56959:4;56954:3;56950:14;56943:21;;57024:6;57019:3;57012:19;55408:1634;;;55304:1745;;;:::o;55097:105::-;55157:7;55184:10;55177:17;;55097:105;:::o;33952:485::-;34054:27;34083:23;34124:38;34165:15;:24;34181:7;34165:24;;;;;;;;;;;34124:65;;34342:18;34319:41;;34399:19;34393:26;34374:45;;34304:126;33952:485;;;:::o;33180:659::-;33329:11;33494:16;33487:5;33483:28;33474:37;;33654:16;33643:9;33639:32;33626:45;;33804:15;33793:9;33790:30;33782:5;33771:9;33768:20;33765:56;33755:66;;33180:659;;;;;:::o;39838:159::-;;;;;:::o;54406:311::-;54541:7;54561:16;17201:3;54587:19;:41;;54561:68;;17201:3;54655:31;54666:4;54672:2;54676:9;54655:10;:31::i;:::-;54647:40;;:62;;54640:69;;;54406:311;;;;;:::o;29298:450::-;29378:14;29546:16;29539:5;29535:28;29526:37;;29723:5;29709:11;29684:23;29680:41;29677:52;29670:5;29667:63;29657:73;;29298:450;;;;:::o;40662:158::-;;;;;:::o;60681:98::-;60734:7;60761:10;60754:17;;60681:98;:::o;48156:689::-;48287:19;48293:2;48297:8;48287:5;:19::i;:::-;48366:1;48348:2;:14;;;:19;48344:483;;48388:11;48402:13;;48388:27;;48434:13;48456:8;48450:3;:14;48434:30;;48483:233;48514:62;48553:1;48557:2;48561:7;;;;;;48570:5;48514:30;:62::i;:::-;48509:167;;48612:40;;;;;;;;;;;;;;48509:167;48711:3;48703:5;:11;48483:233;;48798:3;48781:13;;:20;48777:34;;48803:8;;;48777:34;48369:458;;48344:483;48156:689;;;:::o;41260:716::-;41423:4;41469:2;41444:45;;;41490:19;:17;:19::i;:::-;41511:4;41517:7;41526:5;41444:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41744:1;41727:6;:13;:18;41723:235;;41773:40;;;;;;;;;;;;;;41723:235;41916:6;41910:13;41901:6;41897:2;41893:15;41886:38;41440:529;41613:54;;;41603:64;;;:6;:64;;;;41596:71;;;41260:716;;;;;;:::o;54107:147::-;54244:6;54107:147;;;;;:::o;42438:2966::-;42511:20;42534:13;;42511:36;;42574:1;42562:8;:13;42558:44;;42584:18;;;;;;;;;;;;;;42558:44;42615:61;42645:1;42649:2;42653:12;42667:8;42615:21;:61::i;:::-;43159:1;16159:2;43129:1;:26;;43128:32;43116:8;:45;43090:18;:22;43109:2;43090:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43438:139;43475:2;43529:33;43552:1;43556:2;43560:1;43529:14;:33::i;:::-;43496:30;43517:8;43496:20;:30::i;:::-;:66;43438:18;:139::i;:::-;43404:17;:31;43422:12;43404:31;;;;;;;;;;;:173;;;;43594:16;43625:11;43654:8;43639:12;:23;43625:37;;44175:16;44171:2;44167:25;44155:37;;44547:12;44507:8;44466:1;44404:25;44345:1;44284;44257:335;44918:1;44904:12;44900:20;44858:346;44959:3;44950:7;44947:16;44858:346;;45177:7;45167:8;45164:1;45137:25;45134:1;45131;45126:59;45012:1;45003:7;44999:15;44988:26;;44858:346;;;44862:77;45249:1;45237:8;:13;45233:45;;45259:19;;;;;;;;;;;;;;45233:45;45311:3;45295:13;:19;;;;42864:2462;;45336:60;45365:1;45369:2;45373:12;45387:8;45336:20;:60::i;:::-;42500:2904;42438:2966;;:::o;29850:324::-;29920:14;30153:1;30143:8;30140:15;30114:24;30110:46;30100:56;;29850: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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:60::-;8899:3;8920:5;8913:12;;8871:60;;;:::o;8937:142::-;8987:9;9020:53;9038:34;9047:24;9065:5;9047:24;:::i;:::-;9038:34;:::i;:::-;9020:53;:::i;:::-;9007:66;;8937:142;;;:::o;9085:126::-;9135:9;9168:37;9199:5;9168:37;:::i;:::-;9155:50;;9085:126;;;:::o;9217:157::-;9298:9;9331:37;9362:5;9331:37;:::i;:::-;9318:50;;9217:157;;;:::o;9380:193::-;9498:68;9560:5;9498:68;:::i;:::-;9493:3;9486:81;9380:193;;:::o;9579:284::-;9703:4;9741:2;9730:9;9726:18;9718:26;;9754:102;9853:1;9842:9;9838:17;9829:6;9754:102;:::i;:::-;9579:284;;;;:::o;9869:116::-;9939:21;9954:5;9939:21;:::i;:::-;9932:5;9929:32;9919:60;;9975:1;9972;9965:12;9919:60;9869:116;:::o;9991:133::-;10034:5;10072:6;10059:20;10050:29;;10088:30;10112:5;10088:30;:::i;:::-;9991:133;;;;:::o;10130:468::-;10195:6;10203;10252:2;10240:9;10231:7;10227:23;10223:32;10220:119;;;10258:79;;:::i;:::-;10220:119;10378:1;10403:53;10448:7;10439:6;10428:9;10424:22;10403:53;:::i;:::-;10393:63;;10349:117;10505:2;10531:50;10573:7;10564:6;10553:9;10549:22;10531:50;:::i;:::-;10521:60;;10476:115;10130:468;;;;;:::o;10604:307::-;10665:4;10755:18;10747:6;10744:30;10741:56;;;10777:18;;:::i;:::-;10741:56;10815:29;10837:6;10815:29;:::i;:::-;10807:37;;10899:4;10893;10889:15;10881:23;;10604:307;;;:::o;10917:410::-;10994:5;11019:65;11035:48;11076:6;11035:48;:::i;:::-;11019:65;:::i;:::-;11010:74;;11107:6;11100:5;11093:21;11145:4;11138:5;11134:16;11183:3;11174:6;11169:3;11165:16;11162:25;11159:112;;;11190:79;;:::i;:::-;11159:112;11280:41;11314:6;11309:3;11304;11280:41;:::i;:::-;11000:327;10917:410;;;;;:::o;11346:338::-;11401:5;11450:3;11443:4;11435:6;11431:17;11427:27;11417:122;;11458:79;;:::i;:::-;11417:122;11575:6;11562:20;11600:78;11674:3;11666:6;11659:4;11651:6;11647:17;11600:78;:::i;:::-;11591:87;;11407:277;11346:338;;;;:::o;11690:943::-;11785:6;11793;11801;11809;11858:3;11846:9;11837:7;11833:23;11829:33;11826:120;;;11865:79;;:::i;:::-;11826:120;11985:1;12010:53;12055:7;12046:6;12035:9;12031:22;12010:53;:::i;:::-;12000:63;;11956:117;12112:2;12138:53;12183:7;12174:6;12163:9;12159:22;12138:53;:::i;:::-;12128:63;;12083:118;12240:2;12266:53;12311:7;12302:6;12291:9;12287:22;12266:53;:::i;:::-;12256:63;;12211:118;12396:2;12385:9;12381:18;12368:32;12427:18;12419:6;12416:30;12413:117;;;12449:79;;:::i;:::-;12413:117;12554:62;12608:7;12599:6;12588:9;12584:22;12554:62;:::i;:::-;12544:72;;12339:287;11690:943;;;;;;;:::o;12639:474::-;12707:6;12715;12764:2;12752:9;12743:7;12739:23;12735:32;12732:119;;;12770:79;;:::i;:::-;12732:119;12890:1;12915:53;12960:7;12951:6;12940:9;12936:22;12915:53;:::i;:::-;12905:63;;12861:117;13017:2;13043:53;13088:7;13079:6;13068:9;13064:22;13043:53;:::i;:::-;13033:63;;12988:118;12639:474;;;;;:::o;13119:180::-;13167:77;13164:1;13157:88;13264:4;13261:1;13254:15;13288:4;13285:1;13278:15;13305:320;13349:6;13386:1;13380:4;13376:12;13366:22;;13433:1;13427:4;13423:12;13454:18;13444:81;;13510:4;13502:6;13498:17;13488:27;;13444:81;13572:2;13564:6;13561:14;13541:18;13538:38;13535:84;;13591:18;;:::i;:::-;13535:84;13356:269;13305:320;;;:::o;13631:332::-;13752:4;13790:2;13779:9;13775:18;13767:26;;13803:71;13871:1;13860:9;13856:17;13847:6;13803:71;:::i;:::-;13884:72;13952:2;13941:9;13937:18;13928:6;13884:72;:::i;:::-;13631:332;;;;;:::o;13969:137::-;14023:5;14054:6;14048:13;14039:22;;14070:30;14094:5;14070:30;:::i;:::-;13969:137;;;;:::o;14112:345::-;14179:6;14228:2;14216:9;14207:7;14203:23;14199:32;14196:119;;;14234:79;;:::i;:::-;14196:119;14354:1;14379:61;14432:7;14423:6;14412:9;14408:22;14379:61;:::i;:::-;14369:71;;14325:125;14112:345;;;;:::o;14463:141::-;14512:4;14535:3;14527:11;;14558:3;14555:1;14548:14;14592:4;14589:1;14579:18;14571:26;;14463:141;;;:::o;14610:93::-;14647:6;14694:2;14689;14682:5;14678:14;14674:23;14664:33;;14610:93;;;:::o;14709:107::-;14753:8;14803:5;14797:4;14793:16;14772:37;;14709:107;;;;:::o;14822:393::-;14891:6;14941:1;14929:10;14925:18;14964:97;14994:66;14983:9;14964:97;:::i;:::-;15082:39;15112:8;15101:9;15082:39;:::i;:::-;15070:51;;15154:4;15150:9;15143:5;15139:21;15130:30;;15203:4;15193:8;15189:19;15182:5;15179:30;15169:40;;14898:317;;14822:393;;;;;:::o;15221:142::-;15271:9;15304:53;15322:34;15331:24;15349:5;15331:24;:::i;:::-;15322:34;:::i;:::-;15304:53;:::i;:::-;15291:66;;15221:142;;;:::o;15369:75::-;15412:3;15433:5;15426:12;;15369:75;;;:::o;15450:269::-;15560:39;15591:7;15560:39;:::i;:::-;15621:91;15670:41;15694:16;15670:41;:::i;:::-;15662:6;15655:4;15649:11;15621:91;:::i;:::-;15615:4;15608:105;15526:193;15450:269;;;:::o;15725:73::-;15770:3;15725:73;:::o;15804:189::-;15881:32;;:::i;:::-;15922:65;15980:6;15972;15966:4;15922:65;:::i;:::-;15857:136;15804:189;;:::o;15999:186::-;16059:120;16076:3;16069:5;16066:14;16059:120;;;16130:39;16167:1;16160:5;16130:39;:::i;:::-;16103:1;16096:5;16092:13;16083:22;;16059:120;;;15999:186;;:::o;16191:543::-;16292:2;16287:3;16284:11;16281:446;;;16326:38;16358:5;16326:38;:::i;:::-;16410:29;16428:10;16410:29;:::i;:::-;16400:8;16396:44;16593:2;16581:10;16578:18;16575:49;;;16614:8;16599:23;;16575:49;16637:80;16693:22;16711:3;16693:22;:::i;:::-;16683:8;16679:37;16666:11;16637:80;:::i;:::-;16296:431;;16281:446;16191:543;;;:::o;16740:117::-;16794:8;16844:5;16838:4;16834:16;16813:37;;16740:117;;;;:::o;16863:169::-;16907:6;16940:51;16988:1;16984:6;16976:5;16973:1;16969:13;16940:51;:::i;:::-;16936:56;17021:4;17015;17011:15;17001:25;;16914:118;16863:169;;;;:::o;17037:295::-;17113:4;17259:29;17284:3;17278:4;17259:29;:::i;:::-;17251:37;;17321:3;17318:1;17314:11;17308:4;17305:21;17297:29;;17037:295;;;;:::o;17337:1395::-;17454:37;17487:3;17454:37;:::i;:::-;17556:18;17548:6;17545:30;17542:56;;;17578:18;;:::i;:::-;17542:56;17622:38;17654:4;17648:11;17622:38;:::i;:::-;17707:67;17767:6;17759;17753:4;17707:67;:::i;:::-;17801:1;17825:4;17812:17;;17857:2;17849:6;17846:14;17874:1;17869:618;;;;18531:1;18548:6;18545:77;;;18597:9;18592:3;18588:19;18582:26;18573:35;;18545:77;18648:67;18708:6;18701:5;18648:67;:::i;:::-;18642:4;18635:81;18504:222;17839:887;;17869:618;17921:4;17917:9;17909:6;17905:22;17955:37;17987:4;17955:37;:::i;:::-;18014:1;18028:208;18042:7;18039:1;18036:14;18028:208;;;18121:9;18116:3;18112:19;18106:26;18098:6;18091:42;18172:1;18164:6;18160:14;18150:24;;18219:2;18208:9;18204:18;18191:31;;18065:4;18062:1;18058:12;18053:17;;18028:208;;;18264:6;18255:7;18252:19;18249:179;;;18322:9;18317:3;18313:19;18307:26;18365:48;18407:4;18399:6;18395:17;18384:9;18365:48;:::i;:::-;18357:6;18350:64;18272:156;18249:179;18474:1;18470;18462:6;18458:14;18454:22;18448:4;18441:36;17876:611;;;17839:887;;17429:1303;;;17337:1395;;:::o;18738:165::-;18878:17;18874:1;18866:6;18862:14;18855:41;18738:165;:::o;18909:366::-;19051:3;19072:67;19136:2;19131:3;19072:67;:::i;:::-;19065:74;;19148:93;19237:3;19148:93;:::i;:::-;19266:2;19261:3;19257:12;19250:19;;18909:366;;;:::o;19281:419::-;19447:4;19485:2;19474:9;19470:18;19462:26;;19534:9;19528:4;19524:20;19520:1;19509:9;19505:17;19498:47;19562:131;19688:4;19562:131;:::i;:::-;19554:139;;19281:419;;;:::o;19706:225::-;19846:34;19842:1;19834:6;19830:14;19823:58;19915:8;19910:2;19902:6;19898:15;19891:33;19706:225;:::o;19937:366::-;20079:3;20100:67;20164:2;20159:3;20100:67;:::i;:::-;20093:74;;20176:93;20265:3;20176:93;:::i;:::-;20294:2;20289:3;20285:12;20278:19;;19937:366;;;:::o;20309:419::-;20475:4;20513:2;20502:9;20498:18;20490:26;;20562:9;20556:4;20552:20;20548:1;20537:9;20533:17;20526:47;20590:131;20716:4;20590:131;:::i;:::-;20582:139;;20309:419;;;:::o;20734:180::-;20782:77;20779:1;20772:88;20879:4;20876:1;20869:15;20903:4;20900:1;20893:15;20920:305;20960:3;20979:20;20997:1;20979:20;:::i;:::-;20974:25;;21013:20;21031:1;21013:20;:::i;:::-;21008:25;;21167:1;21099:66;21095:74;21092:1;21089:81;21086:107;;;21173:18;;:::i;:::-;21086:107;21217:1;21214;21210:9;21203:16;;20920:305;;;;:::o;21231:171::-;21371:23;21367:1;21359:6;21355:14;21348:47;21231:171;:::o;21408:366::-;21550:3;21571:67;21635:2;21630:3;21571:67;:::i;:::-;21564:74;;21647:93;21736:3;21647:93;:::i;:::-;21765:2;21760:3;21756:12;21749:19;;21408:366;;;:::o;21780:419::-;21946:4;21984:2;21973:9;21969:18;21961:26;;22033:9;22027:4;22023:20;22019:1;22008:9;22004:17;21997:47;22061:131;22187:4;22061:131;:::i;:::-;22053:139;;21780:419;;;:::o;22205:234::-;22345:34;22341:1;22333:6;22329:14;22322:58;22414:17;22409:2;22401:6;22397:15;22390:42;22205:234;:::o;22445:366::-;22587:3;22608:67;22672:2;22667:3;22608:67;:::i;:::-;22601:74;;22684:93;22773:3;22684:93;:::i;:::-;22802:2;22797:3;22793:12;22786:19;;22445:366;;;:::o;22817:419::-;22983:4;23021:2;23010:9;23006:18;22998:26;;23070:9;23064:4;23060:20;23056:1;23045:9;23041:17;23034:47;23098:131;23224:4;23098:131;:::i;:::-;23090:139;;22817:419;;;:::o;23242:148::-;23344:11;23381:3;23366:18;;23242:148;;;;:::o;23420:874::-;23523:3;23560:5;23554:12;23589:36;23615:9;23589:36;:::i;:::-;23641:89;23723:6;23718:3;23641:89;:::i;:::-;23634:96;;23761:1;23750:9;23746:17;23777:1;23772:166;;;;23952:1;23947:341;;;;23739:549;;23772:166;23856:4;23852:9;23841;23837:25;23832:3;23825:38;23918:6;23911:14;23904:22;23896:6;23892:35;23887:3;23883:45;23876:52;;23772:166;;23947:341;24014:38;24046:5;24014:38;:::i;:::-;24074:1;24088:154;24102:6;24099:1;24096:13;24088:154;;;24176:7;24170:14;24166:1;24161:3;24157:11;24150:35;24226:1;24217:7;24213:15;24202:26;;24124:4;24121:1;24117:12;24112:17;;24088:154;;;24271:6;24266:3;24262:16;24255:23;;23954:334;;23739:549;;23527:767;;23420:874;;;;:::o;24300:377::-;24406:3;24434:39;24467:5;24434:39;:::i;:::-;24489:89;24571:6;24566:3;24489:89;:::i;:::-;24482:96;;24587:52;24632:6;24627:3;24620:4;24613:5;24609:16;24587:52;:::i;:::-;24664:6;24659:3;24655:16;24648:23;;24410:267;24300:377;;;;:::o;24683:114::-;;:::o;24803:400::-;24963:3;24984:84;25066:1;25061:3;24984:84;:::i;:::-;24977:91;;25077:93;25166:3;25077:93;:::i;:::-;25195:1;25190:3;25186:11;25179:18;;24803:400;;;:::o;25209:695::-;25487:3;25509:92;25597:3;25588:6;25509:92;:::i;:::-;25502:99;;25618:95;25709:3;25700:6;25618:95;:::i;:::-;25611:102;;25730:148;25874:3;25730:148;:::i;:::-;25723:155;;25895:3;25888:10;;25209:695;;;;;:::o;25910:225::-;26050:34;26046:1;26038:6;26034:14;26027:58;26119:8;26114:2;26106:6;26102:15;26095:33;25910:225;:::o;26141:366::-;26283:3;26304:67;26368:2;26363:3;26304:67;:::i;:::-;26297:74;;26380:93;26469:3;26380:93;:::i;:::-;26498:2;26493:3;26489:12;26482:19;;26141:366;;;:::o;26513:419::-;26679:4;26717:2;26706:9;26702:18;26694:26;;26766:9;26760:4;26756:20;26752:1;26741:9;26737:17;26730:47;26794:131;26920:4;26794:131;:::i;:::-;26786:139;;26513:419;;;:::o;26938:182::-;27078:34;27074:1;27066:6;27062:14;27055:58;26938:182;:::o;27126:366::-;27268:3;27289:67;27353:2;27348:3;27289:67;:::i;:::-;27282:74;;27365:93;27454:3;27365:93;:::i;:::-;27483:2;27478:3;27474:12;27467:19;;27126:366;;;:::o;27498:419::-;27664:4;27702:2;27691:9;27687:18;27679:26;;27751:9;27745:4;27741:20;27737:1;27726:9;27722:17;27715:47;27779:131;27905:4;27779:131;:::i;:::-;27771:139;;27498:419;;;:::o;27923:98::-;27974:6;28008:5;28002:12;27992:22;;27923:98;;;:::o;28027:168::-;28110:11;28144:6;28139:3;28132:19;28184:4;28179:3;28175:14;28160:29;;28027:168;;;;:::o;28201:360::-;28287:3;28315:38;28347:5;28315:38;:::i;:::-;28369:70;28432:6;28427:3;28369:70;:::i;:::-;28362:77;;28448:52;28493:6;28488:3;28481:4;28474:5;28470:16;28448:52;:::i;:::-;28525:29;28547:6;28525:29;:::i;:::-;28520:3;28516:39;28509:46;;28291:270;28201:360;;;;:::o;28567:640::-;28762:4;28800:3;28789:9;28785:19;28777:27;;28814:71;28882:1;28871:9;28867:17;28858:6;28814:71;:::i;:::-;28895:72;28963:2;28952:9;28948:18;28939:6;28895:72;:::i;:::-;28977;29045:2;29034:9;29030:18;29021:6;28977:72;:::i;:::-;29096:9;29090:4;29086:20;29081:2;29070:9;29066:18;29059:48;29124:76;29195:4;29186:6;29124:76;:::i;:::-;29116:84;;28567:640;;;;;;;:::o;29213:141::-;29269:5;29300:6;29294:13;29285:22;;29316:32;29342:5;29316:32;:::i;:::-;29213:141;;;;:::o;29360:349::-;29429:6;29478:2;29466:9;29457:7;29453:23;29449:32;29446:119;;;29484:79;;:::i;:::-;29446:119;29604:1;29629:63;29684:7;29675:6;29664:9;29660:22;29629:63;:::i;:::-;29619:73;;29575:127;29360:349;;;;:::o

Swarm Source

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