ETH Price: $2,418.67 (-1.21%)

Token

stephanie. (STPHN)
 

Overview

Max Total Supply

69 STPHN

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
buckleupguy.eth
Balance
1 STPHN
0x05C592257f9171E176325B84AC4A7f156390b91D
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:
stephanie

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

__/\\\\\\\\\\\\\____/\\\________/\\\_______/\\\\\__________/\\\\\\\\\\\\__/\\\________/\\\__/\\\\\\\\\\\\\\\_        
 _\/\\\/////////\\\_\/\\\_______\/\\\_____/\\\///\\\______/\\\//////////__\/\\\_______\/\\\_\/\\\///////////__       
  _\/\\\_______\/\\\_\/\\\_______\/\\\___/\\\/__\///\\\___/\\\_____________\/\\\_______\/\\\_\/\\\_____________      
   _\/\\\\\\\\\\\\\/__\/\\\\\\\\\\\\\\\__/\\\______\//\\\_\/\\\____/\\\\\\\_\/\\\_______\/\\\_\/\\\\\\\\\\\_____     
    _\/\\\/////////____\/\\\/////////\\\_\/\\\_______\/\\\_\/\\\___\/////\\\_\/\\\_______\/\\\_\/\\\///////______    
     _\/\\\_____________\/\\\_______\/\\\_\//\\\______/\\\__\/\\\_______\/\\\_\/\\\_______\/\\\_\/\\\_____________   
      _\/\\\_____________\/\\\_______\/\\\__\///\\\__/\\\____\/\\\_______\/\\\_\//\\\______/\\\__\/\\\_____________  
       _\/\\\_____________\/\\\_______\/\\\____\///\\\\\/_____\//\\\\\\\\\\\\/___\///\\\\\\\\\/___\/\\\\\\\\\\\\\\\_ 
        _\///______________\///________\///_______\/////________\////////////_______\/////////_____\///////////////__

*/


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


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

pragma solidity ^0.8.13;

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

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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


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

pragma solidity ^0.8.13;

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


pragma solidity ^0.8.13;

// File: erc721a/contracts/IERC721A.sol

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

/**
 * @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 stephanie is ERC721A, Ownable, DefaultOperatorFilterer, ReentrancyGuard {

    /////////////////////////////
    // PARAMS & VALUES
    /////////////////////////////
    
    uint256 public maxSupply = 1200;
    uint256 public maxPerWallet = 40;
    uint256 public mintCost = 0.002 ether;
    bool public isSalesActive = false;

    string public baseURI = "ipfs://QmNMd2p1AkHnnrZRY2nJmZqqQfsCvU6bUs3kMrfEqxNo2p/";

    mapping(address => uint) addressToMinted;
    mapping(address => bool) freeMint;

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

    constructor () ERC721A("stephanie.", "STPHN") {
    }

    /////////////////////////////
    // CORE FUNCTIONALITY
    /////////////////////////////

    function mintStephanie(uint256 mintAmount) public payable nonReentrant {
        require(isSalesActive, "Sale is not active");
        require(addressToMinted[msg.sender] + mintAmount <= maxPerWallet, "Exceeded max allocation");
        require(totalSupply() + mintAmount <= maxSupply, "Sold out");

        if(freeMint[msg.sender]) {
            require(msg.value >= mintAmount * mintCost, "Not enough funds");
        }
        else {
            require(msg.value >= (mintAmount - 1) * mintCost, "Not enough funds");
            freeMint[msg.sender] = true;
        }
        
        addressToMinted[msg.sender] += mintAmount;
        _safeMint(msg.sender, mintAmount);
    }

    function reserveStephanie(uint256 _mintAmount) public onlyOwner {
        require(totalSupply() + _mintAmount <= maxSupply, "Sold Out!");
        
        _safeMint(msg.sender, _mintAmount);
    }

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

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

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

    function toggleSale() external onlyOwner {
        isSalesActive = !isSalesActive;
    }

    function setCost(uint256 newCost) external onlyOwner {
        mintCost = newCost;
    }

    function setSupply(uint256 newSupply) external onlyOwner {
        maxSupply = newSupply;
    }

    function withdraw() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
	}
    
    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"isSalesActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mintStephanie","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reserveStephanie","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","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":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526104b0600a556028600b5566071afd498d0000600c556000600d60006101000a81548160ff02191690831515021790555060405180606001604052806036815260200162003d8c60369139600e90816200005f9190620006a3565b503480156200006d57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a81526020017f7374657068616e69652e000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f535450484e0000000000000000000000000000000000000000000000000000008152508160029081620001029190620006a3565b508060039081620001149190620006a3565b50620001256200035260201b60201c565b60008190555050506200014d620001416200035b60201b60201c565b6200036360201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200034257801562000208576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ce929190620007cf565b600060405180830381600087803b158015620001e957600080fd5b505af1158015620001fe573d6000803e3d6000fd5b5050505062000341565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002c2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000288929190620007cf565b600060405180830381600087803b158015620002a357600080fd5b505af1158015620002b8573d6000803e3d6000fd5b5050505062000340565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200030b9190620007fc565b600060405180830381600087803b1580156200032657600080fd5b505af11580156200033b573d6000803e3d6000fd5b505050505b5b5b5050600160098190555062000819565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004ab57607f821691505b602082108103620004c157620004c062000463565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200052b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004ec565b620005378683620004ec565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005846200057e62000578846200054f565b62000559565b6200054f565b9050919050565b6000819050919050565b620005a08362000563565b620005b8620005af826200058b565b848454620004f9565b825550505050565b600090565b620005cf620005c0565b620005dc81848462000595565b505050565b5b818110156200060457620005f8600082620005c5565b600181019050620005e2565b5050565b601f82111562000653576200061d81620004c7565b6200062884620004dc565b8101602085101562000638578190505b620006506200064785620004dc565b830182620005e1565b50505b505050565b600082821c905092915050565b6000620006786000198460080262000658565b1980831691505092915050565b600062000693838362000665565b9150826002028217905092915050565b620006ae8262000429565b67ffffffffffffffff811115620006ca57620006c962000434565b5b620006d6825462000492565b620006e382828562000608565b600060209050601f8311600181146200071b576000841562000706578287015190505b62000712858262000685565b86555062000782565b601f1984166200072b86620004c7565b60005b8281101562000755578489015182556001820191506020850194506020810190506200072e565b8683101562000775578489015162000771601f89168262000665565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007b7826200078a565b9050919050565b620007c981620007aa565b82525050565b6000604082019050620007e66000830185620007be565b620007f56020830184620007be565b9392505050565b6000602082019050620008136000830184620007be565b92915050565b61356380620008296000396000f3fe6080604052600436106101cd5760003560e01c8063660bccc7116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146105f9578063daa81cdd14610624578063e985e9c51461064f578063f2fde38b1461068c576101cd565b8063a22cb4651461054c578063b88d4fde14610575578063bdb4b84814610591578063c87b56dd146105bc576101cd565b8063715018a6116100d1578063715018a6146104c85780637d8966e4146104df5780638da5cb5b146104f657806395d89b4114610521576101cd565b8063660bccc7146104445780636c0360eb1461046057806370a082311461048b576101cd565b80633b4c4b251161016f57806344a0d68a1161013e57806344a0d68a1461038a578063453c2310146103b357806355f804b3146103de5780636352211e14610407576101cd565b80633b4c4b25146103035780633ccfd60b1461032c57806341f434341461034357806342842e0e1461036e576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806323b872dd146102be5780632b7c6a9c146102da576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061259a565b6106b5565b60405161020691906125e2565b60405180910390f35b34801561021b57600080fd5b50610224610747565b604051610231919061268d565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906126e5565b6107d9565b60405161026e9190612753565b60405180910390f35b610291600480360381019061028c919061279a565b610858565b005b34801561029f57600080fd5b506102a8610962565b6040516102b591906127e9565b60405180910390f35b6102d860048036038101906102d39190612804565b610979565b005b3480156102e657600080fd5b5061030160048036038101906102fc91906126e5565b610ac9565b005b34801561030f57600080fd5b5061032a600480360381019061032591906126e5565b610b35565b005b34801561033857600080fd5b50610341610b47565b005b34801561034f57600080fd5b50610358610b98565b60405161036591906128b6565b60405180910390f35b61038860048036038101906103839190612804565b610baa565b005b34801561039657600080fd5b506103b160048036038101906103ac91906126e5565b610cfa565b005b3480156103bf57600080fd5b506103c8610d0c565b6040516103d591906127e9565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612a06565b610d12565b005b34801561041357600080fd5b5061042e600480360381019061042991906126e5565b610d2d565b60405161043b9190612753565b60405180910390f35b61045e600480360381019061045991906126e5565b610d3f565b005b34801561046c57600080fd5b50610475611043565b604051610482919061268d565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190612a4f565b6110d1565b6040516104bf91906127e9565b60405180910390f35b3480156104d457600080fd5b506104dd611189565b005b3480156104eb57600080fd5b506104f461119d565b005b34801561050257600080fd5b5061050b6111d1565b6040516105189190612753565b60405180910390f35b34801561052d57600080fd5b506105366111fb565b604051610543919061268d565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612aa8565b61128d565b005b61058f600480360381019061058a9190612b89565b611397565b005b34801561059d57600080fd5b506105a66114ea565b6040516105b391906127e9565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de91906126e5565b6114f0565b6040516105f0919061268d565b60405180910390f35b34801561060557600080fd5b5061060e61158e565b60405161061b91906127e9565b60405180910390f35b34801561063057600080fd5b50610639611594565b60405161064691906125e2565b60405180910390f35b34801561065b57600080fd5b5061067660048036038101906106719190612c0c565b6115a7565b60405161068391906125e2565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190612a4f565b61163b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461075690612c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612c7b565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e4826116be565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610953576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108d0929190612cac565b602060405180830381865afa1580156108ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109119190612cea565b61095257806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109499190612753565b60405180910390fd5b5b61095d838361171d565b505050565b600061096c611861565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ab7573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109eb576109e684848461186a565b610ac3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a34929190612cac565b602060405180830381865afa158015610a51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a759190612cea565b610ab657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610aad9190612753565b60405180910390fd5b5b610ac284848461186a565b5b50505050565b610ad1611b8c565b600a5481610add610962565b610ae79190612d46565b1115610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90612dc6565b60405180910390fd5b610b323382611c0a565b50565b610b3d611b8c565b80600a8190555050565b610b4f611b8c565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b95573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ce8573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c1c57610c17848484611c28565b610cf4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c65929190612cac565b602060405180830381865afa158015610c82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca69190612cea565b610ce757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610cde9190612753565b60405180910390fd5b5b610cf3848484611c28565b5b50505050565b610d02611b8c565b80600c8190555050565b600b5481565b610d1a611b8c565b80600e9081610d299190612f88565b5050565b6000610d3882611c48565b9050919050565b610d47611d14565b600d60009054906101000a900460ff16610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d906130a6565b60405180910390fd5b600b5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610de49190612d46565b1115610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90613112565b60405180910390fd5b600a5481610e31610962565b610e3b9190612d46565b1115610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e739061317e565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f2357600c5481610edc919061319e565b341015610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f159061322c565b60405180910390fd5b610fd8565b600c54600182610f33919061324c565b610f3d919061319e565b341015610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f769061322c565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110279190612d46565b925050819055506110383382611c0a565b611040611d63565b50565b600e805461105090612c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461107c90612c7b565b80156110c95780601f1061109e576101008083540402835291602001916110c9565b820191906000526020600020905b8154815290600101906020018083116110ac57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611138576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611191611b8c565b61119b6000611d6d565b565b6111a5611b8c565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461120a90612c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461123690612c7b565b80156112835780601f1061125857610100808354040283529160200191611283565b820191906000526020600020905b81548152906001019060200180831161126657829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611388576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611305929190612cac565b602060405180830381865afa158015611322573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113469190612cea565b61138757806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161137e9190612753565b60405180910390fd5b5b6113928383611e33565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156114d6573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361140a5761140585858585611f3e565b6114e3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611453929190612cac565b602060405180830381865afa158015611470573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114949190612cea565b6114d557336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114cc9190612753565b60405180910390fd5b5b6114e285858585611f3e565b5b5050505050565b600c5481565b60606114fb826116be565b611531576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061153b611fb1565b9050600081510361155b5760405180602001604052806000815250611586565b8061156584612043565b6040516020016115769291906132bc565b6040516020818303038152906040525b915050919050565b600a5481565b600d60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611643611b8c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a990613352565b60405180910390fd5b6116bb81611d6d565b50565b6000816116c9611861565b111580156116d8575060005482105b8015611716575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061172882610d2d565b90508073ffffffffffffffffffffffffffffffffffffffff16611749612093565b73ffffffffffffffffffffffffffffffffffffffff16146117ac5761177581611770612093565b6115a7565b6117ab576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061187582611c48565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118dc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806118e88461209b565b915091506118fe81876118f9612093565b6120c2565b61194a576119138661190e612093565b6115a7565b611949576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036119b0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119bd8686866001612106565b80156119c857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611a9685611a7288888761210c565b7c020000000000000000000000000000000000000000000000000000000017612134565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611b1c5760006001850190506000600460008381526020019081526020016000205403611b1a576000548114611b19578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b84868686600161215f565b505050505050565b611b94612165565b73ffffffffffffffffffffffffffffffffffffffff16611bb26111d1565b73ffffffffffffffffffffffffffffffffffffffff1614611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff906133be565b60405180910390fd5b565b611c2482826040518060200160405280600081525061216d565b5050565b611c4383838360405180602001604052806000815250611397565b505050565b60008082905080611c57611861565b11611cdd57600054811015611cdc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611cda575b60008103611cd0576004600083600190039350838152602001908152602001600020549050611ca6565b8092505050611d0f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600260095403611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d509061342a565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611e40612093565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611eed612093565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3291906125e2565b60405180910390a35050565b611f49848484610979565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fab57611f748484848461220a565b611faa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600e8054611fc090612c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054611fec90612c7b565b80156120395780601f1061200e57610100808354040283529160200191612039565b820191906000526020600020905b81548152906001019060200180831161201c57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561207e57600184039350600a81066030018453600a810490508061205c575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861212386868461235a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6121778383612363565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461220557600080549050600083820390505b6121b7600086838060010194508661220a565b6121ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121a457816000541461220257600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612230612093565b8786866040518563ffffffff1660e01b8152600401612252949392919061349f565b6020604051808303816000875af192505050801561228e57506040513d601f19601f8201168201806040525081019061228b9190613500565b60015b612307573d80600081146122be576040519150601f19603f3d011682016040523d82523d6000602084013e6122c3565b606091505b5060008151036122ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036123a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b06000848385612106565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061242783612418600086600061210c565b6124218561251e565b17612134565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124c857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061248d565b5060008203612503576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612519600084838561215f565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61257781612542565b811461258257600080fd5b50565b6000813590506125948161256e565b92915050565b6000602082840312156125b0576125af612538565b5b60006125be84828501612585565b91505092915050565b60008115159050919050565b6125dc816125c7565b82525050565b60006020820190506125f760008301846125d3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263757808201518184015260208101905061261c565b60008484015250505050565b6000601f19601f8301169050919050565b600061265f826125fd565b6126698185612608565b9350612679818560208601612619565b61268281612643565b840191505092915050565b600060208201905081810360008301526126a78184612654565b905092915050565b6000819050919050565b6126c2816126af565b81146126cd57600080fd5b50565b6000813590506126df816126b9565b92915050565b6000602082840312156126fb576126fa612538565b5b6000612709848285016126d0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061273d82612712565b9050919050565b61274d81612732565b82525050565b60006020820190506127686000830184612744565b92915050565b61277781612732565b811461278257600080fd5b50565b6000813590506127948161276e565b92915050565b600080604083850312156127b1576127b0612538565b5b60006127bf85828601612785565b92505060206127d0858286016126d0565b9150509250929050565b6127e3816126af565b82525050565b60006020820190506127fe60008301846127da565b92915050565b60008060006060848603121561281d5761281c612538565b5b600061282b86828701612785565b935050602061283c86828701612785565b925050604061284d868287016126d0565b9150509250925092565b6000819050919050565b600061287c61287761287284612712565b612857565b612712565b9050919050565b600061288e82612861565b9050919050565b60006128a082612883565b9050919050565b6128b081612895565b82525050565b60006020820190506128cb60008301846128a7565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61291382612643565b810181811067ffffffffffffffff82111715612932576129316128db565b5b80604052505050565b600061294561252e565b9050612951828261290a565b919050565b600067ffffffffffffffff821115612971576129706128db565b5b61297a82612643565b9050602081019050919050565b82818337600083830152505050565b60006129a96129a484612956565b61293b565b9050828152602081018484840111156129c5576129c46128d6565b5b6129d0848285612987565b509392505050565b600082601f8301126129ed576129ec6128d1565b5b81356129fd848260208601612996565b91505092915050565b600060208284031215612a1c57612a1b612538565b5b600082013567ffffffffffffffff811115612a3a57612a3961253d565b5b612a46848285016129d8565b91505092915050565b600060208284031215612a6557612a64612538565b5b6000612a7384828501612785565b91505092915050565b612a85816125c7565b8114612a9057600080fd5b50565b600081359050612aa281612a7c565b92915050565b60008060408385031215612abf57612abe612538565b5b6000612acd85828601612785565b9250506020612ade85828601612a93565b9150509250929050565b600067ffffffffffffffff821115612b0357612b026128db565b5b612b0c82612643565b9050602081019050919050565b6000612b2c612b2784612ae8565b61293b565b905082815260208101848484011115612b4857612b476128d6565b5b612b53848285612987565b509392505050565b600082601f830112612b7057612b6f6128d1565b5b8135612b80848260208601612b19565b91505092915050565b60008060008060808587031215612ba357612ba2612538565b5b6000612bb187828801612785565b9450506020612bc287828801612785565b9350506040612bd3878288016126d0565b925050606085013567ffffffffffffffff811115612bf457612bf361253d565b5b612c0087828801612b5b565b91505092959194509250565b60008060408385031215612c2357612c22612538565b5b6000612c3185828601612785565b9250506020612c4285828601612785565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c9357607f821691505b602082108103612ca657612ca5612c4c565b5b50919050565b6000604082019050612cc16000830185612744565b612cce6020830184612744565b9392505050565b600081519050612ce481612a7c565b92915050565b600060208284031215612d0057612cff612538565b5b6000612d0e84828501612cd5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d51826126af565b9150612d5c836126af565b9250828201905080821115612d7457612d73612d17565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612db0600983612608565b9150612dbb82612d7a565b602082019050919050565b60006020820190508181036000830152612ddf81612da3565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e0b565b612e528683612e0b565b95508019841693508086168417925050509392505050565b6000612e85612e80612e7b846126af565b612857565b6126af565b9050919050565b6000819050919050565b612e9f83612e6a565b612eb3612eab82612e8c565b848454612e18565b825550505050565b600090565b612ec8612ebb565b612ed3818484612e96565b505050565b5b81811015612ef757612eec600082612ec0565b600181019050612ed9565b5050565b601f821115612f3c57612f0d81612de6565b612f1684612dfb565b81016020851015612f25578190505b612f39612f3185612dfb565b830182612ed8565b50505b505050565b600082821c905092915050565b6000612f5f60001984600802612f41565b1980831691505092915050565b6000612f788383612f4e565b9150826002028217905092915050565b612f91826125fd565b67ffffffffffffffff811115612faa57612fa96128db565b5b612fb48254612c7b565b612fbf828285612efb565b600060209050601f831160018114612ff25760008415612fe0578287015190505b612fea8582612f6c565b865550613052565b601f19841661300086612de6565b60005b8281101561302857848901518255600182019150602085019450602081019050613003565b868310156130455784890151613041601f891682612f4e565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613090601283612608565b915061309b8261305a565b602082019050919050565b600060208201905081810360008301526130bf81613083565b9050919050565b7f4578636565646564206d617820616c6c6f636174696f6e000000000000000000600082015250565b60006130fc601783612608565b9150613107826130c6565b602082019050919050565b6000602082019050818103600083015261312b816130ef565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613168600883612608565b915061317382613132565b602082019050919050565b600060208201905081810360008301526131978161315b565b9050919050565b60006131a9826126af565b91506131b4836126af565b92508282026131c2816126af565b915082820484148315176131d9576131d8612d17565b5b5092915050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b6000613216601083612608565b9150613221826131e0565b602082019050919050565b6000602082019050818103600083015261324581613209565b9050919050565b6000613257826126af565b9150613262836126af565b925082820390508181111561327a57613279612d17565b5b92915050565b600081905092915050565b6000613296826125fd565b6132a08185613280565b93506132b0818560208601612619565b80840191505092915050565b60006132c8828561328b565b91506132d4828461328b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061333c602683612608565b9150613347826132e0565b604082019050919050565b6000602082019050818103600083015261336b8161332f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133a8602083612608565b91506133b382613372565b602082019050919050565b600060208201905081810360008301526133d78161339b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613414601f83612608565b915061341f826133de565b602082019050919050565b6000602082019050818103600083015261344381613407565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134718261344a565b61347b8185613455565b935061348b818560208601612619565b61349481612643565b840191505092915050565b60006080820190506134b46000830187612744565b6134c16020830186612744565b6134ce60408301856127da565b81810360608301526134e08184613466565b905095945050505050565b6000815190506134fa8161256e565b92915050565b60006020828403121561351657613515612538565b5b6000613524848285016134eb565b9150509291505056fea26469706673582212200a9c7725401ef1bdd043bf0e8f772969183f9824c2002d5d561587591abc92ec64736f6c63430008110033697066733a2f2f516d4e4d64327031416b486e6e725a5259326e4a6d5a717151667343765536625573336b4d72664571784e6f32702f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063660bccc7116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146105f9578063daa81cdd14610624578063e985e9c51461064f578063f2fde38b1461068c576101cd565b8063a22cb4651461054c578063b88d4fde14610575578063bdb4b84814610591578063c87b56dd146105bc576101cd565b8063715018a6116100d1578063715018a6146104c85780637d8966e4146104df5780638da5cb5b146104f657806395d89b4114610521576101cd565b8063660bccc7146104445780636c0360eb1461046057806370a082311461048b576101cd565b80633b4c4b251161016f57806344a0d68a1161013e57806344a0d68a1461038a578063453c2310146103b357806355f804b3146103de5780636352211e14610407576101cd565b80633b4c4b25146103035780633ccfd60b1461032c57806341f434341461034357806342842e0e1461036e576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806323b872dd146102be5780632b7c6a9c146102da576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061259a565b6106b5565b60405161020691906125e2565b60405180910390f35b34801561021b57600080fd5b50610224610747565b604051610231919061268d565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906126e5565b6107d9565b60405161026e9190612753565b60405180910390f35b610291600480360381019061028c919061279a565b610858565b005b34801561029f57600080fd5b506102a8610962565b6040516102b591906127e9565b60405180910390f35b6102d860048036038101906102d39190612804565b610979565b005b3480156102e657600080fd5b5061030160048036038101906102fc91906126e5565b610ac9565b005b34801561030f57600080fd5b5061032a600480360381019061032591906126e5565b610b35565b005b34801561033857600080fd5b50610341610b47565b005b34801561034f57600080fd5b50610358610b98565b60405161036591906128b6565b60405180910390f35b61038860048036038101906103839190612804565b610baa565b005b34801561039657600080fd5b506103b160048036038101906103ac91906126e5565b610cfa565b005b3480156103bf57600080fd5b506103c8610d0c565b6040516103d591906127e9565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612a06565b610d12565b005b34801561041357600080fd5b5061042e600480360381019061042991906126e5565b610d2d565b60405161043b9190612753565b60405180910390f35b61045e600480360381019061045991906126e5565b610d3f565b005b34801561046c57600080fd5b50610475611043565b604051610482919061268d565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190612a4f565b6110d1565b6040516104bf91906127e9565b60405180910390f35b3480156104d457600080fd5b506104dd611189565b005b3480156104eb57600080fd5b506104f461119d565b005b34801561050257600080fd5b5061050b6111d1565b6040516105189190612753565b60405180910390f35b34801561052d57600080fd5b506105366111fb565b604051610543919061268d565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612aa8565b61128d565b005b61058f600480360381019061058a9190612b89565b611397565b005b34801561059d57600080fd5b506105a66114ea565b6040516105b391906127e9565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de91906126e5565b6114f0565b6040516105f0919061268d565b60405180910390f35b34801561060557600080fd5b5061060e61158e565b60405161061b91906127e9565b60405180910390f35b34801561063057600080fd5b50610639611594565b60405161064691906125e2565b60405180910390f35b34801561065b57600080fd5b5061067660048036038101906106719190612c0c565b6115a7565b60405161068391906125e2565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190612a4f565b61163b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461075690612c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612c7b565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e4826116be565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610953576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108d0929190612cac565b602060405180830381865afa1580156108ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109119190612cea565b61095257806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109499190612753565b60405180910390fd5b5b61095d838361171d565b505050565b600061096c611861565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ab7573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109eb576109e684848461186a565b610ac3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a34929190612cac565b602060405180830381865afa158015610a51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a759190612cea565b610ab657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610aad9190612753565b60405180910390fd5b5b610ac284848461186a565b5b50505050565b610ad1611b8c565b600a5481610add610962565b610ae79190612d46565b1115610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90612dc6565b60405180910390fd5b610b323382611c0a565b50565b610b3d611b8c565b80600a8190555050565b610b4f611b8c565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b95573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ce8573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c1c57610c17848484611c28565b610cf4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c65929190612cac565b602060405180830381865afa158015610c82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca69190612cea565b610ce757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610cde9190612753565b60405180910390fd5b5b610cf3848484611c28565b5b50505050565b610d02611b8c565b80600c8190555050565b600b5481565b610d1a611b8c565b80600e9081610d299190612f88565b5050565b6000610d3882611c48565b9050919050565b610d47611d14565b600d60009054906101000a900460ff16610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d906130a6565b60405180910390fd5b600b5481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610de49190612d46565b1115610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90613112565b60405180910390fd5b600a5481610e31610962565b610e3b9190612d46565b1115610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e739061317e565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f2357600c5481610edc919061319e565b341015610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f159061322c565b60405180910390fd5b610fd8565b600c54600182610f33919061324c565b610f3d919061319e565b341015610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f769061322c565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110279190612d46565b925050819055506110383382611c0a565b611040611d63565b50565b600e805461105090612c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461107c90612c7b565b80156110c95780601f1061109e576101008083540402835291602001916110c9565b820191906000526020600020905b8154815290600101906020018083116110ac57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611138576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611191611b8c565b61119b6000611d6d565b565b6111a5611b8c565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461120a90612c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461123690612c7b565b80156112835780601f1061125857610100808354040283529160200191611283565b820191906000526020600020905b81548152906001019060200180831161126657829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611388576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611305929190612cac565b602060405180830381865afa158015611322573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113469190612cea565b61138757806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161137e9190612753565b60405180910390fd5b5b6113928383611e33565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156114d6573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361140a5761140585858585611f3e565b6114e3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611453929190612cac565b602060405180830381865afa158015611470573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114949190612cea565b6114d557336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114cc9190612753565b60405180910390fd5b5b6114e285858585611f3e565b5b5050505050565b600c5481565b60606114fb826116be565b611531576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061153b611fb1565b9050600081510361155b5760405180602001604052806000815250611586565b8061156584612043565b6040516020016115769291906132bc565b6040516020818303038152906040525b915050919050565b600a5481565b600d60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611643611b8c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a990613352565b60405180910390fd5b6116bb81611d6d565b50565b6000816116c9611861565b111580156116d8575060005482105b8015611716575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061172882610d2d565b90508073ffffffffffffffffffffffffffffffffffffffff16611749612093565b73ffffffffffffffffffffffffffffffffffffffff16146117ac5761177581611770612093565b6115a7565b6117ab576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061187582611c48565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146118dc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806118e88461209b565b915091506118fe81876118f9612093565b6120c2565b61194a576119138661190e612093565b6115a7565b611949576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036119b0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119bd8686866001612106565b80156119c857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611a9685611a7288888761210c565b7c020000000000000000000000000000000000000000000000000000000017612134565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611b1c5760006001850190506000600460008381526020019081526020016000205403611b1a576000548114611b19578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b84868686600161215f565b505050505050565b611b94612165565b73ffffffffffffffffffffffffffffffffffffffff16611bb26111d1565b73ffffffffffffffffffffffffffffffffffffffff1614611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff906133be565b60405180910390fd5b565b611c2482826040518060200160405280600081525061216d565b5050565b611c4383838360405180602001604052806000815250611397565b505050565b60008082905080611c57611861565b11611cdd57600054811015611cdc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611cda575b60008103611cd0576004600083600190039350838152602001908152602001600020549050611ca6565b8092505050611d0f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600260095403611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d509061342a565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611e40612093565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611eed612093565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3291906125e2565b60405180910390a35050565b611f49848484610979565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fab57611f748484848461220a565b611faa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600e8054611fc090612c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054611fec90612c7b565b80156120395780601f1061200e57610100808354040283529160200191612039565b820191906000526020600020905b81548152906001019060200180831161201c57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561207e57600184039350600a81066030018453600a810490508061205c575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861212386868461235a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6121778383612363565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461220557600080549050600083820390505b6121b7600086838060010194508661220a565b6121ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121a457816000541461220257600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612230612093565b8786866040518563ffffffff1660e01b8152600401612252949392919061349f565b6020604051808303816000875af192505050801561228e57506040513d601f19601f8201168201806040525081019061228b9190613500565b60015b612307573d80600081146122be576040519150601f19603f3d011682016040523d82523d6000602084013e6122c3565b606091505b5060008151036122ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600080549050600082036123a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123b06000848385612106565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061242783612418600086600061210c565b6124218561251e565b17612134565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146124c857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061248d565b5060008203612503576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612519600084838561215f565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61257781612542565b811461258257600080fd5b50565b6000813590506125948161256e565b92915050565b6000602082840312156125b0576125af612538565b5b60006125be84828501612585565b91505092915050565b60008115159050919050565b6125dc816125c7565b82525050565b60006020820190506125f760008301846125d3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561263757808201518184015260208101905061261c565b60008484015250505050565b6000601f19601f8301169050919050565b600061265f826125fd565b6126698185612608565b9350612679818560208601612619565b61268281612643565b840191505092915050565b600060208201905081810360008301526126a78184612654565b905092915050565b6000819050919050565b6126c2816126af565b81146126cd57600080fd5b50565b6000813590506126df816126b9565b92915050565b6000602082840312156126fb576126fa612538565b5b6000612709848285016126d0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061273d82612712565b9050919050565b61274d81612732565b82525050565b60006020820190506127686000830184612744565b92915050565b61277781612732565b811461278257600080fd5b50565b6000813590506127948161276e565b92915050565b600080604083850312156127b1576127b0612538565b5b60006127bf85828601612785565b92505060206127d0858286016126d0565b9150509250929050565b6127e3816126af565b82525050565b60006020820190506127fe60008301846127da565b92915050565b60008060006060848603121561281d5761281c612538565b5b600061282b86828701612785565b935050602061283c86828701612785565b925050604061284d868287016126d0565b9150509250925092565b6000819050919050565b600061287c61287761287284612712565b612857565b612712565b9050919050565b600061288e82612861565b9050919050565b60006128a082612883565b9050919050565b6128b081612895565b82525050565b60006020820190506128cb60008301846128a7565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61291382612643565b810181811067ffffffffffffffff82111715612932576129316128db565b5b80604052505050565b600061294561252e565b9050612951828261290a565b919050565b600067ffffffffffffffff821115612971576129706128db565b5b61297a82612643565b9050602081019050919050565b82818337600083830152505050565b60006129a96129a484612956565b61293b565b9050828152602081018484840111156129c5576129c46128d6565b5b6129d0848285612987565b509392505050565b600082601f8301126129ed576129ec6128d1565b5b81356129fd848260208601612996565b91505092915050565b600060208284031215612a1c57612a1b612538565b5b600082013567ffffffffffffffff811115612a3a57612a3961253d565b5b612a46848285016129d8565b91505092915050565b600060208284031215612a6557612a64612538565b5b6000612a7384828501612785565b91505092915050565b612a85816125c7565b8114612a9057600080fd5b50565b600081359050612aa281612a7c565b92915050565b60008060408385031215612abf57612abe612538565b5b6000612acd85828601612785565b9250506020612ade85828601612a93565b9150509250929050565b600067ffffffffffffffff821115612b0357612b026128db565b5b612b0c82612643565b9050602081019050919050565b6000612b2c612b2784612ae8565b61293b565b905082815260208101848484011115612b4857612b476128d6565b5b612b53848285612987565b509392505050565b600082601f830112612b7057612b6f6128d1565b5b8135612b80848260208601612b19565b91505092915050565b60008060008060808587031215612ba357612ba2612538565b5b6000612bb187828801612785565b9450506020612bc287828801612785565b9350506040612bd3878288016126d0565b925050606085013567ffffffffffffffff811115612bf457612bf361253d565b5b612c0087828801612b5b565b91505092959194509250565b60008060408385031215612c2357612c22612538565b5b6000612c3185828601612785565b9250506020612c4285828601612785565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c9357607f821691505b602082108103612ca657612ca5612c4c565b5b50919050565b6000604082019050612cc16000830185612744565b612cce6020830184612744565b9392505050565b600081519050612ce481612a7c565b92915050565b600060208284031215612d0057612cff612538565b5b6000612d0e84828501612cd5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d51826126af565b9150612d5c836126af565b9250828201905080821115612d7457612d73612d17565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000612db0600983612608565b9150612dbb82612d7a565b602082019050919050565b60006020820190508181036000830152612ddf81612da3565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e0b565b612e528683612e0b565b95508019841693508086168417925050509392505050565b6000612e85612e80612e7b846126af565b612857565b6126af565b9050919050565b6000819050919050565b612e9f83612e6a565b612eb3612eab82612e8c565b848454612e18565b825550505050565b600090565b612ec8612ebb565b612ed3818484612e96565b505050565b5b81811015612ef757612eec600082612ec0565b600181019050612ed9565b5050565b601f821115612f3c57612f0d81612de6565b612f1684612dfb565b81016020851015612f25578190505b612f39612f3185612dfb565b830182612ed8565b50505b505050565b600082821c905092915050565b6000612f5f60001984600802612f41565b1980831691505092915050565b6000612f788383612f4e565b9150826002028217905092915050565b612f91826125fd565b67ffffffffffffffff811115612faa57612fa96128db565b5b612fb48254612c7b565b612fbf828285612efb565b600060209050601f831160018114612ff25760008415612fe0578287015190505b612fea8582612f6c565b865550613052565b601f19841661300086612de6565b60005b8281101561302857848901518255600182019150602085019450602081019050613003565b868310156130455784890151613041601f891682612f4e565b8355505b6001600288020188555050505b505050505050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613090601283612608565b915061309b8261305a565b602082019050919050565b600060208201905081810360008301526130bf81613083565b9050919050565b7f4578636565646564206d617820616c6c6f636174696f6e000000000000000000600082015250565b60006130fc601783612608565b9150613107826130c6565b602082019050919050565b6000602082019050818103600083015261312b816130ef565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613168600883612608565b915061317382613132565b602082019050919050565b600060208201905081810360008301526131978161315b565b9050919050565b60006131a9826126af565b91506131b4836126af565b92508282026131c2816126af565b915082820484148315176131d9576131d8612d17565b5b5092915050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b6000613216601083612608565b9150613221826131e0565b602082019050919050565b6000602082019050818103600083015261324581613209565b9050919050565b6000613257826126af565b9150613262836126af565b925082820390508181111561327a57613279612d17565b5b92915050565b600081905092915050565b6000613296826125fd565b6132a08185613280565b93506132b0818560208601612619565b80840191505092915050565b60006132c8828561328b565b91506132d4828461328b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061333c602683612608565b9150613347826132e0565b604082019050919050565b6000602082019050818103600083015261336b8161332f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133a8602083612608565b91506133b382613372565b602082019050919050565b600060208201905081810360008301526133d78161339b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613414601f83612608565b915061341f826133de565b602082019050919050565b6000602082019050818103600083015261344381613407565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134718261344a565b61347b8185613455565b935061348b818560208601612619565b61349481612643565b840191505092915050565b60006080820190506134b46000830187612744565b6134c16020830186612744565b6134ce60408301856127da565b81810360608301526134e08184613466565b905095945050505050565b6000815190506134fa8161256e565b92915050565b60006020828403121561351657613515612538565b5b6000613524848285016134eb565b9150509291505056fea26469706673582212200a9c7725401ef1bdd043bf0e8f772969183f9824c2002d5d561587591abc92ec64736f6c63430008110033

Deployed Bytecode Sourcemap

64872:3523:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25272:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26174:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32665:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67608:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21925:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67781:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66375:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67104:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67209:98;;;;;;;;;;;;;:::i;:::-;;4059:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67960:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67006:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65100:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66800:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27567:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65673:694;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65225:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23109:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64025:103;;;;;;;;;;;;;:::i;:::-;;66908:90;;;;;;;;;;;;;:::i;:::-;;63377:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26350:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67424:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68147:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65139:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26560:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65062:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65183:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33614:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64283:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25272:639;25357:4;25696:10;25681:25;;:11;:25;;;;:102;;;;25773:10;25758:25;;:11;:25;;;;25681:102;:179;;;;25850:10;25835:25;;:11;:25;;;;25681:179;25661:199;;25272:639;;;:::o;26174:100::-;26228:13;26261:5;26254:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26174:100;:::o;32665:218::-;32741:7;32766:16;32774:7;32766;:16::i;:::-;32761:64;;32791:34;;;;;;;;;;;;;;32761:64;32845:15;:24;32861:7;32845:24;;;;;;;;;;;:30;;;;;;;;;;;;32838:37;;32665:218;;;:::o;67608:165::-;67712:8;6101:1;4159:42;6053:45;;;:49;6049:225;;;4159:42;6124;;;6175:4;6182:8;6124:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6119:144;;6238:8;6219:28;;;;;;;;;;;:::i;:::-;;;;;;;;6119:144;6049:225;67733:32:::1;67747:8;67757:7;67733:13;:32::i;:::-;67608:165:::0;;;:::o;21925:323::-;21986:7;22214:15;:13;:15::i;:::-;22199:12;;22183:13;;:28;:46;22176:53;;21925:323;:::o;67781:171::-;67890:4;5355:1;4159:42;5307:45;;;:49;5303:539;;;5596:10;5588:18;;:4;:18;;;5584:85;;67907:37:::1;67926:4;67932:2;67936:7;67907:18;:37::i;:::-;5647:7:::0;;5584:85;4159:42;5688;;;5739:4;5746:10;5688:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5683:148;;5804:10;5785:30;;;;;;;;;;;:::i;:::-;;;;;;;;5683:148;5303:539;67907:37:::1;67926:4;67932:2;67936:7;67907:18;:37::i;:::-;67781:171:::0;;;;;:::o;66375:200::-;63263:13;:11;:13::i;:::-;66489:9:::1;;66474:11;66458:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;66450:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;66533:34;66543:10;66555:11;66533:9;:34::i;:::-;66375:200:::0;:::o;67104:97::-;63263:13;:11;:13::i;:::-;67184:9:::1;67172;:21;;;;67104:97:::0;:::o;67209:98::-;63263:13;:11;:13::i;:::-;67259:10:::1;67251:28;;:51;67280:21;67251:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;67209:98::o:0;4059:143::-;4159:42;4059:143;:::o;67960:179::-;68073:4;5355:1;4159:42;5307:45;;;:49;5303:539;;;5596:10;5588:18;;:4;:18;;;5584:85;;68090:41:::1;68113:4;68119:2;68123:7;68090:22;:41::i;:::-;5647:7:::0;;5584:85;4159:42;5688;;;5739:4;5746:10;5688:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5683:148;;5804:10;5785:30;;;;;;;;;;;:::i;:::-;;;;;;;;5683:148;5303:539;68090:41:::1;68113:4;68119:2;68123:7;68090:22;:41::i;:::-;67960:179:::0;;;;;:::o;67006:90::-;63263:13;:11;:13::i;:::-;67081:7:::1;67070:8;:18;;;;67006:90:::0;:::o;65100:32::-;;;;:::o;66800:100::-;63263:13;:11;:13::i;:::-;66884:8:::1;66874:7;:18;;;;;;:::i;:::-;;66800:100:::0;:::o;27567:152::-;27639:7;27682:27;27701:7;27682:18;:27::i;:::-;27659:52;;27567:152;;;:::o;65673:694::-;60648:21;:19;:21::i;:::-;65763:13:::1;;;;;;;;;;;65755:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;65862:12;;65848:10;65818:15;:27;65834:10;65818:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:56;;65810:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;65951:9;;65937:10;65921:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:39;;65913:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;65989:8;:20;65998:10;65989:20;;;;;;;;;;;;;;;;;;;;;;;;;65986:268;;;66060:8;;66047:10;:21;;;;:::i;:::-;66034:9;:34;;66026:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;65986:268;;;66171:8;;66166:1;66153:10;:14;;;;:::i;:::-;66152:27;;;;:::i;:::-;66139:9;:40;;66131:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;66238:4;66215:8;:20;66224:10;66215:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;65986:268;66305:10;66274:15;:27;66290:10;66274:27;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;66326:33;66336:10;66348;66326:9;:33::i;:::-;60692:20:::0;:18;:20::i;:::-;65673:694;:::o;65225:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23109:233::-;23181:7;23222:1;23205:19;;:5;:19;;;23201:60;;23233:28;;;;;;;;;;;;;;23201:60;17268:13;23279:18;:25;23298:5;23279:25;;;;;;;;;;;;;;;;:55;23272:62;;23109:233;;;:::o;64025:103::-;63263:13;:11;:13::i;:::-;64090:30:::1;64117:1;64090:18;:30::i;:::-;64025:103::o:0;66908:90::-;63263:13;:11;:13::i;:::-;66977::::1;;;;;;;;;;;66976:14;66960:13;;:30;;;;;;;;;;;;;;;;;;66908:90::o:0;63377:87::-;63423:7;63450:6;;;;;;;;;;;63443:13;;63377:87;:::o;26350:104::-;26406:13;26439:7;26432:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26350:104;:::o;67424:176::-;67528:8;6101:1;4159:42;6053:45;;;:49;6049:225;;;4159:42;6124;;;6175:4;6182:8;6124:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6119:144;;6238:8;6219:28;;;;;;;;;;;:::i;:::-;;;;;;;;6119:144;6049:225;67549:43:::1;67573:8;67583;67549:23;:43::i;:::-;67424:176:::0;;;:::o;68147:245::-;68315:4;5355:1;4159:42;5307:45;;;:49;5303:539;;;5596:10;5588:18;;:4;:18;;;5584:85;;68337:47:::1;68360:4;68366:2;68370:7;68379:4;68337:22;:47::i;:::-;5647:7:::0;;5584:85;4159:42;5688;;;5739:4;5746:10;5688:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5683:148;;5804:10;5785:30;;;;;;;;;;;:::i;:::-;;;;;;;;5683:148;5303:539;68337:47:::1;68360:4;68366:2;68370:7;68379:4;68337:22;:47::i;:::-;68147:245:::0;;;;;;:::o;65139:37::-;;;;:::o;26560:318::-;26633:13;26664:16;26672:7;26664;:16::i;:::-;26659:59;;26689:29;;;;;;;;;;;;;;26659:59;26731:21;26755:10;:8;:10::i;:::-;26731:34;;26808:1;26789:7;26783:21;:26;:87;;;;;;;;;;;;;;;;;26836:7;26845:18;26855:7;26845:9;:18::i;:::-;26819:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26783:87;26776:94;;;26560:318;;;:::o;65062:31::-;;;;:::o;65183:33::-;;;;;;;;;;;;;:::o;33614:164::-;33711:4;33735:18;:25;33754:5;33735:25;;;;;;;;;;;;;;;:35;33761:8;33735:35;;;;;;;;;;;;;;;;;;;;;;;;;33728:42;;33614:164;;;;:::o;64283:201::-;63263:13;:11;:13::i;:::-;64392:1:::1;64372:22;;:8;:22;;::::0;64364:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;64448:28;64467:8;64448:18;:28::i;:::-;64283:201:::0;:::o;34036:282::-;34101:4;34157:7;34138:15;:13;:15::i;:::-;:26;;:66;;;;;34191:13;;34181:7;:23;34138:66;:153;;;;;34290:1;18044:8;34242:17;:26;34260:7;34242:26;;;;;;;;;;;;:44;:49;34138:153;34118:173;;34036:282;;;:::o;32098:408::-;32187:13;32203:16;32211:7;32203;:16::i;:::-;32187:32;;32259:5;32236:28;;:19;:17;:19::i;:::-;:28;;;32232:175;;32284:44;32301:5;32308:19;:17;:19::i;:::-;32284:16;:44::i;:::-;32279:128;;32356:35;;;;;;;;;;;;;;32279:128;32232:175;32452:2;32419:15;:24;32435:7;32419:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32490:7;32486:2;32470:28;;32479:5;32470:28;;;;;;;;;;;;32176:330;32098:408;;:::o;65403:101::-;65468:7;65495:1;65488:8;;65403:101;:::o;36304:2825::-;36446:27;36476;36495:7;36476:18;:27::i;:::-;36446:57;;36561:4;36520:45;;36536:19;36520:45;;;36516:86;;36574:28;;;;;;;;;;;;;;36516:86;36616:27;36645:23;36672:35;36699:7;36672:26;:35::i;:::-;36615:92;;;;36807:68;36832:15;36849:4;36855:19;:17;:19::i;:::-;36807:24;:68::i;:::-;36802:180;;36895:43;36912:4;36918:19;:17;:19::i;:::-;36895:16;:43::i;:::-;36890:92;;36947:35;;;;;;;;;;;;;;36890:92;36802:180;37013:1;36999:16;;:2;:16;;;36995:52;;37024:23;;;;;;;;;;;;;;36995:52;37060:43;37082:4;37088:2;37092:7;37101:1;37060:21;:43::i;:::-;37196:15;37193:160;;;37336:1;37315:19;37308:30;37193:160;37733:18;:24;37752:4;37733:24;;;;;;;;;;;;;;;;37731:26;;;;;;;;;;;;37802:18;:22;37821:2;37802:22;;;;;;;;;;;;;;;;37800:24;;;;;;;;;;;38124:146;38161:2;38210:45;38225:4;38231:2;38235:19;38210:14;:45::i;:::-;18324:8;38182:73;38124:18;:146::i;:::-;38095:17;:26;38113:7;38095:26;;;;;;;;;;;:175;;;;38441:1;18324:8;38390:19;:47;:52;38386:627;;38463:19;38495:1;38485:7;:11;38463:33;;38652:1;38618:17;:30;38636:11;38618:30;;;;;;;;;;;;:35;38614:384;;38756:13;;38741:11;:28;38737:242;;38936:19;38903:17;:30;38921:11;38903:30;;;;;;;;;;;:52;;;;38737:242;38614:384;38444:569;38386:627;39060:7;39056:2;39041:27;;39050:4;39041:27;;;;;;;;;;;;39079:42;39100:4;39106:2;39110:7;39119:1;39079:20;:42::i;:::-;36435:2694;;;36304:2825;;;:::o;63542:132::-;63617:12;:10;:12::i;:::-;63606:23;;:7;:5;:7::i;:::-;:23;;;63598:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63542:132::o;50176:112::-;50253:27;50263:2;50267:8;50253:27;;;;;;;;;;;;:9;:27::i;:::-;50176:112;;:::o;39225:193::-;39371:39;39388:4;39394:2;39398:7;39371:39;;;;;;;;;;;;:16;:39::i;:::-;39225:193;;;:::o;28722:1275::-;28789:7;28809:12;28824:7;28809:22;;28892:4;28873:15;:13;:15::i;:::-;:23;28869:1061;;28926:13;;28919:4;:20;28915:1015;;;28964:14;28981:17;:23;28999:4;28981:23;;;;;;;;;;;;28964:40;;29098:1;18044:8;29070:6;:24;:29;29066:845;;29735:113;29752:1;29742:6;:11;29735:113;;29795:17;:25;29813:6;;;;;;;29795:25;;;;;;;;;;;;29786:34;;29735:113;;;29881:6;29874:13;;;;;;29066:845;28941:989;28915:1015;28869:1061;29958:31;;;;;;;;;;;;;;28722:1275;;;;:::o;60728:293::-;60130:1;60862:7;;:19;60854:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;60130:1;60995:7;:18;;;;60728:293::o;61029:213::-;60086:1;61212:7;:22;;;;61029:213::o;64644:191::-;64718:16;64737:6;;;;;;;;;;;64718:25;;64763:8;64754:6;;:17;;;;;;;;;;;;;;;;;;64818:8;64787:40;;64808:8;64787:40;;;;;;;;;;;;64707:128;64644:191;:::o;33223:234::-;33370:8;33318:18;:39;33337:19;:17;:19::i;:::-;33318:39;;;;;;;;;;;;;;;:49;33358:8;33318:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33430:8;33394:55;;33409:19;:17;:19::i;:::-;33394:55;;;33440:8;33394:55;;;;;;:::i;:::-;;;;;;;;33223:234;;:::o;40016:407::-;40191:31;40204:4;40210:2;40214:7;40191:12;:31::i;:::-;40255:1;40237:2;:14;;;:19;40233:183;;40276:56;40307:4;40313:2;40317:7;40326:5;40276:30;:56::i;:::-;40271:145;;40360:40;;;;;;;;;;;;;;40271:145;40233:183;40016:407;;;;:::o;66684:108::-;66744:13;66777:7;66770:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66684:108;:::o;56551:1745::-;56616:17;57050:4;57043;57037:11;57033:22;57142:1;57136:4;57129:15;57217:4;57214:1;57210:12;57203:19;;57299:1;57294:3;57287:14;57403:3;57642:5;57624:428;57650:1;57624:428;;;57690:1;57685:3;57681:11;57674:18;;57861:2;57855:4;57851:13;57847:2;57843:22;57838:3;57830:36;57955:2;57949:4;57945:13;57937:21;;58022:4;57624:428;58012:25;57624:428;57628:21;58091:3;58086;58082:13;58206:4;58201:3;58197:14;58190:21;;58271:6;58266:3;58259:19;56655:1634;;;56551:1745;;;:::o;56344:105::-;56404:7;56431:10;56424:17;;56344:105;:::o;35199:485::-;35301:27;35330:23;35371:38;35412:15;:24;35428:7;35412:24;;;;;;;;;;;35371:65;;35589:18;35566:41;;35646:19;35640:26;35621:45;;35551:126;35199:485;;;:::o;34427:659::-;34576:11;34741:16;34734:5;34730:28;34721:37;;34901:16;34890:9;34886:32;34873:45;;35051:15;35040:9;35037:30;35029:5;35018:9;35015:20;35012:56;35002:66;;34427:659;;;;;:::o;41085:159::-;;;;;:::o;55653:311::-;55788:7;55808:16;18448:3;55834:19;:41;;55808:68;;18448:3;55902:31;55913:4;55919:2;55923:9;55902:10;:31::i;:::-;55894:40;;:62;;55887:69;;;55653:311;;;;;:::o;30545:450::-;30625:14;30793:16;30786:5;30782:28;30773:37;;30970:5;30956:11;30931:23;30927:41;30924:52;30917:5;30914:63;30904:73;;30545:450;;;;:::o;41909:158::-;;;;;:::o;61928:98::-;61981:7;62008:10;62001:17;;61928:98;:::o;49403:689::-;49534:19;49540:2;49544:8;49534:5;:19::i;:::-;49613:1;49595:2;:14;;;:19;49591:483;;49635:11;49649:13;;49635:27;;49681:13;49703:8;49697:3;:14;49681:30;;49730:233;49761:62;49800:1;49804:2;49808:7;;;;;;49817:5;49761:30;:62::i;:::-;49756:167;;49859:40;;;;;;;;;;;;;;49756:167;49958:3;49950:5;:11;49730:233;;50045:3;50028:13;;:20;50024:34;;50050:8;;;50024:34;49616:458;;49591:483;49403:689;;;:::o;42507:716::-;42670:4;42716:2;42691:45;;;42737:19;:17;:19::i;:::-;42758:4;42764:7;42773:5;42691:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42687:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42991:1;42974:6;:13;:18;42970:235;;43020:40;;;;;;;;;;;;;;42970:235;43163:6;43157:13;43148:6;43144:2;43140:15;43133:38;42687:529;42860:54;;;42850:64;;;:6;:64;;;;42843:71;;;42507:716;;;;;;:::o;55354:147::-;55491:6;55354:147;;;;;:::o;43685:2966::-;43758:20;43781:13;;43758:36;;43821:1;43809:8;:13;43805:44;;43831:18;;;;;;;;;;;;;;43805:44;43862:61;43892:1;43896:2;43900:12;43914:8;43862:21;:61::i;:::-;44406:1;17406:2;44376:1;:26;;44375:32;44363:8;:45;44337:18;:22;44356:2;44337:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44685:139;44722:2;44776:33;44799:1;44803:2;44807:1;44776:14;:33::i;:::-;44743:30;44764:8;44743:20;:30::i;:::-;:66;44685:18;:139::i;:::-;44651:17;:31;44669:12;44651:31;;;;;;;;;;;:173;;;;44841:16;44872:11;44901:8;44886:12;:23;44872:37;;45422:16;45418:2;45414:25;45402:37;;45794:12;45754:8;45713:1;45651:25;45592:1;45531;45504:335;46165:1;46151:12;46147:20;46105:346;46206:3;46197:7;46194:16;46105:346;;46424:7;46414:8;46411:1;46384:25;46381:1;46378;46373:59;46259:1;46250:7;46246:15;46235:26;;46105:346;;;46109:77;46496:1;46484:8;:13;46480:45;;46506:19;;;;;;;;;;;;;;46480:45;46558:3;46542:13;:19;;;;44111:2462;;46583:60;46612:1;46616:2;46620:12;46634:8;46583:20;:60::i;:::-;43747:2904;43685:2966;;:::o;31097:324::-;31167:14;31400:1;31390:8;31387:15;31361:24;31357:46;31347:56;;31097:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:332::-;13722:4;13760:2;13749:9;13745:18;13737:26;;13773:71;13841:1;13830:9;13826:17;13817:6;13773:71;:::i;:::-;13854:72;13922:2;13911:9;13907:18;13898:6;13854:72;:::i;:::-;13601:332;;;;;:::o;13939:137::-;13993:5;14024:6;14018:13;14009:22;;14040:30;14064:5;14040:30;:::i;:::-;13939:137;;;;:::o;14082:345::-;14149:6;14198:2;14186:9;14177:7;14173:23;14169:32;14166:119;;;14204:79;;:::i;:::-;14166:119;14324:1;14349:61;14402:7;14393:6;14382:9;14378:22;14349:61;:::i;:::-;14339:71;;14295:125;14082:345;;;;:::o;14433:180::-;14481:77;14478:1;14471:88;14578:4;14575:1;14568:15;14602:4;14599:1;14592:15;14619:191;14659:3;14678:20;14696:1;14678:20;:::i;:::-;14673:25;;14712:20;14730:1;14712:20;:::i;:::-;14707:25;;14755:1;14752;14748:9;14741:16;;14776:3;14773:1;14770:10;14767:36;;;14783:18;;:::i;:::-;14767:36;14619:191;;;;:::o;14816:159::-;14956:11;14952:1;14944:6;14940:14;14933:35;14816:159;:::o;14981:365::-;15123:3;15144:66;15208:1;15203:3;15144:66;:::i;:::-;15137:73;;15219:93;15308:3;15219:93;:::i;:::-;15337:2;15332:3;15328:12;15321:19;;14981:365;;;:::o;15352:419::-;15518:4;15556:2;15545:9;15541:18;15533:26;;15605:9;15599:4;15595:20;15591:1;15580:9;15576:17;15569:47;15633:131;15759:4;15633:131;:::i;:::-;15625:139;;15352:419;;;:::o;15777:141::-;15826:4;15849:3;15841:11;;15872:3;15869:1;15862:14;15906:4;15903:1;15893:18;15885:26;;15777:141;;;:::o;15924:93::-;15961:6;16008:2;16003;15996:5;15992:14;15988:23;15978:33;;15924:93;;;:::o;16023:107::-;16067:8;16117:5;16111:4;16107:16;16086:37;;16023:107;;;;:::o;16136:393::-;16205:6;16255:1;16243:10;16239:18;16278:97;16308:66;16297:9;16278:97;:::i;:::-;16396:39;16426:8;16415:9;16396:39;:::i;:::-;16384:51;;16468:4;16464:9;16457:5;16453:21;16444:30;;16517:4;16507:8;16503:19;16496:5;16493:30;16483:40;;16212:317;;16136:393;;;;;:::o;16535:142::-;16585:9;16618:53;16636:34;16645:24;16663:5;16645:24;:::i;:::-;16636:34;:::i;:::-;16618:53;:::i;:::-;16605:66;;16535:142;;;:::o;16683:75::-;16726:3;16747:5;16740:12;;16683:75;;;:::o;16764:269::-;16874:39;16905:7;16874:39;:::i;:::-;16935:91;16984:41;17008:16;16984:41;:::i;:::-;16976:6;16969:4;16963:11;16935:91;:::i;:::-;16929:4;16922:105;16840:193;16764:269;;;:::o;17039:73::-;17084:3;17039:73;:::o;17118:189::-;17195:32;;:::i;:::-;17236:65;17294:6;17286;17280:4;17236:65;:::i;:::-;17171:136;17118:189;;:::o;17313:186::-;17373:120;17390:3;17383:5;17380:14;17373:120;;;17444:39;17481:1;17474:5;17444:39;:::i;:::-;17417:1;17410:5;17406:13;17397:22;;17373:120;;;17313:186;;:::o;17505:543::-;17606:2;17601:3;17598:11;17595:446;;;17640:38;17672:5;17640:38;:::i;:::-;17724:29;17742:10;17724:29;:::i;:::-;17714:8;17710:44;17907:2;17895:10;17892:18;17889:49;;;17928:8;17913:23;;17889:49;17951:80;18007:22;18025:3;18007:22;:::i;:::-;17997:8;17993:37;17980:11;17951:80;:::i;:::-;17610:431;;17595:446;17505:543;;;:::o;18054:117::-;18108:8;18158:5;18152:4;18148:16;18127:37;;18054:117;;;;:::o;18177:169::-;18221:6;18254:51;18302:1;18298:6;18290:5;18287:1;18283:13;18254:51;:::i;:::-;18250:56;18335:4;18329;18325:15;18315:25;;18228:118;18177:169;;;;:::o;18351:295::-;18427:4;18573:29;18598:3;18592:4;18573:29;:::i;:::-;18565:37;;18635:3;18632:1;18628:11;18622:4;18619:21;18611:29;;18351:295;;;;:::o;18651:1395::-;18768:37;18801:3;18768:37;:::i;:::-;18870:18;18862:6;18859:30;18856:56;;;18892:18;;:::i;:::-;18856:56;18936:38;18968:4;18962:11;18936:38;:::i;:::-;19021:67;19081:6;19073;19067:4;19021:67;:::i;:::-;19115:1;19139:4;19126:17;;19171:2;19163:6;19160:14;19188:1;19183:618;;;;19845:1;19862:6;19859:77;;;19911:9;19906:3;19902:19;19896:26;19887:35;;19859:77;19962:67;20022:6;20015:5;19962:67;:::i;:::-;19956:4;19949:81;19818:222;19153:887;;19183:618;19235:4;19231:9;19223:6;19219:22;19269:37;19301:4;19269:37;:::i;:::-;19328:1;19342:208;19356:7;19353:1;19350:14;19342:208;;;19435:9;19430:3;19426:19;19420:26;19412:6;19405:42;19486:1;19478:6;19474:14;19464:24;;19533:2;19522:9;19518:18;19505:31;;19379:4;19376:1;19372:12;19367:17;;19342:208;;;19578:6;19569:7;19566:19;19563:179;;;19636:9;19631:3;19627:19;19621:26;19679:48;19721:4;19713:6;19709:17;19698:9;19679:48;:::i;:::-;19671:6;19664:64;19586:156;19563:179;19788:1;19784;19776:6;19772:14;19768:22;19762:4;19755:36;19190:611;;;19153:887;;18743:1303;;;18651:1395;;:::o;20052:168::-;20192:20;20188:1;20180:6;20176:14;20169:44;20052:168;:::o;20226:366::-;20368:3;20389:67;20453:2;20448:3;20389:67;:::i;:::-;20382:74;;20465:93;20554:3;20465:93;:::i;:::-;20583:2;20578:3;20574:12;20567:19;;20226:366;;;:::o;20598:419::-;20764:4;20802:2;20791:9;20787:18;20779:26;;20851:9;20845:4;20841:20;20837:1;20826:9;20822:17;20815:47;20879:131;21005:4;20879:131;:::i;:::-;20871:139;;20598:419;;;:::o;21023:173::-;21163:25;21159:1;21151:6;21147:14;21140:49;21023:173;:::o;21202:366::-;21344:3;21365:67;21429:2;21424:3;21365:67;:::i;:::-;21358:74;;21441:93;21530:3;21441:93;:::i;:::-;21559:2;21554:3;21550:12;21543:19;;21202:366;;;:::o;21574:419::-;21740:4;21778:2;21767:9;21763:18;21755:26;;21827:9;21821:4;21817:20;21813:1;21802:9;21798:17;21791:47;21855:131;21981:4;21855:131;:::i;:::-;21847:139;;21574:419;;;:::o;21999:158::-;22139:10;22135:1;22127:6;22123:14;22116:34;21999:158;:::o;22163:365::-;22305:3;22326:66;22390:1;22385:3;22326:66;:::i;:::-;22319:73;;22401:93;22490:3;22401:93;:::i;:::-;22519:2;22514:3;22510:12;22503:19;;22163:365;;;:::o;22534:419::-;22700:4;22738:2;22727:9;22723:18;22715:26;;22787:9;22781:4;22777:20;22773:1;22762:9;22758:17;22751:47;22815:131;22941:4;22815:131;:::i;:::-;22807:139;;22534:419;;;:::o;22959:410::-;22999:7;23022:20;23040:1;23022:20;:::i;:::-;23017:25;;23056:20;23074:1;23056:20;:::i;:::-;23051:25;;23111:1;23108;23104:9;23133:30;23151:11;23133:30;:::i;:::-;23122:41;;23312:1;23303:7;23299:15;23296:1;23293:22;23273:1;23266:9;23246:83;23223:139;;23342:18;;:::i;:::-;23223:139;23007:362;22959:410;;;;:::o;23375:166::-;23515:18;23511:1;23503:6;23499:14;23492:42;23375:166;:::o;23547:366::-;23689:3;23710:67;23774:2;23769:3;23710:67;:::i;:::-;23703:74;;23786:93;23875:3;23786:93;:::i;:::-;23904:2;23899:3;23895:12;23888:19;;23547:366;;;:::o;23919:419::-;24085:4;24123:2;24112:9;24108:18;24100:26;;24172:9;24166:4;24162:20;24158:1;24147:9;24143:17;24136:47;24200:131;24326:4;24200:131;:::i;:::-;24192:139;;23919:419;;;:::o;24344:194::-;24384:4;24404:20;24422:1;24404:20;:::i;:::-;24399:25;;24438:20;24456:1;24438:20;:::i;:::-;24433:25;;24482:1;24479;24475:9;24467:17;;24506:1;24500:4;24497:11;24494:37;;;24511:18;;:::i;:::-;24494:37;24344:194;;;;:::o;24544:148::-;24646:11;24683:3;24668:18;;24544:148;;;;:::o;24698:390::-;24804:3;24832:39;24865:5;24832:39;:::i;:::-;24887:89;24969:6;24964:3;24887:89;:::i;:::-;24880:96;;24985:65;25043:6;25038:3;25031:4;25024:5;25020:16;24985:65;:::i;:::-;25075:6;25070:3;25066:16;25059:23;;24808:280;24698:390;;;;:::o;25094:435::-;25274:3;25296:95;25387:3;25378:6;25296:95;:::i;:::-;25289:102;;25408:95;25499:3;25490:6;25408:95;:::i;:::-;25401:102;;25520:3;25513:10;;25094:435;;;;;:::o;25535:225::-;25675:34;25671:1;25663:6;25659:14;25652:58;25744:8;25739:2;25731:6;25727:15;25720:33;25535:225;:::o;25766:366::-;25908:3;25929:67;25993:2;25988:3;25929:67;:::i;:::-;25922:74;;26005:93;26094:3;26005:93;:::i;:::-;26123:2;26118:3;26114:12;26107:19;;25766:366;;;:::o;26138:419::-;26304:4;26342:2;26331:9;26327:18;26319:26;;26391:9;26385:4;26381:20;26377:1;26366:9;26362:17;26355:47;26419:131;26545:4;26419:131;:::i;:::-;26411:139;;26138:419;;;:::o;26563:182::-;26703:34;26699:1;26691:6;26687:14;26680:58;26563:182;:::o;26751:366::-;26893:3;26914:67;26978:2;26973:3;26914:67;:::i;:::-;26907:74;;26990:93;27079:3;26990:93;:::i;:::-;27108:2;27103:3;27099:12;27092:19;;26751:366;;;:::o;27123:419::-;27289:4;27327:2;27316:9;27312:18;27304:26;;27376:9;27370:4;27366:20;27362:1;27351:9;27347:17;27340:47;27404:131;27530:4;27404:131;:::i;:::-;27396:139;;27123:419;;;:::o;27548:181::-;27688:33;27684:1;27676:6;27672:14;27665:57;27548:181;:::o;27735:366::-;27877:3;27898:67;27962:2;27957:3;27898:67;:::i;:::-;27891:74;;27974:93;28063:3;27974:93;:::i;:::-;28092:2;28087:3;28083:12;28076:19;;27735:366;;;:::o;28107:419::-;28273:4;28311:2;28300:9;28296:18;28288:26;;28360:9;28354:4;28350:20;28346:1;28335:9;28331:17;28324:47;28388:131;28514:4;28388:131;:::i;:::-;28380:139;;28107:419;;;:::o;28532:98::-;28583:6;28617:5;28611:12;28601:22;;28532:98;;;:::o;28636:168::-;28719:11;28753:6;28748:3;28741:19;28793:4;28788:3;28784:14;28769:29;;28636:168;;;;:::o;28810:373::-;28896:3;28924:38;28956:5;28924:38;:::i;:::-;28978:70;29041:6;29036:3;28978:70;:::i;:::-;28971:77;;29057:65;29115:6;29110:3;29103:4;29096:5;29092:16;29057:65;:::i;:::-;29147:29;29169:6;29147:29;:::i;:::-;29142:3;29138:39;29131:46;;28900:283;28810:373;;;;:::o;29189:640::-;29384:4;29422:3;29411:9;29407:19;29399:27;;29436:71;29504:1;29493:9;29489:17;29480:6;29436:71;:::i;:::-;29517:72;29585:2;29574:9;29570:18;29561:6;29517:72;:::i;:::-;29599;29667:2;29656:9;29652:18;29643:6;29599:72;:::i;:::-;29718:9;29712:4;29708:20;29703:2;29692:9;29688:18;29681:48;29746:76;29817:4;29808:6;29746:76;:::i;:::-;29738:84;;29189:640;;;;;;;:::o;29835:141::-;29891:5;29922:6;29916:13;29907:22;;29938:32;29964:5;29938:32;:::i;:::-;29835:141;;;;:::o;29982:349::-;30051:6;30100:2;30088:9;30079:7;30075:23;30071:32;30068:119;;;30106:79;;:::i;:::-;30068:119;30226:1;30251:63;30306:7;30297:6;30286:9;30282:22;30251:63;:::i;:::-;30241:73;;30197:127;29982:349;;;;:::o

Swarm Source

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