ETH Price: $3,498.16 (+6.67%)
Gas: 8 Gwei

Token

The Sanctum-Dorm Rooms (Dorm Rooms)
 

Overview

Max Total Supply

2,000 Dorm Rooms

Holders

723

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
magickof.eth
Balance
3 Dorm Rooms
0x31f09c232b026c26183891e39346ce39f905f8d1
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:
TheSanctum_DormRooms

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
/* _____ _            ____                   _                   
|_   _| |__   ___  / ___|  __ _ _ __   ___| |_ _   _ _ __ ___  
  | | | '_ \ / _ \ \___ \ / _` | '_ \ / __| __| | | | '_ ` _ \ 
  | | | | | |  __/  ___) | (_| | | | | (__| |_| |_| | | | | | |
  |_| |_| |_|\___| |____/ \__,_|_| |_|\___|\__|\__,_|_| |_| |_|
*/


// File: contracts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

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

// File: contracts/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        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(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).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 (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721A.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override onlyAllowedOperator(from){
        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 onlyAllowedOperator(from){
        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 onlyAllowedOperator(from){
        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: contracts/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}
// File: contracts/Strings.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}
// File: contracts/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: contracts/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);
    }
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function ownerOf(uint tokenid) external view returns (address);
}


pragma solidity ^0.8.7;


contract TheSanctum_DormRooms is ERC721A, Ownable{

    using Strings for uint256;
     uint public tokenPrice = 0.3 ether;
    uint constant maxSupply = 10000;
    address public Sanctumaddress=0xB51288949949cad824B958BC34946B77A245B7aE;
    bool public public_sale_status = false;
    string public baseURI;
    
    uint public maxPerTransaction = 5;  //Max Limit for Sale
    uint public maxPerWallet = 5; //Max Limit for Presale
  
         
    constructor() ERC721A("The Sanctum-Dorm Rooms", "Dorm Rooms"){
  
    }

function Initialize_Airdrop(uint start, uint end) external onlyOwner{
    for(uint i=start; i<=end; i++)
    {
         IERC20 tokenob = IERC20(Sanctumaddress);
         _safeMint(tokenob.ownerOf(i), 1);

    }

}
   function buy(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= maxPerTransaction, "max per transaction 5");
        require(totalSupply() + _count <= maxSupply, "Not enough tokens left");
        require(balanceOf(msg.sender) + _count <= maxPerWallet, "Not allowed in presale");
        require(msg.value >= tokenPrice * _count, "incorrect ether amount");
        require(public_sale_status == true, "Sale is Paused.");
       
       _safeMint(msg.sender, _count);
    }


  function adminMint(uint _count) external onlyOwner{
        require(_count > 0, "mint at least one token");
        require(totalSupply() + _count <= maxSupply, "Sold Out!");
        _safeMint(msg.sender, _count);
    }

    function sendGifts(address[] memory _wallets) public onlyOwner{
        require(totalSupply() + _wallets.length <= maxSupply, "Sold Out!");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1);
    }

      function is_sale_active() public view returns(uint){
      require(public_sale_status == true,"Sale not Started Yet.");
        return 1;
     }
 
     function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    //return uri for certain token
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : "";
    }

    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
  
    function publicSale_status(bool temp) external onlyOwner {
        public_sale_status = temp;
    }
    

     function public_sale_price(uint pr) external onlyOwner {
        tokenPrice = pr;
    }
     function update_sanctum_address(address pr) external onlyOwner {
        Sanctumaddress = pr;
    }
  
  function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"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":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"Initialize_Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Sanctumaddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","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":"is_sale_active","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"publicSale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pr","type":"uint256"}],"name":"public_sale_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"public_sale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","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":"_uri","type":"string"}],"name":"setBaseUri","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":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pr","type":"address"}],"name":"update_sanctum_address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052670429d069189e000060095573b51288949949cad824b958bc34946b77a245b7ae600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60146101000a81548160ff0219169083151502179055506005600c556005600d553480156200009757600080fd5b506040518060400160405280601681526020017f5468652053616e6374756d2d446f726d20526f6f6d73000000000000000000008152506040518060400160405280600a81526020017f446f726d20526f6f6d7300000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000310578015620001d6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200019c92919062000490565b600060405180830381600087803b158015620001b757600080fd5b505af1158015620001cc573d6000803e3d6000fd5b505050506200030f565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000290576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200025692919062000490565b600060405180830381600087803b1580156200027157600080fd5b505af115801562000286573d6000803e3d6000fd5b505050506200030e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002d99190620004bd565b600060405180830381600087803b158015620002f457600080fd5b505af115801562000309573d6000803e3d6000fd5b505050505b5b5b5050816002908162000323919062000754565b50806003908162000335919062000754565b50620003466200037460201b60201c565b60008190555050506200036e620003626200037d60201b60201c565b6200038560201b60201c565b6200083b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000478826200044b565b9050919050565b6200048a816200046b565b82525050565b6000604082019050620004a760008301856200047f565b620004b660208301846200047f565b9392505050565b6000602082019050620004d460008301846200047f565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200055c57607f821691505b60208210810362000572576200057162000514565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005dc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200059d565b620005e886836200059d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006356200062f620006298462000600565b6200060a565b62000600565b9050919050565b6000819050919050565b620006518362000614565b6200066962000660826200063c565b848454620005aa565b825550505050565b600090565b6200068062000671565b6200068d81848462000646565b505050565b5b81811015620006b557620006a960008262000676565b60018101905062000693565b5050565b601f8211156200070457620006ce8162000578565b620006d9846200058d565b81016020851015620006e9578190505b62000701620006f8856200058d565b83018262000692565b50505b505050565b600082821c905092915050565b6000620007296000198460080262000709565b1980831691505092915050565b600062000744838362000716565b9150826002028217905092915050565b6200075f82620004da565b67ffffffffffffffff8111156200077b576200077a620004e5565b5b62000787825462000543565b62000794828285620006b9565b600060209050601f831160018114620007cc5760008415620007b7578287015190505b620007c3858262000736565b86555062000833565b601f198416620007dc8662000578565b60005b828110156200080657848901518255600182019150602085019450602081019050620007df565b8683101562000826578489015162000822601f89168262000716565b8355505b6001600288020188555050505b505050505050565b613f4b806200084b6000396000f3fe6080604052600436106101ee5760003560e01c80637c8255db1161010d578063b88d4fde116100a0578063c87b56dd1161006f578063c87b56dd1461067b578063cd7de458146106b8578063d96a094a146106e3578063e985e9c5146106ff578063f2fde38b1461073c576101ee565b8063b88d4fde146105e2578063be90e5f4146105fe578063c1f2612314610629578063c72fd0f214610652576101ee565b806395d89b41116100dc57806395d89b411461053a57806395ea5e6714610565578063a0bcfc7f14610590578063a22cb465146105b9576101ee565b80637c8255db146104925780637ff9b596146104bb5780638154ecee146104e65780638da5cb5b1461050f576101ee565b806342842e0e116101855780636352211e116101545780636352211e146103d65780636c0360eb1461041357806370a082311461043e578063715018a61461047b576101ee565b806342842e0e1461033b578063453c2310146103575780634b980d67146103825780635fce9412146103ad576101ee565b806318160ddd116101c157806318160ddd146102b45780631cef37e4146102df57806323b872dd146103085780633ccfd60b14610324576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612b7c565b610765565b6040516102279190612bc4565b60405180910390f35b34801561023c57600080fd5b506102456107f7565b6040516102529190612c6f565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612cc7565b610889565b60405161028f9190612d35565b60405180910390f35b6102b260048036038101906102ad9190612d7c565b610908565b005b3480156102c057600080fd5b506102c9610a4c565b6040516102d69190612dcb565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612e12565b610a63565b005b610322600480360381019061031d9190612e3f565b610a88565b005b34801561033057600080fd5b5061033961128e565b005b61035560048036038101906103509190612e3f565b6112e6565b005b34801561036357600080fd5b5061036c6114e8565b6040516103799190612dcb565b60405180910390f35b34801561038e57600080fd5b506103976114ee565b6040516103a49190612dcb565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190612e92565b6114f4565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190612cc7565b6115cd565b60405161040a9190612d35565b60405180910390f35b34801561041f57600080fd5b506104286115df565b6040516104359190612c6f565b60405180910390f35b34801561044a57600080fd5b5061046560048036038101906104609190612ed2565b61166d565b6040516104729190612dcb565b60405180910390f35b34801561048757600080fd5b50610490611725565b005b34801561049e57600080fd5b506104b960048036038101906104b49190613047565b611739565b005b3480156104c757600080fd5b506104d06117e1565b6040516104dd9190612dcb565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190612cc7565b6117e7565b005b34801561051b57600080fd5b506105246117f9565b6040516105319190612d35565b60405180910390f35b34801561054657600080fd5b5061054f611823565b60405161055c9190612c6f565b60405180910390f35b34801561057157600080fd5b5061057a6118b5565b6040516105879190612bc4565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190613145565b6118c8565b005b3480156105c557600080fd5b506105e060048036038101906105db919061318e565b6118e3565b005b6105fc60048036038101906105f7919061326f565b6119ee565b005b34801561060a57600080fd5b50610613611c95565b6040516106209190612d35565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190612cc7565b611cbb565b005b34801561065e57600080fd5b5061067960048036038101906106749190612ed2565b611d6a565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612cc7565b611db6565b6040516106af9190612c6f565b60405180910390f35b3480156106c457600080fd5b506106cd611e5e565b6040516106da9190612dcb565b60405180910390f35b6106fd60048036038101906106f89190612cc7565b611ebd565b005b34801561070b57600080fd5b50610726600480360381019061072191906132f2565b6120a7565b6040516107339190612bc4565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190612ed2565b61213b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080690613361565b80601f016020809104026020016040519081016040528092919081815260200182805461083290613361565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b6000610894826121be565b6108ca576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610913826115cd565b90508073ffffffffffffffffffffffffffffffffffffffff1661093461221d565b73ffffffffffffffffffffffffffffffffffffffff1614610997576109608161095b61221d565b6120a7565b610996576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a56612225565b6001546000540303905090565b610a6b61222e565b80600a60146101000a81548160ff02191690831515021790555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f6a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e0c576000610af5836122ac565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6885612378565b91509150610b7e8188610b7961221d565b61239f565b610bca57610b9387610b8e61221d565b6120a7565b610bc9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603610c30576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3d87878760016123e3565b8015610c4857600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1686610cf28989876123e9565b7c020000000000000000000000000000000000000000000000000000000017612411565b600460008781526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d9c5760006001860190506000600460008381526020019081526020016000205403610d9a576000548114610d99578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e04878787600161243c565b505050611288565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e55929190613392565b602060405180830381865afa158015610e72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9691906133d0565b8015610f2857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ee6929190613392565b602060405180830381865afa158015610f03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2791906133d0565b5b610f6957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f609190612d35565b60405180910390fd5b5b6000610f75836122ac565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fe885612378565b91509150610ffe8188610ff961221d565b61239f565b61104a576110138761100e61221d565b6120a7565b611049576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036110b0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110bd87878760016123e3565b80156110c857600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611196866111728989876123e9565b7c020000000000000000000000000000000000000000000000000000000017612411565b600460008781526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361121c576000600186019050600060046000838152602001908152602001600020540361121a576000548114611219578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611284878787600161243c565b5050505b50505050565b61129661222e565b61129e6117f9565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156112e3573d6000803e3d6000fd5b50565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156114c6573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361136857611363848484604051806020016040528060008152506119ee565b6114e2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016113b1929190613392565b602060405180830381865afa1580156113ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f291906133d0565b801561148457506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611442929190613392565b602060405180830381865afa15801561145f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148391906133d0565b5b6114c557336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114bc9190612d35565b60405180910390fd5b5b6114e1848484604051806020016040528060008152506119ee565b5b50505050565b600d5481565b600c5481565b6114fc61222e565b60008290505b8181116115c8576000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506115b48173ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b815260040161156c9190612dcb565b602060405180830381865afa158015611589573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ad9190613412565b6001612442565b5080806115c09061346e565b915050611502565b505050565b60006115d8826122ac565b9050919050565b600b80546115ec90613361565b80601f016020809104026020016040519081016040528092919081815260200182805461161890613361565b80156116655780601f1061163a57610100808354040283529160200191611665565b820191906000526020600020905b81548152906001019060200180831161164857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116d4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61172d61222e565b6117376000612460565b565b61174161222e565b612710815161174e610a4c565b61175891906134b6565b1115611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090613536565b60405180910390fd5b60005b81518110156117dd576117ca8282815181106117bb576117ba613556565b5b60200260200101516001612442565b80806117d59061346e565b91505061179c565b5050565b60095481565b6117ef61222e565b8060098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461183290613361565b80601f016020809104026020016040519081016040528092919081815260200182805461185e90613361565b80156118ab5780601f10611880576101008083540402835291602001916118ab565b820191906000526020600020905b81548152906001019060200180831161188e57829003601f168201915b5050505050905090565b600a60149054906101000a900460ff1681565b6118d061222e565b80600b90816118df9190613731565b5050565b80600760006118f061221d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661199d61221d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119e29190612bc4565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611c20573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ac257611a5b858585610a88565b60008473ffffffffffffffffffffffffffffffffffffffff163b14611abd57611a8685858585612526565b611abc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b611c8e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611b0b929190613392565b602060405180830381865afa158015611b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4c91906133d0565b8015611bde57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b9c929190613392565b602060405180830381865afa158015611bb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdd91906133d0565b5b611c1f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c169190612d35565b60405180910390fd5b5b611c2b858585610a88565b60008473ffffffffffffffffffffffffffffffffffffffff163b14611c8d57611c5685858585612526565b611c8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b5050505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611cc361222e565b60008111611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd9061384f565b60405180910390fd5b61271081611d12610a4c565b611d1c91906134b6565b1115611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5490613536565b60405180910390fd5b611d673382612442565b50565b611d7261222e565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060611dc1826121be565b611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df7906138e1565b60405180910390fd5b6000600b8054611e0f90613361565b905011611e2b5760405180602001604052806000815250611e57565b600b611e3683612676565b604051602001611e47929190613a0c565b6040516020818303038152906040525b9050919050565b600060011515600a60149054906101000a900460ff16151514611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613a87565b60405180910390fd5b6001905090565b60008111611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef79061384f565b60405180910390fd5b600c54811115611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c90613af3565b60405180910390fd5b61271081611f51610a4c565b611f5b91906134b6565b1115611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390613b5f565b60405180910390fd5b600d5481611fa93361166d565b611fb391906134b6565b1115611ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611feb90613bcb565b60405180910390fd5b806009546120029190613beb565b341015612044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203b90613c79565b60405180910390fd5b60011515600a60149054906101000a900460ff1615151461209a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209190613ce5565b60405180910390fd5b6120a43382612442565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61214361222e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a990613d77565b60405180910390fd5b6121bb81612460565b50565b6000816121c9612225565b111580156121d8575060005482105b8015612216575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b612236612744565b73ffffffffffffffffffffffffffffffffffffffff166122546117f9565b73ffffffffffffffffffffffffffffffffffffffff16146122aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a190613de3565b60405180910390fd5b565b600080829050806122bb612225565b11612341576000548110156123405760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361233e575b6000810361233457600460008360019003935083815260200190815260200160002054905061230a565b8092505050612373565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861240086868461274c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61245c828260405180602001604052806000815250612755565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261254c61221d565b8786866040518563ffffffff1660e01b815260040161256e9493929190613e58565b6020604051808303816000875af19250505080156125aa57506040513d601f19601f820116820180604052508101906125a79190613eb9565b60015b612623573d80600081146125da576040519150601f19603f3d011682016040523d82523d6000602084013e6125df565b606091505b50600081510361261b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001612685846127f2565b01905060008167ffffffffffffffff8111156126a4576126a3612f04565b5b6040519080825280601f01601f1916602001820160405280156126d65781602001600182028036833780820191505090505b509050600082602001820190505b600115612739578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161272d5761272c613ee6565b5b049450600085036126e4575b819350505050919050565b600033905090565b60009392505050565b61275f8383612945565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127ed57600080549050600083820390505b61279f6000868380600101945086612526565b6127d5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061278c5781600054146127ea57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612850577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161284657612845613ee6565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061288d576d04ee2d6d415b85acef8100000000838161288357612882613ee6565b5b0492506020810190505b662386f26fc1000083106128bc57662386f26fc1000083816128b2576128b1613ee6565b5b0492506010810190505b6305f5e10083106128e5576305f5e10083816128db576128da613ee6565b5b0492506008810190505b612710831061290a576127108381612900576128ff613ee6565b5b0492506004810190505b6064831061292d576064838161292357612922613ee6565b5b0492506002810190505b600a831061293c576001810190505b80915050919050565b60008054905060008203612985576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61299260008483856123e3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612a09836129fa60008660006123e9565b612a0385612b00565b17612411565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612aaa57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612a6f565b5060008203612ae5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612afb600084838561243c565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b5981612b24565b8114612b6457600080fd5b50565b600081359050612b7681612b50565b92915050565b600060208284031215612b9257612b91612b1a565b5b6000612ba084828501612b67565b91505092915050565b60008115159050919050565b612bbe81612ba9565b82525050565b6000602082019050612bd96000830184612bb5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c19578082015181840152602081019050612bfe565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c4182612bdf565b612c4b8185612bea565b9350612c5b818560208601612bfb565b612c6481612c25565b840191505092915050565b60006020820190508181036000830152612c898184612c36565b905092915050565b6000819050919050565b612ca481612c91565b8114612caf57600080fd5b50565b600081359050612cc181612c9b565b92915050565b600060208284031215612cdd57612cdc612b1a565b5b6000612ceb84828501612cb2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d1f82612cf4565b9050919050565b612d2f81612d14565b82525050565b6000602082019050612d4a6000830184612d26565b92915050565b612d5981612d14565b8114612d6457600080fd5b50565b600081359050612d7681612d50565b92915050565b60008060408385031215612d9357612d92612b1a565b5b6000612da185828601612d67565b9250506020612db285828601612cb2565b9150509250929050565b612dc581612c91565b82525050565b6000602082019050612de06000830184612dbc565b92915050565b612def81612ba9565b8114612dfa57600080fd5b50565b600081359050612e0c81612de6565b92915050565b600060208284031215612e2857612e27612b1a565b5b6000612e3684828501612dfd565b91505092915050565b600080600060608486031215612e5857612e57612b1a565b5b6000612e6686828701612d67565b9350506020612e7786828701612d67565b9250506040612e8886828701612cb2565b9150509250925092565b60008060408385031215612ea957612ea8612b1a565b5b6000612eb785828601612cb2565b9250506020612ec885828601612cb2565b9150509250929050565b600060208284031215612ee857612ee7612b1a565b5b6000612ef684828501612d67565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f3c82612c25565b810181811067ffffffffffffffff82111715612f5b57612f5a612f04565b5b80604052505050565b6000612f6e612b10565b9050612f7a8282612f33565b919050565b600067ffffffffffffffff821115612f9a57612f99612f04565b5b602082029050602081019050919050565b600080fd5b6000612fc3612fbe84612f7f565b612f64565b90508083825260208201905060208402830185811115612fe657612fe5612fab565b5b835b8181101561300f5780612ffb8882612d67565b845260208401935050602081019050612fe8565b5050509392505050565b600082601f83011261302e5761302d612eff565b5b813561303e848260208601612fb0565b91505092915050565b60006020828403121561305d5761305c612b1a565b5b600082013567ffffffffffffffff81111561307b5761307a612b1f565b5b61308784828501613019565b91505092915050565b600080fd5b600067ffffffffffffffff8211156130b0576130af612f04565b5b6130b982612c25565b9050602081019050919050565b82818337600083830152505050565b60006130e86130e384613095565b612f64565b90508281526020810184848401111561310457613103613090565b5b61310f8482856130c6565b509392505050565b600082601f83011261312c5761312b612eff565b5b813561313c8482602086016130d5565b91505092915050565b60006020828403121561315b5761315a612b1a565b5b600082013567ffffffffffffffff81111561317957613178612b1f565b5b61318584828501613117565b91505092915050565b600080604083850312156131a5576131a4612b1a565b5b60006131b385828601612d67565b92505060206131c485828601612dfd565b9150509250929050565b600067ffffffffffffffff8211156131e9576131e8612f04565b5b6131f282612c25565b9050602081019050919050565b600061321261320d846131ce565b612f64565b90508281526020810184848401111561322e5761322d613090565b5b6132398482856130c6565b509392505050565b600082601f83011261325657613255612eff565b5b81356132668482602086016131ff565b91505092915050565b6000806000806080858703121561328957613288612b1a565b5b600061329787828801612d67565b94505060206132a887828801612d67565b93505060406132b987828801612cb2565b925050606085013567ffffffffffffffff8111156132da576132d9612b1f565b5b6132e687828801613241565b91505092959194509250565b6000806040838503121561330957613308612b1a565b5b600061331785828601612d67565b925050602061332885828601612d67565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061337957607f821691505b60208210810361338c5761338b613332565b5b50919050565b60006040820190506133a76000830185612d26565b6133b46020830184612d26565b9392505050565b6000815190506133ca81612de6565b92915050565b6000602082840312156133e6576133e5612b1a565b5b60006133f4848285016133bb565b91505092915050565b60008151905061340c81612d50565b92915050565b60006020828403121561342857613427612b1a565b5b6000613436848285016133fd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347982612c91565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134ab576134aa61343f565b5b600182019050919050565b60006134c182612c91565b91506134cc83612c91565b92508282019050808211156134e4576134e361343f565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000613520600983612bea565b915061352b826134ea565b602082019050919050565b6000602082019050818103600083015261354f81613513565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135aa565b6135f186836135aa565b95508019841693508086168417925050509392505050565b6000819050919050565b600061362e61362961362484612c91565b613609565b612c91565b9050919050565b6000819050919050565b61364883613613565b61365c61365482613635565b8484546135b7565b825550505050565b600090565b613671613664565b61367c81848461363f565b505050565b5b818110156136a057613695600082613669565b600181019050613682565b5050565b601f8211156136e5576136b681613585565b6136bf8461359a565b810160208510156136ce578190505b6136e26136da8561359a565b830182613681565b50505b505050565b600082821c905092915050565b6000613708600019846008026136ea565b1980831691505092915050565b600061372183836136f7565b9150826002028217905092915050565b61373a82612bdf565b67ffffffffffffffff81111561375357613752612f04565b5b61375d8254613361565b6137688282856136a4565b600060209050601f83116001811461379b5760008415613789578287015190505b6137938582613715565b8655506137fb565b601f1984166137a986613585565b60005b828110156137d1578489015182556001820191506020850194506020810190506137ac565b868310156137ee57848901516137ea601f8916826136f7565b8355505b6001600288020188555050505b505050505050565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b6000613839601783612bea565b915061384482613803565b602082019050919050565b600060208201905081810360008301526138688161382c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006138cb602f83612bea565b91506138d68261386f565b604082019050919050565b600060208201905081810360008301526138fa816138be565b9050919050565b600081905092915050565b6000815461391981613361565b6139238186613901565b9450600182166000811461393e576001811461395357613986565b60ff1983168652811515820286019350613986565b61395c85613585565b60005b8381101561397e5781548189015260018201915060208101905061395f565b838801955050505b50505092915050565b600061399a82612bdf565b6139a48185613901565b93506139b4818560208601612bfb565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139f6600583613901565b9150613a01826139c0565b600582019050919050565b6000613a18828561390c565b9150613a24828461398f565b9150613a2f826139e9565b91508190509392505050565b7f53616c65206e6f742053746172746564205965742e0000000000000000000000600082015250565b6000613a71601583612bea565b9150613a7c82613a3b565b602082019050919050565b60006020820190508181036000830152613aa081613a64565b9050919050565b7f6d617820706572207472616e73616374696f6e20350000000000000000000000600082015250565b6000613add601583612bea565b9150613ae882613aa7565b602082019050919050565b60006020820190508181036000830152613b0c81613ad0565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6000613b49601683612bea565b9150613b5482613b13565b602082019050919050565b60006020820190508181036000830152613b7881613b3c565b9050919050565b7f4e6f7420616c6c6f77656420696e2070726573616c6500000000000000000000600082015250565b6000613bb5601683612bea565b9150613bc082613b7f565b602082019050919050565b60006020820190508181036000830152613be481613ba8565b9050919050565b6000613bf682612c91565b9150613c0183612c91565b9250828202613c0f81612c91565b91508282048414831517613c2657613c2561343f565b5b5092915050565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b6000613c63601683612bea565b9150613c6e82613c2d565b602082019050919050565b60006020820190508181036000830152613c9281613c56565b9050919050565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b6000613ccf600f83612bea565b9150613cda82613c99565b602082019050919050565b60006020820190508181036000830152613cfe81613cc2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d61602683612bea565b9150613d6c82613d05565b604082019050919050565b60006020820190508181036000830152613d9081613d54565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613dcd602083612bea565b9150613dd882613d97565b602082019050919050565b60006020820190508181036000830152613dfc81613dc0565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e2a82613e03565b613e348185613e0e565b9350613e44818560208601612bfb565b613e4d81612c25565b840191505092915050565b6000608082019050613e6d6000830187612d26565b613e7a6020830186612d26565b613e876040830185612dbc565b8181036060830152613e998184613e1f565b905095945050505050565b600081519050613eb381612b50565b92915050565b600060208284031215613ecf57613ece612b1a565b5b6000613edd84828501613ea4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea264697066735822122056a5b92984d212171f47888270259f0fe5ee3f6369897fc946ab5f5fb8586faa64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80637c8255db1161010d578063b88d4fde116100a0578063c87b56dd1161006f578063c87b56dd1461067b578063cd7de458146106b8578063d96a094a146106e3578063e985e9c5146106ff578063f2fde38b1461073c576101ee565b8063b88d4fde146105e2578063be90e5f4146105fe578063c1f2612314610629578063c72fd0f214610652576101ee565b806395d89b41116100dc57806395d89b411461053a57806395ea5e6714610565578063a0bcfc7f14610590578063a22cb465146105b9576101ee565b80637c8255db146104925780637ff9b596146104bb5780638154ecee146104e65780638da5cb5b1461050f576101ee565b806342842e0e116101855780636352211e116101545780636352211e146103d65780636c0360eb1461041357806370a082311461043e578063715018a61461047b576101ee565b806342842e0e1461033b578063453c2310146103575780634b980d67146103825780635fce9412146103ad576101ee565b806318160ddd116101c157806318160ddd146102b45780631cef37e4146102df57806323b872dd146103085780633ccfd60b14610324576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612b7c565b610765565b6040516102279190612bc4565b60405180910390f35b34801561023c57600080fd5b506102456107f7565b6040516102529190612c6f565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612cc7565b610889565b60405161028f9190612d35565b60405180910390f35b6102b260048036038101906102ad9190612d7c565b610908565b005b3480156102c057600080fd5b506102c9610a4c565b6040516102d69190612dcb565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612e12565b610a63565b005b610322600480360381019061031d9190612e3f565b610a88565b005b34801561033057600080fd5b5061033961128e565b005b61035560048036038101906103509190612e3f565b6112e6565b005b34801561036357600080fd5b5061036c6114e8565b6040516103799190612dcb565b60405180910390f35b34801561038e57600080fd5b506103976114ee565b6040516103a49190612dcb565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190612e92565b6114f4565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190612cc7565b6115cd565b60405161040a9190612d35565b60405180910390f35b34801561041f57600080fd5b506104286115df565b6040516104359190612c6f565b60405180910390f35b34801561044a57600080fd5b5061046560048036038101906104609190612ed2565b61166d565b6040516104729190612dcb565b60405180910390f35b34801561048757600080fd5b50610490611725565b005b34801561049e57600080fd5b506104b960048036038101906104b49190613047565b611739565b005b3480156104c757600080fd5b506104d06117e1565b6040516104dd9190612dcb565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190612cc7565b6117e7565b005b34801561051b57600080fd5b506105246117f9565b6040516105319190612d35565b60405180910390f35b34801561054657600080fd5b5061054f611823565b60405161055c9190612c6f565b60405180910390f35b34801561057157600080fd5b5061057a6118b5565b6040516105879190612bc4565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b29190613145565b6118c8565b005b3480156105c557600080fd5b506105e060048036038101906105db919061318e565b6118e3565b005b6105fc60048036038101906105f7919061326f565b6119ee565b005b34801561060a57600080fd5b50610613611c95565b6040516106209190612d35565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190612cc7565b611cbb565b005b34801561065e57600080fd5b5061067960048036038101906106749190612ed2565b611d6a565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612cc7565b611db6565b6040516106af9190612c6f565b60405180910390f35b3480156106c457600080fd5b506106cd611e5e565b6040516106da9190612dcb565b60405180910390f35b6106fd60048036038101906106f89190612cc7565b611ebd565b005b34801561070b57600080fd5b50610726600480360381019061072191906132f2565b6120a7565b6040516107339190612bc4565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190612ed2565b61213b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461080690613361565b80601f016020809104026020016040519081016040528092919081815260200182805461083290613361565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b5050505050905090565b6000610894826121be565b6108ca576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610913826115cd565b90508073ffffffffffffffffffffffffffffffffffffffff1661093461221d565b73ffffffffffffffffffffffffffffffffffffffff1614610997576109608161095b61221d565b6120a7565b610996576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a56612225565b6001546000540303905090565b610a6b61222e565b80600a60146101000a81548160ff02191690831515021790555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f6a573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e0c576000610af5836122ac565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6885612378565b91509150610b7e8188610b7961221d565b61239f565b610bca57610b9387610b8e61221d565b6120a7565b610bc9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603610c30576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3d87878760016123e3565b8015610c4857600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1686610cf28989876123e9565b7c020000000000000000000000000000000000000000000000000000000017612411565b600460008781526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d9c5760006001860190506000600460008381526020019081526020016000205403610d9a576000548114610d99578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e04878787600161243c565b505050611288565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e55929190613392565b602060405180830381865afa158015610e72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9691906133d0565b8015610f2857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ee6929190613392565b602060405180830381865afa158015610f03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2791906133d0565b5b610f6957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f609190612d35565b60405180910390fd5b5b6000610f75836122ac565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fdc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fe885612378565b91509150610ffe8188610ff961221d565b61239f565b61104a576110138761100e61221d565b6120a7565b611049576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036110b0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110bd87878760016123e3565b80156110c857600082555b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611196866111728989876123e9565b7c020000000000000000000000000000000000000000000000000000000017612411565b600460008781526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361121c576000600186019050600060046000838152602001908152602001600020540361121a576000548114611219578360046000838152602001908152602001600020819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611284878787600161243c565b5050505b50505050565b61129661222e565b61129e6117f9565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156112e3573d6000803e3d6000fd5b50565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156114c6573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361136857611363848484604051806020016040528060008152506119ee565b6114e2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016113b1929190613392565b602060405180830381865afa1580156113ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f291906133d0565b801561148457506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611442929190613392565b602060405180830381865afa15801561145f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148391906133d0565b5b6114c557336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114bc9190612d35565b60405180910390fd5b5b6114e1848484604051806020016040528060008152506119ee565b5b50505050565b600d5481565b600c5481565b6114fc61222e565b60008290505b8181116115c8576000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506115b48173ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b815260040161156c9190612dcb565b602060405180830381865afa158015611589573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ad9190613412565b6001612442565b5080806115c09061346e565b915050611502565b505050565b60006115d8826122ac565b9050919050565b600b80546115ec90613361565b80601f016020809104026020016040519081016040528092919081815260200182805461161890613361565b80156116655780601f1061163a57610100808354040283529160200191611665565b820191906000526020600020905b81548152906001019060200180831161164857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116d4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61172d61222e565b6117376000612460565b565b61174161222e565b612710815161174e610a4c565b61175891906134b6565b1115611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090613536565b60405180910390fd5b60005b81518110156117dd576117ca8282815181106117bb576117ba613556565b5b60200260200101516001612442565b80806117d59061346e565b91505061179c565b5050565b60095481565b6117ef61222e565b8060098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461183290613361565b80601f016020809104026020016040519081016040528092919081815260200182805461185e90613361565b80156118ab5780601f10611880576101008083540402835291602001916118ab565b820191906000526020600020905b81548152906001019060200180831161188e57829003601f168201915b5050505050905090565b600a60149054906101000a900460ff1681565b6118d061222e565b80600b90816118df9190613731565b5050565b80600760006118f061221d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661199d61221d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119e29190612bc4565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611c20573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ac257611a5b858585610a88565b60008473ffffffffffffffffffffffffffffffffffffffff163b14611abd57611a8685858585612526565b611abc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b611c8e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611b0b929190613392565b602060405180830381865afa158015611b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4c91906133d0565b8015611bde57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b9c929190613392565b602060405180830381865afa158015611bb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdd91906133d0565b5b611c1f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c169190612d35565b60405180910390fd5b5b611c2b858585610a88565b60008473ffffffffffffffffffffffffffffffffffffffff163b14611c8d57611c5685858585612526565b611c8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b5050505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611cc361222e565b60008111611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd9061384f565b60405180910390fd5b61271081611d12610a4c565b611d1c91906134b6565b1115611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5490613536565b60405180910390fd5b611d673382612442565b50565b611d7261222e565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060611dc1826121be565b611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df7906138e1565b60405180910390fd5b6000600b8054611e0f90613361565b905011611e2b5760405180602001604052806000815250611e57565b600b611e3683612676565b604051602001611e47929190613a0c565b6040516020818303038152906040525b9050919050565b600060011515600a60149054906101000a900460ff16151514611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613a87565b60405180910390fd5b6001905090565b60008111611f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef79061384f565b60405180910390fd5b600c54811115611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c90613af3565b60405180910390fd5b61271081611f51610a4c565b611f5b91906134b6565b1115611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390613b5f565b60405180910390fd5b600d5481611fa93361166d565b611fb391906134b6565b1115611ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611feb90613bcb565b60405180910390fd5b806009546120029190613beb565b341015612044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203b90613c79565b60405180910390fd5b60011515600a60149054906101000a900460ff1615151461209a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209190613ce5565b60405180910390fd5b6120a43382612442565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61214361222e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a990613d77565b60405180910390fd5b6121bb81612460565b50565b6000816121c9612225565b111580156121d8575060005482105b8015612216575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b612236612744565b73ffffffffffffffffffffffffffffffffffffffff166122546117f9565b73ffffffffffffffffffffffffffffffffffffffff16146122aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a190613de3565b60405180910390fd5b565b600080829050806122bb612225565b11612341576000548110156123405760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361233e575b6000810361233457600460008360019003935083815260200190815260200160002054905061230a565b8092505050612373565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861240086868461274c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61245c828260405180602001604052806000815250612755565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261254c61221d565b8786866040518563ffffffff1660e01b815260040161256e9493929190613e58565b6020604051808303816000875af19250505080156125aa57506040513d601f19601f820116820180604052508101906125a79190613eb9565b60015b612623573d80600081146125da576040519150601f19603f3d011682016040523d82523d6000602084013e6125df565b606091505b50600081510361261b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001612685846127f2565b01905060008167ffffffffffffffff8111156126a4576126a3612f04565b5b6040519080825280601f01601f1916602001820160405280156126d65781602001600182028036833780820191505090505b509050600082602001820190505b600115612739578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161272d5761272c613ee6565b5b049450600085036126e4575b819350505050919050565b600033905090565b60009392505050565b61275f8383612945565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127ed57600080549050600083820390505b61279f6000868380600101945086612526565b6127d5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061278c5781600054146127ea57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612850577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161284657612845613ee6565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061288d576d04ee2d6d415b85acef8100000000838161288357612882613ee6565b5b0492506020810190505b662386f26fc1000083106128bc57662386f26fc1000083816128b2576128b1613ee6565b5b0492506010810190505b6305f5e10083106128e5576305f5e10083816128db576128da613ee6565b5b0492506008810190505b612710831061290a576127108381612900576128ff613ee6565b5b0492506004810190505b6064831061292d576064838161292357612922613ee6565b5b0492506002810190505b600a831061293c576001810190505b80915050919050565b60008054905060008203612985576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61299260008483856123e3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612a09836129fa60008660006123e9565b612a0385612b00565b17612411565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612aaa57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612a6f565b5060008203612ae5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612afb600084838561243c565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b5981612b24565b8114612b6457600080fd5b50565b600081359050612b7681612b50565b92915050565b600060208284031215612b9257612b91612b1a565b5b6000612ba084828501612b67565b91505092915050565b60008115159050919050565b612bbe81612ba9565b82525050565b6000602082019050612bd96000830184612bb5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c19578082015181840152602081019050612bfe565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c4182612bdf565b612c4b8185612bea565b9350612c5b818560208601612bfb565b612c6481612c25565b840191505092915050565b60006020820190508181036000830152612c898184612c36565b905092915050565b6000819050919050565b612ca481612c91565b8114612caf57600080fd5b50565b600081359050612cc181612c9b565b92915050565b600060208284031215612cdd57612cdc612b1a565b5b6000612ceb84828501612cb2565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d1f82612cf4565b9050919050565b612d2f81612d14565b82525050565b6000602082019050612d4a6000830184612d26565b92915050565b612d5981612d14565b8114612d6457600080fd5b50565b600081359050612d7681612d50565b92915050565b60008060408385031215612d9357612d92612b1a565b5b6000612da185828601612d67565b9250506020612db285828601612cb2565b9150509250929050565b612dc581612c91565b82525050565b6000602082019050612de06000830184612dbc565b92915050565b612def81612ba9565b8114612dfa57600080fd5b50565b600081359050612e0c81612de6565b92915050565b600060208284031215612e2857612e27612b1a565b5b6000612e3684828501612dfd565b91505092915050565b600080600060608486031215612e5857612e57612b1a565b5b6000612e6686828701612d67565b9350506020612e7786828701612d67565b9250506040612e8886828701612cb2565b9150509250925092565b60008060408385031215612ea957612ea8612b1a565b5b6000612eb785828601612cb2565b9250506020612ec885828601612cb2565b9150509250929050565b600060208284031215612ee857612ee7612b1a565b5b6000612ef684828501612d67565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f3c82612c25565b810181811067ffffffffffffffff82111715612f5b57612f5a612f04565b5b80604052505050565b6000612f6e612b10565b9050612f7a8282612f33565b919050565b600067ffffffffffffffff821115612f9a57612f99612f04565b5b602082029050602081019050919050565b600080fd5b6000612fc3612fbe84612f7f565b612f64565b90508083825260208201905060208402830185811115612fe657612fe5612fab565b5b835b8181101561300f5780612ffb8882612d67565b845260208401935050602081019050612fe8565b5050509392505050565b600082601f83011261302e5761302d612eff565b5b813561303e848260208601612fb0565b91505092915050565b60006020828403121561305d5761305c612b1a565b5b600082013567ffffffffffffffff81111561307b5761307a612b1f565b5b61308784828501613019565b91505092915050565b600080fd5b600067ffffffffffffffff8211156130b0576130af612f04565b5b6130b982612c25565b9050602081019050919050565b82818337600083830152505050565b60006130e86130e384613095565b612f64565b90508281526020810184848401111561310457613103613090565b5b61310f8482856130c6565b509392505050565b600082601f83011261312c5761312b612eff565b5b813561313c8482602086016130d5565b91505092915050565b60006020828403121561315b5761315a612b1a565b5b600082013567ffffffffffffffff81111561317957613178612b1f565b5b61318584828501613117565b91505092915050565b600080604083850312156131a5576131a4612b1a565b5b60006131b385828601612d67565b92505060206131c485828601612dfd565b9150509250929050565b600067ffffffffffffffff8211156131e9576131e8612f04565b5b6131f282612c25565b9050602081019050919050565b600061321261320d846131ce565b612f64565b90508281526020810184848401111561322e5761322d613090565b5b6132398482856130c6565b509392505050565b600082601f83011261325657613255612eff565b5b81356132668482602086016131ff565b91505092915050565b6000806000806080858703121561328957613288612b1a565b5b600061329787828801612d67565b94505060206132a887828801612d67565b93505060406132b987828801612cb2565b925050606085013567ffffffffffffffff8111156132da576132d9612b1f565b5b6132e687828801613241565b91505092959194509250565b6000806040838503121561330957613308612b1a565b5b600061331785828601612d67565b925050602061332885828601612d67565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061337957607f821691505b60208210810361338c5761338b613332565b5b50919050565b60006040820190506133a76000830185612d26565b6133b46020830184612d26565b9392505050565b6000815190506133ca81612de6565b92915050565b6000602082840312156133e6576133e5612b1a565b5b60006133f4848285016133bb565b91505092915050565b60008151905061340c81612d50565b92915050565b60006020828403121561342857613427612b1a565b5b6000613436848285016133fd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347982612c91565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134ab576134aa61343f565b5b600182019050919050565b60006134c182612c91565b91506134cc83612c91565b92508282019050808211156134e4576134e361343f565b5b92915050565b7f536f6c64204f7574210000000000000000000000000000000000000000000000600082015250565b6000613520600983612bea565b915061352b826134ea565b602082019050919050565b6000602082019050818103600083015261354f81613513565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135aa565b6135f186836135aa565b95508019841693508086168417925050509392505050565b6000819050919050565b600061362e61362961362484612c91565b613609565b612c91565b9050919050565b6000819050919050565b61364883613613565b61365c61365482613635565b8484546135b7565b825550505050565b600090565b613671613664565b61367c81848461363f565b505050565b5b818110156136a057613695600082613669565b600181019050613682565b5050565b601f8211156136e5576136b681613585565b6136bf8461359a565b810160208510156136ce578190505b6136e26136da8561359a565b830182613681565b50505b505050565b600082821c905092915050565b6000613708600019846008026136ea565b1980831691505092915050565b600061372183836136f7565b9150826002028217905092915050565b61373a82612bdf565b67ffffffffffffffff81111561375357613752612f04565b5b61375d8254613361565b6137688282856136a4565b600060209050601f83116001811461379b5760008415613789578287015190505b6137938582613715565b8655506137fb565b601f1984166137a986613585565b60005b828110156137d1578489015182556001820191506020850194506020810190506137ac565b868310156137ee57848901516137ea601f8916826136f7565b8355505b6001600288020188555050505b505050505050565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b6000613839601783612bea565b915061384482613803565b602082019050919050565b600060208201905081810360008301526138688161382c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006138cb602f83612bea565b91506138d68261386f565b604082019050919050565b600060208201905081810360008301526138fa816138be565b9050919050565b600081905092915050565b6000815461391981613361565b6139238186613901565b9450600182166000811461393e576001811461395357613986565b60ff1983168652811515820286019350613986565b61395c85613585565b60005b8381101561397e5781548189015260018201915060208101905061395f565b838801955050505b50505092915050565b600061399a82612bdf565b6139a48185613901565b93506139b4818560208601612bfb565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139f6600583613901565b9150613a01826139c0565b600582019050919050565b6000613a18828561390c565b9150613a24828461398f565b9150613a2f826139e9565b91508190509392505050565b7f53616c65206e6f742053746172746564205965742e0000000000000000000000600082015250565b6000613a71601583612bea565b9150613a7c82613a3b565b602082019050919050565b60006020820190508181036000830152613aa081613a64565b9050919050565b7f6d617820706572207472616e73616374696f6e20350000000000000000000000600082015250565b6000613add601583612bea565b9150613ae882613aa7565b602082019050919050565b60006020820190508181036000830152613b0c81613ad0565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6000613b49601683612bea565b9150613b5482613b13565b602082019050919050565b60006020820190508181036000830152613b7881613b3c565b9050919050565b7f4e6f7420616c6c6f77656420696e2070726573616c6500000000000000000000600082015250565b6000613bb5601683612bea565b9150613bc082613b7f565b602082019050919050565b60006020820190508181036000830152613be481613ba8565b9050919050565b6000613bf682612c91565b9150613c0183612c91565b9250828202613c0f81612c91565b91508282048414831517613c2657613c2561343f565b5b5092915050565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b6000613c63601683612bea565b9150613c6e82613c2d565b602082019050919050565b60006020820190508181036000830152613c9281613c56565b9050919050565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b6000613ccf600f83612bea565b9150613cda82613c99565b602082019050919050565b60006020820190508181036000830152613cfe81613cc2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d61602683612bea565b9150613d6c82613d05565b604082019050919050565b60006020820190508181036000830152613d9081613d54565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613dcd602083612bea565b9150613dd882613d97565b602082019050919050565b60006020820190508181036000830152613dfc81613dc0565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e2a82613e03565b613e348185613e0e565b9350613e44818560208601612bfb565b613e4d81612c25565b840191505092915050565b6000608082019050613e6d6000830187612d26565b613e7a6020830186612d26565b613e876040830185612dbc565b8181036060830152613e998184613e1f565b905095945050505050565b600081519050613eb381612b50565b92915050565b600060208284031215613ecf57613ece612b1a565b5b6000613edd84828501613ea4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea264697066735822122056a5b92984d212171f47888270259f0fe5ee3f6369897fc946ab5f5fb8586faa64736f6c63430008110033

Deployed Bytecode Sourcemap

75947:2942:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23414:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24316:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30807:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30240:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20067:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78459:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34805:2850;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78780:106;;;;;;;;;;;;;:::i;:::-;;37751:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76337:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76275:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76488:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25709:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76241:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21251:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74761:103;;;;;;;;;;;;;:::i;:::-;;77494:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76038:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78575:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74113:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24492:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76196:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78357:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31365:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38567:432;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76117:72;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77263:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78671:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78051:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77742:147;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76714:541;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31756:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75019:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23414:639;23499:4;23838:10;23823:25;;:11;:25;;;;:102;;;;23915:10;23900:25;;:11;:25;;;;23823:102;:179;;;;23992:10;23977:25;;:11;:25;;;;23823:179;23803:199;;23414:639;;;:::o;24316:100::-;24370:13;24403:5;24396:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24316:100;:::o;30807:218::-;30883:7;30908:16;30916:7;30908;:16::i;:::-;30903:64;;30933:34;;;;;;;;;;;;;;30903:64;30987:15;:24;31003:7;30987:24;;;;;;;;;;;:30;;;;;;;;;;;;30980:37;;30807:218;;;:::o;30240:408::-;30329:13;30345:16;30353:7;30345;:16::i;:::-;30329:32;;30401:5;30378:28;;:19;:17;:19::i;:::-;:28;;;30374:175;;30426:44;30443:5;30450:19;:17;:19::i;:::-;30426:16;:44::i;:::-;30421:128;;30498:35;;;;;;;;;;;;;;30421:128;30374:175;30594:2;30561:15;:24;30577:7;30561:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;30632:7;30628:2;30612:28;;30621:5;30612:28;;;;;;;;;;;;30318:330;30240:408;;:::o;20067:323::-;20128:7;20356:15;:13;:15::i;:::-;20341:12;;20325:13;;:28;:46;20318:53;;20067:323;:::o;78459:101::-;73999:13;:11;:13::i;:::-;78548:4:::1;78527:18;;:25;;;;;;;;;;;;;;;;;;78459:101:::0;:::o;34805:2850::-;34956:4;4009:1;2823:42;3963:43;;;:47;3959:699;;;4250:10;4242:18;;:4;:18;;;4238:85;;34972:27:::1;35002;35021:7;35002:18;:27::i;:::-;34972:57;;35087:4;35046:45;;35062:19;35046:45;;;35042:86;;35100:28;;;;;;;;;;;;;;35042:86;35142:27;35171:23:::0;35198:35:::1;35225:7;35198:26;:35::i;:::-;35141:92;;;;35333:68;35358:15;35375:4;35381:19;:17;:19::i;:::-;35333:24;:68::i;:::-;35328:180;;35421:43;35438:4;35444:19;:17;:19::i;:::-;35421:16;:43::i;:::-;35416:92;;35473:35;;;;;;;;;;;;;;35416:92;35328:180;35539:1;35525:16;;:2;:16;;::::0;35521:52:::1;;35550:23;;;;;;;;;;;;;;35521:52;35586:43;35608:4;35614:2;35618:7;35627:1;35586:21;:43::i;:::-;35722:15;35719:160;;;35862:1;35841:19;35834:30;35719:160;36259:18;:24;36278:4;36259:24;;;;;;;;;;;;;;;;36257:26;;;;;;;;;;;;36328:18;:22;36347:2;36328:22;;;;;;;;;;;;;;;;36326:24;;;;;;;;;;;36650:146;36687:2;36736:45;36751:4;36757:2;36761:19;36736:14;:45::i;:::-;16466:8;36708:73;36650:18;:146::i;:::-;36621:17;:26;36639:7;36621:26;;;;;;;;;;;:175;;;;36967:1;16466:8;36916:19;:47;:52:::0;36912:627:::1;;36989:19;37021:1;37011:7;:11;36989:33;;37178:1;37144:17;:30;37162:11;37144:30;;;;;;;;;;;;:35:::0;37140:384:::1;;37282:13;;37267:11;:28;37263:242;;37462:19;37429:17;:30;37447:11;37429:30;;;;;;;;;;;:52;;;;37263:242;37140:384;36970:569;36912:627;37586:7;37582:2;37567:27;;37576:4;37567:27;;;;;;;;;;;;37605:42;37626:4;37632:2;37636:7;37645:1;37605:20;:42::i;:::-;34961:2694;;;4301:7:::0;;4238:85;2823:42;4383:40;;;4432:4;4439:10;4383:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2823:42;4479:40;;;4528:4;4535;4479:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4383:157;4337:310;;4620:10;4601:30;;;;;;;;;;;:::i;:::-;;;;;;;;4337:310;3959:699;34972:27:::1;35002;35021:7;35002:18;:27::i;:::-;34972:57;;35087:4;35046:45;;35062:19;35046:45;;;35042:86;;35100:28;;;;;;;;;;;;;;35042:86;35142:27;35171:23:::0;35198:35:::1;35225:7;35198:26;:35::i;:::-;35141:92;;;;35333:68;35358:15;35375:4;35381:19;:17;:19::i;:::-;35333:24;:68::i;:::-;35328:180;;35421:43;35438:4;35444:19;:17;:19::i;:::-;35421:16;:43::i;:::-;35416:92;;35473:35;;;;;;;;;;;;;;35416:92;35328:180;35539:1;35525:16;;:2;:16;;::::0;35521:52:::1;;35550:23;;;;;;;;;;;;;;35521:52;35586:43;35608:4;35614:2;35618:7;35627:1;35586:21;:43::i;:::-;35722:15;35719:160;;;35862:1;35841:19;35834:30;35719:160;36259:18;:24;36278:4;36259:24;;;;;;;;;;;;;;;;36257:26;;;;;;;;;;;;36328:18;:22;36347:2;36328:22;;;;;;;;;;;;;;;;36326:24;;;;;;;;;;;36650:146;36687:2;36736:45;36751:4;36757:2;36761:19;36736:14;:45::i;:::-;16466:8;36708:73;36650:18;:146::i;:::-;36621:17;:26;36639:7;36621:26;;;;;;;;;;;:175;;;;36967:1;16466:8;36916:19;:47;:52:::0;36912:627:::1;;36989:19;37021:1;37011:7;:11;36989:33;;37178:1;37144:17;:30;37162:11;37144:30;;;;;;;;;;;;:35:::0;37140:384:::1;;37282:13;;37267:11;:28;37263:242;;37462:19;37429:17;:30;37447:11;37429:30;;;;;;;;;;;:52;;;;37263:242;37140:384;36970:569;36912:627;37586:7;37582:2;37567:27;;37576:4;37567:27;;;;;;;;;;;;37605:42;37626:4;37632:2;37636:7;37645:1;37605:20;:42::i;:::-;34961:2694;;;34805:2850:::0;;;;;:::o;78780:106::-;73999:13;:11;:13::i;:::-;78838:7:::1;:5;:7::i;:::-;78830:25;;:48;78856:21;78830:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;78780:106::o:0;37751:218::-;37906:4;4009:1;2823:42;3963:43;;;:47;3959:699;;;4250:10;4242:18;;:4;:18;;;4238:85;;37922:39:::1;37939:4;37945:2;37949:7;37922:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;4301:7:::0;;4238:85;2823:42;4383:40;;;4432:4;4439:10;4383:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2823:42;4479:40;;;4528:4;4535;4479:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4383:157;4337:310;;4620:10;4601:30;;;;;;;;;;;:::i;:::-;;;;;;;;4337:310;3959:699;37922:39:::1;37939:4;37945:2;37949:7;37922:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;37751:218:::0;;;;;:::o;76337:28::-;;;;:::o;76275:33::-;;;;:::o;76488:221::-;73999:13;:11;:13::i;:::-;76567:6:::1;76574:5;76567:12;;76563:141;76584:3;76581:1;:6;76563:141;;76611:14;76635;;;;;;;;;;;76611:39;;76662:32;76672:7;:15;;;76688:1;76672:18;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76692:1;76662:9;:32::i;:::-;76599:105;76589:3;;;;;:::i;:::-;;;;76563:141;;;;76488:221:::0;;:::o;25709:152::-;25781:7;25824:27;25843:7;25824:18;:27::i;:::-;25801:52;;25709:152;;;:::o;76241:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21251:233::-;21323:7;21364:1;21347:19;;:5;:19;;;21343:60;;21375:28;;;;;;;;;;;;;;21343:60;15410:13;21421:18;:25;21440:5;21421:25;;;;;;;;;;;;;;;;:55;21414:62;;21251:233;;;:::o;74761:103::-;73999:13;:11;:13::i;:::-;74826:30:::1;74853:1;74826:18;:30::i;:::-;74761:103::o:0;77494:238::-;73999:13;:11;:13::i;:::-;76105:5:::1;77591:8;:15;77575:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;77567:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;77648:6;77644:80;77664:8;:15;77660:1;:19;77644:80;;;77699:25;77709:8;77718:1;77709:11;;;;;;;;:::i;:::-;;;;;;;;77722:1;77699:9;:25::i;:::-;77681:3;;;;;:::i;:::-;;;;77644:80;;;;77494:238:::0;:::o;76038:34::-;;;;:::o;78575:89::-;73999:13;:11;:13::i;:::-;78654:2:::1;78641:10;:15;;;;78575:89:::0;:::o;74113:87::-;74159:7;74186:6;;;;;;;;;;;74179:13;;74113:87;:::o;24492:104::-;24548:13;24581:7;24574:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24492:104;:::o;76196:38::-;;;;;;;;;;;;;:::o;78357:92::-;73999:13;:11;:13::i;:::-;78437:4:::1;78427:7;:14;;;;;;:::i;:::-;;78357:92:::0;:::o;31365:234::-;31512:8;31460:18;:39;31479:19;:17;:19::i;:::-;31460:39;;;;;;;;;;;;;;;:49;31500:8;31460:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31572:8;31536:55;;31551:19;:17;:19::i;:::-;31536:55;;;31582:8;31536:55;;;;;;:::i;:::-;;;;;;;;31365:234;;:::o;38567:432::-;38751:4;4009:1;2823:42;3963:43;;;:47;3959:699;;;4250:10;4242:18;;:4;:18;;;4238:85;;38767:31:::1;38780:4;38786:2;38790:7;38767:12;:31::i;:::-;38831:1;38813:2;:14;;;:19;38809:183;;38852:56;38883:4;38889:2;38893:7;38902:5;38852:30;:56::i;:::-;38847:145;;38936:40;;;;;;;;;;;;;;38847:145;38809:183;4301:7:::0;;4238:85;2823:42;4383:40;;;4432:4;4439:10;4383:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2823:42;4479:40;;;4528:4;4535;4479:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4383:157;4337:310;;4620:10;4601:30;;;;;;;;;;;:::i;:::-;;;;;;;;4337:310;3959:699;38767:31:::1;38780:4;38786:2;38790:7;38767:12;:31::i;:::-;38831:1;38813:2;:14;;;:19;38809:183;;38852:56;38883:4;38889:2;38893:7;38902:5;38852:30;:56::i;:::-;38847:145;;38936:40;;;;;;;;;;;;;;38847:145;38809:183;38567:432:::0;;;;;;:::o;76117:72::-;;;;;;;;;;;;;:::o;77263:223::-;73999:13;:11;:13::i;:::-;77341:1:::1;77332:6;:10;77324:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;76105:5;77405:6;77389:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;77381:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;77449:29;77459:10;77471:6;77449:9;:29::i;:::-;77263:223:::0;:::o;78671:101::-;73999:13;:11;:13::i;:::-;78762:2:::1;78745:14;;:19;;;;;;;;;;;;;;;;;;78671:101:::0;:::o;78051:298::-;78124:13;78158:16;78166:7;78158;:16::i;:::-;78150:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;78270:1;78252:7;78246:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;78298:7;78307:18;:7;:16;:18::i;:::-;78281:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78246:95;78239:102;;78051:298;;;:::o;77742:147::-;77788:4;77832;77810:26;;:18;;;;;;;;;;;:26;;;77802:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;77879:1;77872:8;;77742:147;:::o;76714:541::-;76782:1;76773:6;:10;76765:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;76840:17;;76830:6;:27;;76822:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;76105:5;76918:6;76902:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;76894:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;77017:12;;77007:6;76983:21;76993:10;76983:9;:21::i;:::-;:30;;;;:::i;:::-;:46;;76975:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;77101:6;77088:10;;:19;;;;:::i;:::-;77075:9;:32;;77067:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;77175:4;77153:26;;:18;;;;;;;;;;;:26;;;77145:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;77218:29;77228:10;77240:6;77218:9;:29::i;:::-;76714:541;:::o;31756:164::-;31853:4;31877:18;:25;31896:5;31877:25;;;;;;;;;;;;;;;:35;31903:8;31877:35;;;;;;;;;;;;;;;;;;;;;;;;;31870:42;;31756:164;;;;:::o;75019:201::-;73999:13;:11;:13::i;:::-;75128:1:::1;75108:22;;:8;:22;;::::0;75100:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;75184:28;75203:8;75184:18;:28::i;:::-;75019:201:::0;:::o;32178:282::-;32243:4;32299:7;32280:15;:13;:15::i;:::-;:26;;:66;;;;;32333:13;;32323:7;:23;32280:66;:153;;;;;32432:1;16186:8;32384:17;:26;32402:7;32384:26;;;;;;;;;;;;:44;:49;32280:153;32260:173;;32178:282;;;:::o;54920:105::-;54980:7;55007:10;55000:17;;54920:105;:::o;19583:92::-;19639:7;19666:1;19659:8;;19583:92;:::o;74278:132::-;74353:12;:10;:12::i;:::-;74342:23;;:7;:5;:7::i;:::-;:23;;;74334:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74278:132::o;26864:1275::-;26931:7;26951:12;26966:7;26951:22;;27034:4;27015:15;:13;:15::i;:::-;:23;27011:1061;;27068:13;;27061:4;:20;27057:1015;;;27106:14;27123:17;:23;27141:4;27123:23;;;;;;;;;;;;27106:40;;27240:1;16186:8;27212:6;:24;:29;27208:845;;27877:113;27894:1;27884:6;:11;27877:113;;27937:17;:25;27955:6;;;;;;;27937:25;;;;;;;;;;;;27928:34;;27877:113;;;28023:6;28016:13;;;;;;27208:845;27083:989;27057:1015;27011:1061;28100:31;;;;;;;;;;;;;;26864:1275;;;;:::o;33341:485::-;33443:27;33472:23;33513:38;33554:15;:24;33570:7;33554:24;;;;;;;;;;;33513:65;;33731:18;33708:41;;33788:19;33782:26;33763:45;;33693:126;33341:485;;;:::o;32569:659::-;32718:11;32883:16;32876:5;32872:28;32863:37;;33043:16;33032:9;33028:32;33015:45;;33193:15;33182:9;33179:30;33171:5;33160:9;33157:20;33154:56;33144:66;;32569:659;;;;;:::o;39661:159::-;;;;;:::o;54229:311::-;54364:7;54384:16;16590:3;54410:19;:41;;54384:68;;16590:3;54478:31;54489:4;54495:2;54499:9;54478:10;:31::i;:::-;54470:40;;:62;;54463:69;;;54229:311;;;;;:::o;28687:450::-;28767:14;28935:16;28928:5;28924:28;28915:37;;29112:5;29098:11;29073:23;29069:41;29066:52;29059:5;29056:63;29046:73;;28687:450;;;;:::o;40485:158::-;;;;;:::o;48752:112::-;48829:27;48839:2;48843:8;48829:27;;;;;;;;;;;;:9;:27::i;:::-;48752:112;;:::o;75380:191::-;75454:16;75473:6;;;;;;;;;;;75454:25;;75499:8;75490:6;;:17;;;;;;;;;;;;;;;;;;75554:8;75523:40;;75544:8;75523:40;;;;;;;;;;;;75443:128;75380:191;:::o;41083:716::-;41246:4;41292:2;41267:45;;;41313:19;:17;:19::i;:::-;41334:4;41340:7;41349:5;41267:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41263:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41567:1;41550:6;:13;:18;41546:235;;41596:40;;;;;;;;;;;;;;41546:235;41739:6;41733:13;41724:6;41720:2;41716:15;41709:38;41263:529;41436:54;;;41426:64;;;:6;:64;;;;41419:71;;;41083:716;;;;;;:::o;70136:::-;70192:13;70243:14;70280:1;70260:17;70271:5;70260:10;:17::i;:::-;:21;70243:38;;70296:20;70330:6;70319:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70296:41;;70352:11;70481:6;70477:2;70473:15;70465:6;70461:28;70454:35;;70518:288;70525:4;70518:288;;;70550:5;;;;;;;;70692:8;70687:2;70680:5;70676:14;70671:30;70666:3;70658:44;70748:2;70739:11;;;;;;:::i;:::-;;;;;70782:1;70773:5;:10;70518:288;70769:21;70518:288;70827:6;70820:13;;;;;70136:716;;;:::o;72687:98::-;72740:7;72767:10;72760:17;;72687:98;:::o;53930:147::-;54067:6;53930:147;;;;;:::o;47979:689::-;48110:19;48116:2;48120:8;48110:5;:19::i;:::-;48189:1;48171:2;:14;;;:19;48167:483;;48211:11;48225:13;;48211:27;;48257:13;48279:8;48273:3;:14;48257:30;;48306:233;48337:62;48376:1;48380:2;48384:7;;;;;;48393:5;48337:30;:62::i;:::-;48332:167;;48435:40;;;;;;;;;;;;;;48332:167;48534:3;48526:5;:11;48306:233;;48621:3;48604:13;;:20;48600:34;;48626:8;;;48600:34;48192:458;;48167:483;47979:689;;;:::o;67023:922::-;67076:7;67096:14;67113:1;67096:18;;67163:6;67154:5;:15;67150:102;;67199:6;67190:15;;;;;;:::i;:::-;;;;;67234:2;67224:12;;;;67150:102;67279:6;67270:5;:15;67266:102;;67315:6;67306:15;;;;;;:::i;:::-;;;;;67350:2;67340:12;;;;67266:102;67395:6;67386:5;:15;67382:102;;67431:6;67422:15;;;;;;:::i;:::-;;;;;67466:2;67456:12;;;;67382:102;67511:5;67502;:14;67498:99;;67546:5;67537:14;;;;;;:::i;:::-;;;;;67580:1;67570:11;;;;67498:99;67624:5;67615;:14;67611:99;;67659:5;67650:14;;;;;;:::i;:::-;;;;;67693:1;67683:11;;;;67611:99;67737:5;67728;:14;67724:99;;67772:5;67763:14;;;;;;:::i;:::-;;;;;67806:1;67796:11;;;;67724:99;67850:5;67841;:14;67837:66;;67886:1;67876:11;;;;67837:66;67931:6;67924:13;;;67023:922;;;:::o;42261:2966::-;42334:20;42357:13;;42334:36;;42397:1;42385:8;:13;42381:44;;42407:18;;;;;;;;;;;;;;42381:44;42438:61;42468:1;42472:2;42476:12;42490:8;42438:21;:61::i;:::-;42982:1;15548:2;42952:1;:26;;42951:32;42939:8;:45;42913:18;:22;42932:2;42913:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43261:139;43298:2;43352:33;43375:1;43379:2;43383:1;43352:14;:33::i;:::-;43319:30;43340:8;43319:20;:30::i;:::-;:66;43261:18;:139::i;:::-;43227:17;:31;43245:12;43227:31;;;;;;;;;;;:173;;;;43417:16;43448:11;43477:8;43462:12;:23;43448:37;;43998:16;43994:2;43990:25;43978:37;;44370:12;44330:8;44289:1;44227:25;44168:1;44107;44080:335;44741:1;44727:12;44723:20;44681:346;44782:3;44773:7;44770:16;44681:346;;45000:7;44990:8;44987:1;44960:25;44957:1;44954;44949:59;44835:1;44826:7;44822:15;44811:26;;44681:346;;;44685:77;45072:1;45060:8;:13;45056:45;;45082:19;;;;;;;;;;;;;;45056:45;45134:3;45118:13;:19;;;;42687:2462;;45159:60;45188:1;45192:2;45196:12;45210:8;45159:20;:60::i;:::-;42323:2904;42261:2966;;:::o;29239:324::-;29309:14;29542:1;29532:8;29529:15;29503:24;29499:46;29489:56;;29239: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:116::-;5312:21;5327:5;5312:21;:::i;:::-;5305:5;5302:32;5292:60;;5348:1;5345;5338:12;5292:60;5242:116;:::o;5364:133::-;5407:5;5445:6;5432:20;5423:29;;5461:30;5485:5;5461:30;:::i;:::-;5364:133;;;;:::o;5503:323::-;5559:6;5608:2;5596:9;5587:7;5583:23;5579:32;5576:119;;;5614:79;;:::i;:::-;5576:119;5734:1;5759:50;5801:7;5792:6;5781:9;5777:22;5759:50;:::i;:::-;5749:60;;5705:114;5503:323;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:474::-;6525:6;6533;6582:2;6570:9;6561:7;6557:23;6553:32;6550:119;;;6588:79;;:::i;:::-;6550:119;6708:1;6733:53;6778:7;6769:6;6758:9;6754:22;6733:53;:::i;:::-;6723:63;;6679:117;6835:2;6861:53;6906:7;6897:6;6886:9;6882:22;6861:53;:::i;:::-;6851:63;;6806:118;6457:474;;;;;:::o;6937:329::-;6996:6;7045:2;7033:9;7024:7;7020:23;7016:32;7013:119;;;7051:79;;:::i;:::-;7013:119;7171:1;7196:53;7241:7;7232:6;7221:9;7217:22;7196:53;:::i;:::-;7186:63;;7142:117;6937:329;;;;:::o;7272:117::-;7381:1;7378;7371:12;7395:180;7443:77;7440:1;7433:88;7540:4;7537:1;7530:15;7564:4;7561:1;7554:15;7581:281;7664:27;7686:4;7664:27;:::i;:::-;7656:6;7652:40;7794:6;7782:10;7779:22;7758:18;7746:10;7743:34;7740:62;7737:88;;;7805:18;;:::i;:::-;7737:88;7845:10;7841:2;7834:22;7624:238;7581:281;;:::o;7868:129::-;7902:6;7929:20;;:::i;:::-;7919:30;;7958:33;7986:4;7978:6;7958:33;:::i;:::-;7868:129;;;:::o;8003:311::-;8080:4;8170:18;8162:6;8159:30;8156:56;;;8192:18;;:::i;:::-;8156:56;8242:4;8234:6;8230:17;8222:25;;8302:4;8296;8292:15;8284:23;;8003:311;;;:::o;8320:117::-;8429:1;8426;8419:12;8460:710;8556:5;8581:81;8597:64;8654:6;8597:64;:::i;:::-;8581:81;:::i;:::-;8572:90;;8682:5;8711:6;8704:5;8697:21;8745:4;8738:5;8734:16;8727:23;;8798:4;8790:6;8786:17;8778:6;8774:30;8827:3;8819:6;8816:15;8813:122;;;8846:79;;:::i;:::-;8813:122;8961:6;8944:220;8978:6;8973:3;8970:15;8944:220;;;9053:3;9082:37;9115:3;9103:10;9082:37;:::i;:::-;9077:3;9070:50;9149:4;9144:3;9140:14;9133:21;;9020:144;9004:4;8999:3;8995:14;8988:21;;8944:220;;;8948:21;8562:608;;8460:710;;;;;:::o;9193:370::-;9264:5;9313:3;9306:4;9298:6;9294:17;9290:27;9280:122;;9321:79;;:::i;:::-;9280:122;9438:6;9425:20;9463:94;9553:3;9545:6;9538:4;9530:6;9526:17;9463:94;:::i;:::-;9454:103;;9270:293;9193:370;;;;:::o;9569:539::-;9653:6;9702:2;9690:9;9681:7;9677:23;9673:32;9670:119;;;9708:79;;:::i;:::-;9670:119;9856:1;9845:9;9841:17;9828:31;9886:18;9878:6;9875:30;9872:117;;;9908:79;;:::i;:::-;9872:117;10013:78;10083:7;10074:6;10063:9;10059:22;10013:78;:::i;:::-;10003:88;;9799:302;9569:539;;;;:::o;10114:117::-;10223:1;10220;10213:12;10237:308;10299:4;10389:18;10381:6;10378:30;10375:56;;;10411:18;;:::i;:::-;10375:56;10449:29;10471:6;10449:29;:::i;:::-;10441:37;;10533:4;10527;10523:15;10515:23;;10237:308;;;:::o;10551:146::-;10648:6;10643:3;10638;10625:30;10689:1;10680:6;10675:3;10671:16;10664:27;10551:146;;;:::o;10703:425::-;10781:5;10806:66;10822:49;10864:6;10822:49;:::i;:::-;10806:66;:::i;:::-;10797:75;;10895:6;10888:5;10881:21;10933:4;10926:5;10922:16;10971:3;10962:6;10957:3;10953:16;10950:25;10947:112;;;10978:79;;:::i;:::-;10947:112;11068:54;11115:6;11110:3;11105;11068:54;:::i;:::-;10787:341;10703:425;;;;;:::o;11148:340::-;11204:5;11253:3;11246:4;11238:6;11234:17;11230:27;11220:122;;11261:79;;:::i;:::-;11220:122;11378:6;11365:20;11403:79;11478:3;11470:6;11463:4;11455:6;11451:17;11403:79;:::i;:::-;11394:88;;11210:278;11148:340;;;;:::o;11494:509::-;11563:6;11612:2;11600:9;11591:7;11587:23;11583:32;11580:119;;;11618:79;;:::i;:::-;11580:119;11766:1;11755:9;11751:17;11738:31;11796:18;11788:6;11785:30;11782:117;;;11818:79;;:::i;:::-;11782:117;11923:63;11978:7;11969:6;11958:9;11954:22;11923:63;:::i;:::-;11913:73;;11709:287;11494:509;;;;:::o;12009:468::-;12074:6;12082;12131:2;12119:9;12110:7;12106:23;12102:32;12099:119;;;12137:79;;:::i;:::-;12099:119;12257:1;12282:53;12327:7;12318:6;12307:9;12303:22;12282:53;:::i;:::-;12272:63;;12228:117;12384:2;12410:50;12452:7;12443:6;12432:9;12428:22;12410:50;:::i;:::-;12400:60;;12355:115;12009:468;;;;;:::o;12483:307::-;12544:4;12634:18;12626:6;12623:30;12620:56;;;12656:18;;:::i;:::-;12620:56;12694:29;12716:6;12694:29;:::i;:::-;12686:37;;12778:4;12772;12768:15;12760:23;;12483:307;;;:::o;12796:423::-;12873:5;12898:65;12914:48;12955:6;12914:48;:::i;:::-;12898:65;:::i;:::-;12889:74;;12986:6;12979:5;12972:21;13024:4;13017:5;13013:16;13062:3;13053:6;13048:3;13044:16;13041:25;13038:112;;;13069:79;;:::i;:::-;13038:112;13159:54;13206:6;13201:3;13196;13159:54;:::i;:::-;12879:340;12796:423;;;;;:::o;13238:338::-;13293:5;13342:3;13335:4;13327:6;13323:17;13319:27;13309:122;;13350:79;;:::i;:::-;13309:122;13467:6;13454:20;13492:78;13566:3;13558:6;13551:4;13543:6;13539:17;13492:78;:::i;:::-;13483:87;;13299:277;13238:338;;;;:::o;13582:943::-;13677:6;13685;13693;13701;13750:3;13738:9;13729:7;13725:23;13721:33;13718:120;;;13757:79;;:::i;:::-;13718:120;13877:1;13902:53;13947:7;13938:6;13927:9;13923:22;13902:53;:::i;:::-;13892:63;;13848:117;14004:2;14030:53;14075:7;14066:6;14055:9;14051:22;14030:53;:::i;:::-;14020:63;;13975:118;14132:2;14158:53;14203:7;14194:6;14183:9;14179:22;14158:53;:::i;:::-;14148:63;;14103:118;14288:2;14277:9;14273:18;14260:32;14319:18;14311:6;14308:30;14305:117;;;14341:79;;:::i;:::-;14305:117;14446:62;14500:7;14491:6;14480:9;14476:22;14446:62;:::i;:::-;14436:72;;14231:287;13582:943;;;;;;;:::o;14531:474::-;14599:6;14607;14656:2;14644:9;14635:7;14631:23;14627:32;14624:119;;;14662:79;;:::i;:::-;14624:119;14782:1;14807:53;14852:7;14843:6;14832:9;14828:22;14807:53;:::i;:::-;14797:63;;14753:117;14909:2;14935:53;14980:7;14971:6;14960:9;14956:22;14935:53;:::i;:::-;14925:63;;14880:118;14531:474;;;;;:::o;15011:180::-;15059:77;15056:1;15049:88;15156:4;15153:1;15146:15;15180:4;15177:1;15170:15;15197:320;15241:6;15278:1;15272:4;15268:12;15258:22;;15325:1;15319:4;15315:12;15346:18;15336:81;;15402:4;15394:6;15390:17;15380:27;;15336:81;15464:2;15456:6;15453:14;15433:18;15430:38;15427:84;;15483:18;;:::i;:::-;15427:84;15248:269;15197:320;;;:::o;15523:332::-;15644:4;15682:2;15671:9;15667:18;15659:26;;15695:71;15763:1;15752:9;15748:17;15739:6;15695:71;:::i;:::-;15776:72;15844:2;15833:9;15829:18;15820:6;15776:72;:::i;:::-;15523:332;;;;;:::o;15861:137::-;15915:5;15946:6;15940:13;15931:22;;15962:30;15986:5;15962:30;:::i;:::-;15861:137;;;;:::o;16004:345::-;16071:6;16120:2;16108:9;16099:7;16095:23;16091:32;16088:119;;;16126:79;;:::i;:::-;16088:119;16246:1;16271:61;16324:7;16315:6;16304:9;16300:22;16271:61;:::i;:::-;16261:71;;16217:125;16004:345;;;;:::o;16355:143::-;16412:5;16443:6;16437:13;16428:22;;16459:33;16486:5;16459:33;:::i;:::-;16355:143;;;;:::o;16504:351::-;16574:6;16623:2;16611:9;16602:7;16598:23;16594:32;16591:119;;;16629:79;;:::i;:::-;16591:119;16749:1;16774:64;16830:7;16821:6;16810:9;16806:22;16774:64;:::i;:::-;16764:74;;16720:128;16504:351;;;;:::o;16861:180::-;16909:77;16906:1;16899:88;17006:4;17003:1;16996:15;17030:4;17027:1;17020:15;17047:233;17086:3;17109:24;17127:5;17109:24;:::i;:::-;17100:33;;17155:66;17148:5;17145:77;17142:103;;17225:18;;:::i;:::-;17142:103;17272:1;17265:5;17261:13;17254:20;;17047:233;;;:::o;17286:191::-;17326:3;17345:20;17363:1;17345:20;:::i;:::-;17340:25;;17379:20;17397:1;17379:20;:::i;:::-;17374:25;;17422:1;17419;17415:9;17408:16;;17443:3;17440:1;17437:10;17434:36;;;17450:18;;:::i;:::-;17434:36;17286:191;;;;:::o;17483:159::-;17623:11;17619:1;17611:6;17607:14;17600:35;17483:159;:::o;17648:365::-;17790:3;17811:66;17875:1;17870:3;17811:66;:::i;:::-;17804:73;;17886:93;17975:3;17886:93;:::i;:::-;18004:2;17999:3;17995:12;17988:19;;17648:365;;;:::o;18019:419::-;18185:4;18223:2;18212:9;18208:18;18200:26;;18272:9;18266:4;18262:20;18258:1;18247:9;18243:17;18236:47;18300:131;18426:4;18300:131;:::i;:::-;18292:139;;18019:419;;;:::o;18444:180::-;18492:77;18489:1;18482:88;18589:4;18586:1;18579:15;18613:4;18610:1;18603:15;18630:141;18679:4;18702:3;18694:11;;18725:3;18722:1;18715:14;18759:4;18756:1;18746:18;18738:26;;18630:141;;;:::o;18777:93::-;18814:6;18861:2;18856;18849:5;18845:14;18841:23;18831:33;;18777:93;;;:::o;18876:107::-;18920:8;18970:5;18964:4;18960:16;18939:37;;18876:107;;;;:::o;18989:393::-;19058:6;19108:1;19096:10;19092:18;19131:97;19161:66;19150:9;19131:97;:::i;:::-;19249:39;19279:8;19268:9;19249:39;:::i;:::-;19237:51;;19321:4;19317:9;19310:5;19306:21;19297:30;;19370:4;19360:8;19356:19;19349:5;19346:30;19336:40;;19065:317;;18989:393;;;;;:::o;19388:60::-;19416:3;19437:5;19430:12;;19388:60;;;:::o;19454:142::-;19504:9;19537:53;19555:34;19564:24;19582:5;19564:24;:::i;:::-;19555:34;:::i;:::-;19537:53;:::i;:::-;19524:66;;19454:142;;;:::o;19602:75::-;19645:3;19666:5;19659:12;;19602:75;;;:::o;19683:269::-;19793:39;19824:7;19793:39;:::i;:::-;19854:91;19903:41;19927:16;19903:41;:::i;:::-;19895:6;19888:4;19882:11;19854:91;:::i;:::-;19848:4;19841:105;19759:193;19683:269;;;:::o;19958:73::-;20003:3;19958:73;:::o;20037:189::-;20114:32;;:::i;:::-;20155:65;20213:6;20205;20199:4;20155:65;:::i;:::-;20090:136;20037:189;;:::o;20232:186::-;20292:120;20309:3;20302:5;20299:14;20292:120;;;20363:39;20400:1;20393:5;20363:39;:::i;:::-;20336:1;20329:5;20325:13;20316:22;;20292:120;;;20232:186;;:::o;20424:543::-;20525:2;20520:3;20517:11;20514:446;;;20559:38;20591:5;20559:38;:::i;:::-;20643:29;20661:10;20643:29;:::i;:::-;20633:8;20629:44;20826:2;20814:10;20811:18;20808:49;;;20847:8;20832:23;;20808:49;20870:80;20926:22;20944:3;20926:22;:::i;:::-;20916:8;20912:37;20899:11;20870:80;:::i;:::-;20529:431;;20514:446;20424:543;;;:::o;20973:117::-;21027:8;21077:5;21071:4;21067:16;21046:37;;20973:117;;;;:::o;21096:169::-;21140:6;21173:51;21221:1;21217:6;21209:5;21206:1;21202:13;21173:51;:::i;:::-;21169:56;21254:4;21248;21244:15;21234:25;;21147:118;21096:169;;;;:::o;21270:295::-;21346:4;21492:29;21517:3;21511:4;21492:29;:::i;:::-;21484:37;;21554:3;21551:1;21547:11;21541:4;21538:21;21530:29;;21270:295;;;;:::o;21570:1395::-;21687:37;21720:3;21687:37;:::i;:::-;21789:18;21781:6;21778:30;21775:56;;;21811:18;;:::i;:::-;21775:56;21855:38;21887:4;21881:11;21855:38;:::i;:::-;21940:67;22000:6;21992;21986:4;21940:67;:::i;:::-;22034:1;22058:4;22045:17;;22090:2;22082:6;22079:14;22107:1;22102:618;;;;22764:1;22781:6;22778:77;;;22830:9;22825:3;22821:19;22815:26;22806:35;;22778:77;22881:67;22941:6;22934:5;22881:67;:::i;:::-;22875:4;22868:81;22737:222;22072:887;;22102:618;22154:4;22150:9;22142:6;22138:22;22188:37;22220:4;22188:37;:::i;:::-;22247:1;22261:208;22275:7;22272:1;22269:14;22261:208;;;22354:9;22349:3;22345:19;22339:26;22331:6;22324:42;22405:1;22397:6;22393:14;22383:24;;22452:2;22441:9;22437:18;22424:31;;22298:4;22295:1;22291:12;22286:17;;22261:208;;;22497:6;22488:7;22485:19;22482:179;;;22555:9;22550:3;22546:19;22540:26;22598:48;22640:4;22632:6;22628:17;22617:9;22598:48;:::i;:::-;22590:6;22583:64;22505:156;22482:179;22707:1;22703;22695:6;22691:14;22687:22;22681:4;22674:36;22109:611;;;22072:887;;21662:1303;;;21570:1395;;:::o;22971:173::-;23111:25;23107:1;23099:6;23095:14;23088:49;22971:173;:::o;23150:366::-;23292:3;23313:67;23377:2;23372:3;23313:67;:::i;:::-;23306:74;;23389:93;23478:3;23389:93;:::i;:::-;23507:2;23502:3;23498:12;23491:19;;23150:366;;;:::o;23522:419::-;23688:4;23726:2;23715:9;23711:18;23703:26;;23775:9;23769:4;23765:20;23761:1;23750:9;23746:17;23739:47;23803:131;23929:4;23803:131;:::i;:::-;23795:139;;23522:419;;;:::o;23947:234::-;24087:34;24083:1;24075:6;24071:14;24064:58;24156:17;24151:2;24143:6;24139:15;24132:42;23947:234;:::o;24187:366::-;24329:3;24350:67;24414:2;24409:3;24350:67;:::i;:::-;24343:74;;24426:93;24515:3;24426:93;:::i;:::-;24544:2;24539:3;24535:12;24528:19;;24187:366;;;:::o;24559:419::-;24725:4;24763:2;24752:9;24748:18;24740:26;;24812:9;24806:4;24802:20;24798:1;24787:9;24783:17;24776:47;24840:131;24966:4;24840:131;:::i;:::-;24832:139;;24559:419;;;:::o;24984:148::-;25086:11;25123:3;25108:18;;24984:148;;;;:::o;25162:874::-;25265:3;25302:5;25296:12;25331:36;25357:9;25331:36;:::i;:::-;25383:89;25465:6;25460:3;25383:89;:::i;:::-;25376:96;;25503:1;25492:9;25488:17;25519:1;25514:166;;;;25694:1;25689:341;;;;25481:549;;25514:166;25598:4;25594:9;25583;25579:25;25574:3;25567:38;25660:6;25653:14;25646:22;25638:6;25634:35;25629:3;25625:45;25618:52;;25514:166;;25689:341;25756:38;25788:5;25756:38;:::i;:::-;25816:1;25830:154;25844:6;25841:1;25838:13;25830:154;;;25918:7;25912:14;25908:1;25903:3;25899:11;25892:35;25968:1;25959:7;25955:15;25944:26;;25866:4;25863:1;25859:12;25854:17;;25830:154;;;26013:6;26008:3;26004:16;25997:23;;25696:334;;25481:549;;25269:767;;25162:874;;;;:::o;26042:390::-;26148:3;26176:39;26209:5;26176:39;:::i;:::-;26231:89;26313:6;26308:3;26231:89;:::i;:::-;26224:96;;26329:65;26387:6;26382:3;26375:4;26368:5;26364:16;26329:65;:::i;:::-;26419:6;26414:3;26410:16;26403:23;;26152:280;26042:390;;;;:::o;26438:155::-;26578:7;26574:1;26566:6;26562:14;26555:31;26438:155;:::o;26599:400::-;26759:3;26780:84;26862:1;26857:3;26780:84;:::i;:::-;26773:91;;26873:93;26962:3;26873:93;:::i;:::-;26991:1;26986:3;26982:11;26975:18;;26599:400;;;:::o;27005:695::-;27283:3;27305:92;27393:3;27384:6;27305:92;:::i;:::-;27298:99;;27414:95;27505:3;27496:6;27414:95;:::i;:::-;27407:102;;27526:148;27670:3;27526:148;:::i;:::-;27519:155;;27691:3;27684:10;;27005:695;;;;;:::o;27706:171::-;27846:23;27842:1;27834:6;27830:14;27823:47;27706:171;:::o;27883:366::-;28025:3;28046:67;28110:2;28105:3;28046:67;:::i;:::-;28039:74;;28122:93;28211:3;28122:93;:::i;:::-;28240:2;28235:3;28231:12;28224:19;;27883:366;;;:::o;28255:419::-;28421:4;28459:2;28448:9;28444:18;28436:26;;28508:9;28502:4;28498:20;28494:1;28483:9;28479:17;28472:47;28536:131;28662:4;28536:131;:::i;:::-;28528:139;;28255:419;;;:::o;28680:171::-;28820:23;28816:1;28808:6;28804:14;28797:47;28680:171;:::o;28857:366::-;28999:3;29020:67;29084:2;29079:3;29020:67;:::i;:::-;29013:74;;29096:93;29185:3;29096:93;:::i;:::-;29214:2;29209:3;29205:12;29198:19;;28857:366;;;:::o;29229:419::-;29395:4;29433:2;29422:9;29418:18;29410:26;;29482:9;29476:4;29472:20;29468:1;29457:9;29453:17;29446:47;29510:131;29636:4;29510:131;:::i;:::-;29502:139;;29229:419;;;:::o;29654:172::-;29794:24;29790:1;29782:6;29778:14;29771:48;29654:172;:::o;29832:366::-;29974:3;29995:67;30059:2;30054:3;29995:67;:::i;:::-;29988:74;;30071:93;30160:3;30071:93;:::i;:::-;30189:2;30184:3;30180:12;30173:19;;29832:366;;;:::o;30204:419::-;30370:4;30408:2;30397:9;30393:18;30385:26;;30457:9;30451:4;30447:20;30443:1;30432:9;30428:17;30421:47;30485:131;30611:4;30485:131;:::i;:::-;30477:139;;30204:419;;;:::o;30629:172::-;30769:24;30765:1;30757:6;30753:14;30746:48;30629:172;:::o;30807:366::-;30949:3;30970:67;31034:2;31029:3;30970:67;:::i;:::-;30963:74;;31046:93;31135:3;31046:93;:::i;:::-;31164:2;31159:3;31155:12;31148:19;;30807:366;;;:::o;31179:419::-;31345:4;31383:2;31372:9;31368:18;31360:26;;31432:9;31426:4;31422:20;31418:1;31407:9;31403:17;31396:47;31460:131;31586:4;31460:131;:::i;:::-;31452:139;;31179:419;;;:::o;31604:410::-;31644:7;31667:20;31685:1;31667:20;:::i;:::-;31662:25;;31701:20;31719:1;31701:20;:::i;:::-;31696:25;;31756:1;31753;31749:9;31778:30;31796:11;31778:30;:::i;:::-;31767:41;;31957:1;31948:7;31944:15;31941:1;31938:22;31918:1;31911:9;31891:83;31868:139;;31987:18;;:::i;:::-;31868:139;31652:362;31604:410;;;;:::o;32020:172::-;32160:24;32156:1;32148:6;32144:14;32137:48;32020:172;:::o;32198:366::-;32340:3;32361:67;32425:2;32420:3;32361:67;:::i;:::-;32354:74;;32437:93;32526:3;32437:93;:::i;:::-;32555:2;32550:3;32546:12;32539:19;;32198:366;;;:::o;32570:419::-;32736:4;32774:2;32763:9;32759:18;32751:26;;32823:9;32817:4;32813:20;32809:1;32798:9;32794:17;32787:47;32851:131;32977:4;32851:131;:::i;:::-;32843:139;;32570:419;;;:::o;32995:165::-;33135:17;33131:1;33123:6;33119:14;33112:41;32995:165;:::o;33166:366::-;33308:3;33329:67;33393:2;33388:3;33329:67;:::i;:::-;33322:74;;33405:93;33494:3;33405:93;:::i;:::-;33523:2;33518:3;33514:12;33507:19;;33166:366;;;:::o;33538:419::-;33704:4;33742:2;33731:9;33727:18;33719:26;;33791:9;33785:4;33781:20;33777:1;33766:9;33762:17;33755:47;33819:131;33945:4;33819:131;:::i;:::-;33811:139;;33538:419;;;:::o;33963:225::-;34103:34;34099:1;34091:6;34087:14;34080:58;34172:8;34167:2;34159:6;34155:15;34148:33;33963:225;:::o;34194:366::-;34336:3;34357:67;34421:2;34416:3;34357:67;:::i;:::-;34350:74;;34433:93;34522:3;34433:93;:::i;:::-;34551:2;34546:3;34542:12;34535:19;;34194:366;;;:::o;34566:419::-;34732:4;34770:2;34759:9;34755:18;34747:26;;34819:9;34813:4;34809:20;34805:1;34794:9;34790:17;34783:47;34847:131;34973:4;34847:131;:::i;:::-;34839:139;;34566:419;;;:::o;34991:182::-;35131:34;35127:1;35119:6;35115:14;35108:58;34991:182;:::o;35179:366::-;35321:3;35342:67;35406:2;35401:3;35342:67;:::i;:::-;35335:74;;35418:93;35507:3;35418:93;:::i;:::-;35536:2;35531:3;35527:12;35520:19;;35179:366;;;:::o;35551:419::-;35717:4;35755:2;35744:9;35740:18;35732:26;;35804:9;35798:4;35794:20;35790:1;35779:9;35775:17;35768:47;35832:131;35958:4;35832:131;:::i;:::-;35824:139;;35551:419;;;:::o;35976:98::-;36027:6;36061:5;36055:12;36045:22;;35976:98;;;:::o;36080:168::-;36163:11;36197:6;36192:3;36185:19;36237:4;36232:3;36228:14;36213:29;;36080:168;;;;:::o;36254:373::-;36340:3;36368:38;36400:5;36368:38;:::i;:::-;36422:70;36485:6;36480:3;36422:70;:::i;:::-;36415:77;;36501:65;36559:6;36554:3;36547:4;36540:5;36536:16;36501:65;:::i;:::-;36591:29;36613:6;36591:29;:::i;:::-;36586:3;36582:39;36575:46;;36344:283;36254:373;;;;:::o;36633:640::-;36828:4;36866:3;36855:9;36851:19;36843:27;;36880:71;36948:1;36937:9;36933:17;36924:6;36880:71;:::i;:::-;36961:72;37029:2;37018:9;37014:18;37005:6;36961:72;:::i;:::-;37043;37111:2;37100:9;37096:18;37087:6;37043:72;:::i;:::-;37162:9;37156:4;37152:20;37147:2;37136:9;37132:18;37125:48;37190:76;37261:4;37252:6;37190:76;:::i;:::-;37182:84;;36633:640;;;;;;;:::o;37279:141::-;37335:5;37366:6;37360:13;37351:22;;37382:32;37408:5;37382:32;:::i;:::-;37279:141;;;;:::o;37426:349::-;37495:6;37544:2;37532:9;37523:7;37519:23;37515:32;37512:119;;;37550:79;;:::i;:::-;37512:119;37670:1;37695:63;37750:7;37741:6;37730:9;37726:22;37695:63;:::i;:::-;37685:73;;37641:127;37426:349;;;;:::o;37781:180::-;37829:77;37826:1;37819:88;37926:4;37923:1;37916:15;37950:4;37947:1;37940:15

Swarm Source

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