ETH Price: $3,439.94 (-1.17%)
Gas: 9 Gwei

Token

Bridge Girls (Bgirls)
 

Overview

Max Total Supply

221 Bgirls

Holders

162

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
7 Bgirls
0x778a36a75a870375522869b1d1f930ae76072ef5
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:
BridgeGirls

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-10-26
*/

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_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) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @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] = _HEX_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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

// File: contracts/contr.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;





contract BridgeGirls is ERC721A, Ownable, ReentrancyGuard {
	using Strings for uint256;

    uint256 public constant MAX_PER_PREMINT_WALLET = 6;
	uint256 public maxSupply = 5047;

    uint256 public publicMintCost = 0.04 ether;
	uint256 public transferPool = 0.0125 ether;


	bool public isPublicMint = false;
    bool public isPreMint = false;
    bool public isRevealed = false;
	bool public isRefundStart = false;

    string private baseURL = "";
    string public hiddenMetadataUrl = "";

    mapping(uint256 => mapping(address => bool)) whitelist;

	uint256[] public refundList;

	mapping(address => uint256) private _preMintWalletCount;
	mapping(address => uint256) private _publicMintWalletCount;
	

	constructor(
		string memory _hiddenMetadataUrl
	)
	ERC721A("Bridge Girls", "Bgirls") {
		sethiddenMetadataUrl(_hiddenMetadataUrl);
    }

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

    function setBaseUri(string memory _baseURL) external onlyOwner {
	    baseURL = _baseURL;
	}

    function sethiddenMetadataUrl(string memory _hiddenMetadataUrl) public onlyOwner {
	    hiddenMetadataUrl = _hiddenMetadataUrl;
	}

    function reveal() external onlyOwner {
	    isRevealed = true;
	}

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

	

	function isRefund(uint256 _tokenid) public view returns (bool) {
        for (uint256 i = 0; i < refundList.length; i++) {
            if (refundList[i] == _tokenid) {
                return true;
            }
        }
        return false;
    }

	function publicMintStart() external onlyOwner {
	    isPublicMint = true;
	}

    function preMintStart() external onlyOwner {
	    isPreMint = true;
	}

	function RefundStart() external onlyOwner {
	    isRefundStart = true;
	}

	function RefundEnd() external onlyOwner {
	    isRefundStart = false;
	}

	function withdraw() external onlyOwner {
		(bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
	}

	function refund(uint256 tokenId) external {
		require(isRefundStart==true, "Not in refund period");
		require(isRefund(tokenId)==true, "That refund token doesn't exist");
        require(ownerOf(tokenId)==msg.sender,"You did not own this token");
		(bool success, ) = payable(msg.sender).call{
            value: publicMintCost
        }("");
		_burn(tokenId);
	}

    function isWhitelisted(address _user) public view returns(uint){
        for(uint i = 1; i <= 6; i++){
            if(whitelist[i][_user]) return i;
        }

        return 0;
    }

    modifier premintChecks(address _user, uint256 mintAmount){
        require(isPreMint, "Pre mint not start");
        require(_totalMinted() + mintAmount <= maxSupply,"Exceeds max supply");
        require(mintAmount <= MAX_PER_PREMINT_WALLET,"Exceeds max per transaction");

        uint wlId = isWhitelisted(_user);
        require(wlId != 0, "User is not whitelisted");
        require(_preMintWalletCount[_user] + mintAmount <= wlId,"Exceeds max per wallet");
        _;
    }

    function PreMint(uint256 mintAmount) external payable premintChecks(msg.sender, mintAmount){
        _preMintWalletCount[msg.sender] += mintAmount;
		_safeMint(msg.sender, mintAmount);
    }

	function setMaxSupply(uint256 newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

	function tokenURI(uint256 tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "That token doesn't exist");
        if(isRevealed == false) {
            return hiddenMetadataUrl;
        }
        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : "";
	}

	function publicMint(uint256 mintAmount) external payable {
		require(isPublicMint, "Public mint not start");
        require(_totalMinted() + mintAmount <= maxSupply,"Exceeds max supply");
        require(msg.value >= publicMintCost * mintAmount, "insufficient funds");
		_publicMintWalletCount[msg.sender] += mintAmount;
		_safeMint(msg.sender, mintAmount);
        (bool success, ) = payable(0x3948B7368FEB1728D38695a5E765aD85f62e9859).call{
            value: transferPool * mintAmount
        }("");
	}

	function setPublicCost(uint256 _newCost) public onlyOwner{
		publicMintCost = _newCost;
	}

    function airDrop(address to, uint256 mintAmount) external onlyOwner {
		require(
			_totalMinted() + mintAmount <= maxSupply,
			"Exceeds max supply"
		);
		_safeMint(to, mintAmount);
	}

	function setRefundlist(uint256[] calldata _ids) public onlyOwner {
        delete refundList;
        refundList= _ids;
    }

    function whitelistUser(address[] memory _users, uint256 _wlId, bool _state) public onlyOwner{
		for(uint i = 0; i < _users.length; i++){
        	whitelist[_wlId][_users[i]] = _state;
		}
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_hiddenMetadataUrl","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_PREMINT_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"PreMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"RefundEnd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"RefundStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isPreMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenid","type":"uint256"}],"name":"isRefund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRefundStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"refundList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURL","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"setRefundlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUrl","type":"string"}],"name":"sethiddenMetadataUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"uint256","name":"_wlId","type":"uint256"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526113b7600a55668e1bc9bf040000600b55662c68af0bb14000600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506000600d60036101000a81548160ff02191690831515021790555060405180602001604052806000815250600e9081620000ac91906200061a565b5060405180602001604052806000815250600f9081620000cd91906200061a565b50348015620000db57600080fd5b5060405162004a7038038062004a70833981810160405281019062000101919062000865565b6040518060400160405280600c81526020017f427269646765204769726c7300000000000000000000000000000000000000008152506040518060400160405280600681526020017f426769726c73000000000000000000000000000000000000000000000000000081525081600290816200017e91906200061a565b5080600390816200019091906200061a565b50620001a1620001e960201b60201c565b6000819055505050620001c9620001bd620001f260201b60201c565b620001fa60201b60201c565b6001600981905550620001e281620002c060201b60201c565b5062000939565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002d0620002e560201b60201c565b80600f9081620002e191906200061a565b5050565b620002f5620001f260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031b6200037660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000374576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036b9062000917565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200042257607f821691505b602082108103620004385762000437620003da565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004a27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000463565b620004ae868362000463565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004fb620004f5620004ef84620004c6565b620004d0565b620004c6565b9050919050565b6000819050919050565b6200051783620004da565b6200052f620005268262000502565b84845462000470565b825550505050565b600090565b6200054662000537565b620005538184846200050c565b505050565b5b818110156200057b576200056f6000826200053c565b60018101905062000559565b5050565b601f821115620005ca5762000594816200043e565b6200059f8462000453565b81016020851015620005af578190505b620005c7620005be8562000453565b83018262000558565b50505b505050565b600082821c905092915050565b6000620005ef60001984600802620005cf565b1980831691505092915050565b60006200060a8383620005dc565b9150826002028217905092915050565b6200062582620003a0565b67ffffffffffffffff811115620006415762000640620003ab565b5b6200064d825462000409565b6200065a8282856200057f565b600060209050601f8311600181146200069257600084156200067d578287015190505b620006898582620005fc565b865550620006f9565b601f198416620006a2866200043e565b60005b82811015620006cc57848901518255600182019150602085019450602081019050620006a5565b86831015620006ec5784890151620006e8601f891682620005dc565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200073b826200071f565b810181811067ffffffffffffffff821117156200075d576200075c620003ab565b5b80604052505050565b60006200077262000701565b905062000780828262000730565b919050565b600067ffffffffffffffff821115620007a357620007a2620003ab565b5b620007ae826200071f565b9050602081019050919050565b60005b83811015620007db578082015181840152602081019050620007be565b60008484015250505050565b6000620007fe620007f88462000785565b62000766565b9050828152602081018484840111156200081d576200081c6200071a565b5b6200082a848285620007bb565b509392505050565b600082601f8301126200084a576200084962000715565b5b81516200085c848260208601620007e7565b91505092915050565b6000602082840312156200087e576200087d6200070b565b5b600082015167ffffffffffffffff8111156200089f576200089e62000710565b5b620008ad8482850162000832565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620008ff602083620008b6565b91506200090c82620008c7565b602082019050919050565b600060208201905081810360008301526200093281620008f0565b9050919050565b61412780620009496000396000f3fe6080604052600436106102725760003560e01c8063811d24371161014f578063b88d4fde116100c1578063d1a949431161007a578063d1a94943146108c4578063d5abeb01146108db578063e79973a114610906578063e985e9c514610931578063f2fde38b1461096e578063fc75b4181461099757610272565b8063b88d4fde146107e4578063b912e64a14610800578063bdc0b2841461081c578063c435c7a114610847578063c87b56dd1461085e578063cb2b1c5e1461089b57610272565b806395d89b411161011357806395d89b41146106e8578063973566c214610713578063a0bcfc7f14610750578063a22cb46514610779578063a475b5dd146107a2578063b759158a146107b957610272565b8063811d243714610629578063864bab32146106525780638c7700671461067b5780638cfec4c0146106a65780638da5cb5b146106bd57610272565b80632db11544116101e857806342842e0e116101ac57806342842e0e1461052857806354214f69146105445780636352211e1461056f5780636f8b44b0146105ac57806370a08231146105d5578063715018a61461061257610272565b80632db11544146104625780633057931f1461047e578063395819b7146104a95780633af32abf146104d45780633ccfd60b1461051157610272565b80631638fef01161023a5780631638fef01461036157806316503e611461038c57806318160ddd146103c95780632322afb6146103f457806323b872dd1461041d578063278ecde11461043957610272565b806301ffc9a714610277578063045f7850146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612c99565b6109ae565b6040516102ab9190612ce1565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190612d90565b610a40565b005b3480156102e957600080fd5b506102f2610aad565b6040516102ff9190612e60565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612e82565b610b3f565b60405161033c9190612ebe565b60405180910390f35b61035f600480360381019061035a9190612d90565b610bbe565b005b34801561036d57600080fd5b50610376610d02565b6040516103839190612e60565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190612e82565b610d90565b6040516103c09190612ee8565b60405180910390f35b3480156103d557600080fd5b506103de610db4565b6040516103eb9190612ee8565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612f68565b610dcb565b005b61043760048036038101906104329190612fb5565b610df7565b005b34801561044557600080fd5b50610460600480360381019061045b9190612e82565b611119565b005b61047c60048036038101906104779190612e82565b6112af565b005b34801561048a57600080fd5b50610493611496565b6040516104a09190612ce1565b60405180910390f35b3480156104b557600080fd5b506104be6114a9565b6040516104cb9190612ee8565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190613008565b6114af565b6040516105089190612ee8565b60405180910390f35b34801561051d57600080fd5b50610526611549565b005b610542600480360381019061053d9190612fb5565b6115ca565b005b34801561055057600080fd5b506105596115ea565b6040516105669190612ce1565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190612e82565b6115fd565b6040516105a39190612ebe565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190612e82565b61160f565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190613008565b611621565b6040516106099190612ee8565b60405180910390f35b34801561061e57600080fd5b506106276116d9565b005b34801561063557600080fd5b50610650600480360381019061064b9190612e82565b6116ed565b005b34801561065e57600080fd5b506106796004803603810190610674919061319f565b6116ff565b005b34801561068757600080fd5b506106906117ae565b60405161069d9190612ee8565b60405180910390f35b3480156106b257600080fd5b506106bb6117b4565b005b3480156106c957600080fd5b506106d26117d9565b6040516106df9190612ebe565b60405180910390f35b3480156106f457600080fd5b506106fd611803565b60405161070a9190612e60565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612e82565b611895565b6040516107479190612ce1565b60405180910390f35b34801561075c57600080fd5b50610777600480360381019061077291906132c3565b6118f7565b005b34801561078557600080fd5b506107a0600480360381019061079b919061330c565b611912565b005b3480156107ae57600080fd5b506107b7611a1d565b005b3480156107c557600080fd5b506107ce611a42565b6040516107db9190612ce1565b60405180910390f35b6107fe60048036038101906107f991906133ed565b611a55565b005b61081a60048036038101906108159190612e82565b611ac8565b005b34801561082857600080fd5b50610831611cf7565b60405161083e9190612ee8565b60405180910390f35b34801561085357600080fd5b5061085c611cfc565b005b34801561086a57600080fd5b5061088560048036038101906108809190612e82565b611d21565b6040516108929190612e60565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd91906132c3565b611e77565b005b3480156108d057600080fd5b506108d9611e92565b005b3480156108e757600080fd5b506108f0611eb7565b6040516108fd9190612ee8565b60405180910390f35b34801561091257600080fd5b5061091b611ebd565b6040516109289190612ce1565b60405180910390f35b34801561093d57600080fd5b5061095860048036038101906109539190613470565b611ed0565b6040516109659190612ce1565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190613008565b611f64565b005b3480156109a357600080fd5b506109ac611fe7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a395750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a4861200c565b600a5481610a5461208a565b610a5e91906134df565b1115610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a969061355f565b60405180910390fd5b610aa9828261209d565b5050565b606060028054610abc906135ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae8906135ae565b8015610b355780601f10610b0a57610100808354040283529160200191610b35565b820191906000526020600020905b815481529060010190602001808311610b1857829003601f168201915b5050505050905090565b6000610b4a826120bb565b610b80576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc9826115fd565b90508073ffffffffffffffffffffffffffffffffffffffff16610bea61211a565b73ffffffffffffffffffffffffffffffffffffffff1614610c4d57610c1681610c1161211a565b611ed0565b610c4c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f8054610d0f906135ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3b906135ae565b8015610d885780601f10610d5d57610100808354040283529160200191610d88565b820191906000526020600020905b815481529060010190602001808311610d6b57829003601f168201915b505050505081565b60118181548110610da057600080fd5b906000526020600020016000915090505481565b6000610dbe612122565b6001546000540303905090565b610dd361200c565b60116000610de19190612ba2565b818160119190610df2929190612bc3565b505050565b6000610e028261212b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e69576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e75846121f7565b91509150610e8b8187610e8661211a565b61221e565b610ed757610ea086610e9b61211a565b611ed0565b610ed6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610f3d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f4a8686866001612262565b8015610f5557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061102385610fff888887612268565b7c020000000000000000000000000000000000000000000000000000000017612290565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036110a957600060018501905060006004600083815260200190815260200160002054036110a75760005481146110a6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461111186868660016122bb565b505050505050565b60011515600d60039054906101000a900460ff1615151461116f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111669061362b565b60405180910390fd5b6001151561117c82611895565b1515146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590613697565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166111de826115fd565b73ffffffffffffffffffffffffffffffffffffffff1614611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90613703565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16600b5460405161125c90613754565b60006040518083038185875af1925050503d8060008114611299576040519150601f19603f3d011682016040523d82523d6000602084013e61129e565b606091505b505090506112ab826122c1565b5050565b600d60009054906101000a900460ff166112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f5906137b5565b60405180910390fd5b600a548161130a61208a565b61131491906134df565b1115611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c9061355f565b60405180910390fd5b80600b5461136391906137d5565b3410156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90613863565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113f491906134df565b92505081905550611405338261209d565b6000733948b7368feb1728d38695a5e765ad85f62e985973ffffffffffffffffffffffffffffffffffffffff1682600c5461144091906137d5565b60405161144c90613754565b60006040518083038185875af1925050503d8060008114611489576040519150601f19603f3d011682016040523d82523d6000602084013e61148e565b606091505b505090505050565b600d60009054906101000a900460ff1681565b600c5481565b600080600190505b6006811161153e576010600082815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561152b5780915050611544565b808061153690613883565b9150506114b7565b50600090505b919050565b61155161200c565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161157790613754565b60006040518083038185875af1925050503d80600081146115b4576040519150601f19603f3d011682016040523d82523d6000602084013e6115b9565b606091505b50509050806115c757600080fd5b50565b6115e583838360405180602001604052806000815250611a55565b505050565b600d60029054906101000a900460ff1681565b60006116088261212b565b9050919050565b61161761200c565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611688576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116e161200c565b6116eb60006122cf565b565b6116f561200c565b80600b8190555050565b61170761200c565b60005b83518110156117a8578160106000858152602001908152602001600020600086848151811061173c5761173b6138cb565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806117a090613883565b91505061170a565b50505050565b600b5481565b6117bc61200c565b6001600d60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611812906135ae565b80601f016020809104026020016040519081016040528092919081815260200182805461183e906135ae565b801561188b5780601f106118605761010080835404028352916020019161188b565b820191906000526020600020905b81548152906001019060200180831161186e57829003601f168201915b5050505050905090565b600080600090505b6011805490508110156118ec5782601182815481106118bf576118be6138cb565b5b9060005260206000200154036118d95760019150506118f2565b80806118e490613883565b91505061189d565b50600090505b919050565b6118ff61200c565b80600e908161190e9190613aa6565b5050565b806007600061191f61211a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119cc61211a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a119190612ce1565b60405180910390a35050565b611a2561200c565b6001600d60026101000a81548160ff021916908315150217905550565b600d60039054906101000a900460ff1681565b611a60848484610df7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ac257611a8b84848484612395565b611ac1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3381600d60019054906101000a900460ff16611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1090613bc4565b60405180910390fd5b600a5481611b2561208a565b611b2f91906134df565b1115611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b679061355f565b60405180910390fd5b6006811115611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90613c30565b60405180910390fd5b6000611bbf836114af565b905060008103611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90613c9c565b60405180910390fd5b8082601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c5091906134df565b1115611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8890613d08565b60405180910390fd5b83601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ce091906134df565b92505081905550611cf1338561209d565b50505050565b600681565b611d0461200c565b6001600d60016101000a81548160ff021916908315150217905550565b6060611d2c826120bb565b611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290613d74565b60405180910390fd5b60001515600d60029054906101000a900460ff16151503611e1857600f8054611d93906135ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbf906135ae565b8015611e0c5780601f10611de157610100808354040283529160200191611e0c565b820191906000526020600020905b815481529060010190602001808311611def57829003601f168201915b50505050509050611e72565b6000611e226124e5565b5111611e3d5760405180602001604052806000815250611e6f565b611e456124e5565b611e4e83612577565b604051602001611e5f929190613e1c565b6040516020818303038152906040525b90505b919050565b611e7f61200c565b80600f9081611e8e9190613aa6565b5050565b611e9a61200c565b6001600d60036101000a81548160ff021916908315150217905550565b600a5481565b600d60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f6c61200c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290613ebd565b60405180910390fd5b611fe4816122cf565b50565b611fef61200c565b6000600d60036101000a81548160ff021916908315150217905550565b6120146126d7565b73ffffffffffffffffffffffffffffffffffffffff166120326117d9565b73ffffffffffffffffffffffffffffffffffffffff1614612088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207f90613f29565b60405180910390fd5b565b6000612094612122565b60005403905090565b6120b78282604051806020016040528060008152506126df565b5050565b6000816120c6612122565b111580156120d5575060005482105b8015612113575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061213a612122565b116121c0576000548110156121bf5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036121bd575b600081036121b3576004600083600190039350838152602001908152602001600020549050612189565b80925050506121f2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861227f86868461277c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6122cc816000612785565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123bb61211a565b8786866040518563ffffffff1660e01b81526004016123dd9493929190613f9e565b6020604051808303816000875af192505050801561241957506040513d601f19601f820116820180604052508101906124169190613fff565b60015b612492573d8060008114612449576040519150601f19603f3d011682016040523d82523d6000602084013e61244e565b606091505b50600081510361248a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546124f4906135ae565b80601f0160208091040260200160405190810160405280929190818152602001828054612520906135ae565b801561256d5780601f106125425761010080835404028352916020019161256d565b820191906000526020600020905b81548152906001019060200180831161255057829003601f168201915b5050505050905090565b6060600082036125be576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126d2565b600082905060005b600082146125f05780806125d990613883565b915050600a826125e9919061405b565b91506125c6565b60008167ffffffffffffffff81111561260c5761260b613035565b5b6040519080825280601f01601f19166020018201604052801561263e5781602001600182028036833780820191505090505b5090505b600085146126cb57600182612657919061408c565b9150600a8561266691906140c0565b603061267291906134df565b60f81b818381518110612688576126876138cb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126c4919061405b565b9450612642565b8093505050505b919050565b600033905090565b6126e983836129d7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461277757600080549050600083820390505b6127296000868380600101945086612395565b61275f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061271657816000541461277457600080fd5b50505b505050565b60009392505050565b60006127908361212b565b905060008190506000806127a3866121f7565b91509150841561280c576127bf81846127ba61211a565b61221e565b61280b576127d4836127cf61211a565b611ed0565b61280a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61281a836000886001612262565b801561282557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128cd8361288a85600088612268565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612290565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036129535760006001870190506000600460008381526020019081526020016000205403612951576000548114612950578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129bd8360008860016122bb565b600160008154809291906001019190505550505050505050565b60008054905060008203612a17576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a246000848385612262565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612a9b83612a8c6000866000612268565b612a9585612b92565b17612290565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b3c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b01565b5060008203612b77576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612b8d60008483856122bb565b505050565b60006001821460e11b9050919050565b5080546000825590600052602060002090810190612bc09190612c10565b50565b828054828255906000526020600020908101928215612bff579160200282015b82811115612bfe578235825591602001919060010190612be3565b5b509050612c0c9190612c10565b5090565b5b80821115612c29576000816000905550600101612c11565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c7681612c41565b8114612c8157600080fd5b50565b600081359050612c9381612c6d565b92915050565b600060208284031215612caf57612cae612c37565b5b6000612cbd84828501612c84565b91505092915050565b60008115159050919050565b612cdb81612cc6565b82525050565b6000602082019050612cf66000830184612cd2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2782612cfc565b9050919050565b612d3781612d1c565b8114612d4257600080fd5b50565b600081359050612d5481612d2e565b92915050565b6000819050919050565b612d6d81612d5a565b8114612d7857600080fd5b50565b600081359050612d8a81612d64565b92915050565b60008060408385031215612da757612da6612c37565b5b6000612db585828601612d45565b9250506020612dc685828601612d7b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e0a578082015181840152602081019050612def565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e3282612dd0565b612e3c8185612ddb565b9350612e4c818560208601612dec565b612e5581612e16565b840191505092915050565b60006020820190508181036000830152612e7a8184612e27565b905092915050565b600060208284031215612e9857612e97612c37565b5b6000612ea684828501612d7b565b91505092915050565b612eb881612d1c565b82525050565b6000602082019050612ed36000830184612eaf565b92915050565b612ee281612d5a565b82525050565b6000602082019050612efd6000830184612ed9565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612f2857612f27612f03565b5b8235905067ffffffffffffffff811115612f4557612f44612f08565b5b602083019150836020820283011115612f6157612f60612f0d565b5b9250929050565b60008060208385031215612f7f57612f7e612c37565b5b600083013567ffffffffffffffff811115612f9d57612f9c612c3c565b5b612fa985828601612f12565b92509250509250929050565b600080600060608486031215612fce57612fcd612c37565b5b6000612fdc86828701612d45565b9350506020612fed86828701612d45565b9250506040612ffe86828701612d7b565b9150509250925092565b60006020828403121561301e5761301d612c37565b5b600061302c84828501612d45565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61306d82612e16565b810181811067ffffffffffffffff8211171561308c5761308b613035565b5b80604052505050565b600061309f612c2d565b90506130ab8282613064565b919050565b600067ffffffffffffffff8211156130cb576130ca613035565b5b602082029050602081019050919050565b60006130ef6130ea846130b0565b613095565b9050808382526020820190506020840283018581111561311257613111612f0d565b5b835b8181101561313b57806131278882612d45565b845260208401935050602081019050613114565b5050509392505050565b600082601f83011261315a57613159612f03565b5b813561316a8482602086016130dc565b91505092915050565b61317c81612cc6565b811461318757600080fd5b50565b60008135905061319981613173565b92915050565b6000806000606084860312156131b8576131b7612c37565b5b600084013567ffffffffffffffff8111156131d6576131d5612c3c565b5b6131e286828701613145565b93505060206131f386828701612d7b565b92505060406132048682870161318a565b9150509250925092565b600080fd5b600067ffffffffffffffff82111561322e5761322d613035565b5b61323782612e16565b9050602081019050919050565b82818337600083830152505050565b600061326661326184613213565b613095565b9050828152602081018484840111156132825761328161320e565b5b61328d848285613244565b509392505050565b600082601f8301126132aa576132a9612f03565b5b81356132ba848260208601613253565b91505092915050565b6000602082840312156132d9576132d8612c37565b5b600082013567ffffffffffffffff8111156132f7576132f6612c3c565b5b61330384828501613295565b91505092915050565b6000806040838503121561332357613322612c37565b5b600061333185828601612d45565b92505060206133428582860161318a565b9150509250929050565b600067ffffffffffffffff82111561336757613366613035565b5b61337082612e16565b9050602081019050919050565b600061339061338b8461334c565b613095565b9050828152602081018484840111156133ac576133ab61320e565b5b6133b7848285613244565b509392505050565b600082601f8301126133d4576133d3612f03565b5b81356133e484826020860161337d565b91505092915050565b6000806000806080858703121561340757613406612c37565b5b600061341587828801612d45565b945050602061342687828801612d45565b935050604061343787828801612d7b565b925050606085013567ffffffffffffffff81111561345857613457612c3c565b5b613464878288016133bf565b91505092959194509250565b6000806040838503121561348757613486612c37565b5b600061349585828601612d45565b92505060206134a685828601612d45565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134ea82612d5a565b91506134f583612d5a565b925082820190508082111561350d5761350c6134b0565b5b92915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613549601283612ddb565b915061355482613513565b602082019050919050565b600060208201905081810360008301526135788161353c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135c657607f821691505b6020821081036135d9576135d861357f565b5b50919050565b7f4e6f7420696e20726566756e6420706572696f64000000000000000000000000600082015250565b6000613615601483612ddb565b9150613620826135df565b602082019050919050565b6000602082019050818103600083015261364481613608565b9050919050565b7f5468617420726566756e6420746f6b656e20646f65736e277420657869737400600082015250565b6000613681601f83612ddb565b915061368c8261364b565b602082019050919050565b600060208201905081810360008301526136b081613674565b9050919050565b7f596f7520646964206e6f74206f776e207468697320746f6b656e000000000000600082015250565b60006136ed601a83612ddb565b91506136f8826136b7565b602082019050919050565b6000602082019050818103600083015261371c816136e0565b9050919050565b600081905092915050565b50565b600061373e600083613723565b91506137498261372e565b600082019050919050565b600061375f82613731565b9150819050919050565b7f5075626c6963206d696e74206e6f742073746172740000000000000000000000600082015250565b600061379f601583612ddb565b91506137aa82613769565b602082019050919050565b600060208201905081810360008301526137ce81613792565b9050919050565b60006137e082612d5a565b91506137eb83612d5a565b92508282026137f981612d5a565b915082820484148315176138105761380f6134b0565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b600061384d601283612ddb565b915061385882613817565b602082019050919050565b6000602082019050818103600083015261387c81613840565b9050919050565b600061388e82612d5a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138c0576138bf6134b0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261395c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261391f565b613966868361391f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006139a361399e61399984612d5a565b61397e565b612d5a565b9050919050565b6000819050919050565b6139bd83613988565b6139d16139c9826139aa565b84845461392c565b825550505050565b600090565b6139e66139d9565b6139f18184846139b4565b505050565b5b81811015613a1557613a0a6000826139de565b6001810190506139f7565b5050565b601f821115613a5a57613a2b816138fa565b613a348461390f565b81016020851015613a43578190505b613a57613a4f8561390f565b8301826139f6565b50505b505050565b600082821c905092915050565b6000613a7d60001984600802613a5f565b1980831691505092915050565b6000613a968383613a6c565b9150826002028217905092915050565b613aaf82612dd0565b67ffffffffffffffff811115613ac857613ac7613035565b5b613ad282546135ae565b613add828285613a19565b600060209050601f831160018114613b105760008415613afe578287015190505b613b088582613a8a565b865550613b70565b601f198416613b1e866138fa565b60005b82811015613b4657848901518255600182019150602085019450602081019050613b21565b86831015613b635784890151613b5f601f891682613a6c565b8355505b6001600288020188555050505b505050505050565b7f507265206d696e74206e6f742073746172740000000000000000000000000000600082015250565b6000613bae601283612ddb565b9150613bb982613b78565b602082019050919050565b60006020820190508181036000830152613bdd81613ba1565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b6000613c1a601b83612ddb565b9150613c2582613be4565b602082019050919050565b60006020820190508181036000830152613c4981613c0d565b9050919050565b7f55736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b6000613c86601783612ddb565b9150613c9182613c50565b602082019050919050565b60006020820190508181036000830152613cb581613c79565b9050919050565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b6000613cf2601683612ddb565b9150613cfd82613cbc565b602082019050919050565b60006020820190508181036000830152613d2181613ce5565b9050919050565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b6000613d5e601883612ddb565b9150613d6982613d28565b602082019050919050565b60006020820190508181036000830152613d8d81613d51565b9050919050565b600081905092915050565b6000613daa82612dd0565b613db48185613d94565b9350613dc4818560208601612dec565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613e06600583613d94565b9150613e1182613dd0565b600582019050919050565b6000613e288285613d9f565b9150613e348284613d9f565b9150613e3f82613df9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ea7602683612ddb565b9150613eb282613e4b565b604082019050919050565b60006020820190508181036000830152613ed681613e9a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f13602083612ddb565b9150613f1e82613edd565b602082019050919050565b60006020820190508181036000830152613f4281613f06565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f7082613f49565b613f7a8185613f54565b9350613f8a818560208601612dec565b613f9381612e16565b840191505092915050565b6000608082019050613fb36000830187612eaf565b613fc06020830186612eaf565b613fcd6040830185612ed9565b8181036060830152613fdf8184613f65565b905095945050505050565b600081519050613ff981612c6d565b92915050565b60006020828403121561401557614014612c37565b5b600061402384828501613fea565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061406682612d5a565b915061407183612d5a565b9250826140815761408061402c565b5b828204905092915050565b600061409782612d5a565b91506140a283612d5a565b92508282039050818111156140ba576140b96134b0565b5b92915050565b60006140cb82612d5a565b91506140d683612d5a565b9250826140e6576140e561402c565b5b82820690509291505056fea264697066735822122050d27d5d348355be0ba5ceb93f50dc59a0add3a5e9749c10aa203dbd47bac9a364736f6c634300081100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f64776172666d61737465722e6d7970696e6174612e636c6f75642f697066732f516d593770327a39507a545a4d4d5243783261354878474133386d6342626874534179363242774634395332714400000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c8063811d24371161014f578063b88d4fde116100c1578063d1a949431161007a578063d1a94943146108c4578063d5abeb01146108db578063e79973a114610906578063e985e9c514610931578063f2fde38b1461096e578063fc75b4181461099757610272565b8063b88d4fde146107e4578063b912e64a14610800578063bdc0b2841461081c578063c435c7a114610847578063c87b56dd1461085e578063cb2b1c5e1461089b57610272565b806395d89b411161011357806395d89b41146106e8578063973566c214610713578063a0bcfc7f14610750578063a22cb46514610779578063a475b5dd146107a2578063b759158a146107b957610272565b8063811d243714610629578063864bab32146106525780638c7700671461067b5780638cfec4c0146106a65780638da5cb5b146106bd57610272565b80632db11544116101e857806342842e0e116101ac57806342842e0e1461052857806354214f69146105445780636352211e1461056f5780636f8b44b0146105ac57806370a08231146105d5578063715018a61461061257610272565b80632db11544146104625780633057931f1461047e578063395819b7146104a95780633af32abf146104d45780633ccfd60b1461051157610272565b80631638fef01161023a5780631638fef01461036157806316503e611461038c57806318160ddd146103c95780632322afb6146103f457806323b872dd1461041d578063278ecde11461043957610272565b806301ffc9a714610277578063045f7850146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612c99565b6109ae565b6040516102ab9190612ce1565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190612d90565b610a40565b005b3480156102e957600080fd5b506102f2610aad565b6040516102ff9190612e60565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190612e82565b610b3f565b60405161033c9190612ebe565b60405180910390f35b61035f600480360381019061035a9190612d90565b610bbe565b005b34801561036d57600080fd5b50610376610d02565b6040516103839190612e60565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190612e82565b610d90565b6040516103c09190612ee8565b60405180910390f35b3480156103d557600080fd5b506103de610db4565b6040516103eb9190612ee8565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612f68565b610dcb565b005b61043760048036038101906104329190612fb5565b610df7565b005b34801561044557600080fd5b50610460600480360381019061045b9190612e82565b611119565b005b61047c60048036038101906104779190612e82565b6112af565b005b34801561048a57600080fd5b50610493611496565b6040516104a09190612ce1565b60405180910390f35b3480156104b557600080fd5b506104be6114a9565b6040516104cb9190612ee8565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190613008565b6114af565b6040516105089190612ee8565b60405180910390f35b34801561051d57600080fd5b50610526611549565b005b610542600480360381019061053d9190612fb5565b6115ca565b005b34801561055057600080fd5b506105596115ea565b6040516105669190612ce1565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190612e82565b6115fd565b6040516105a39190612ebe565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190612e82565b61160f565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190613008565b611621565b6040516106099190612ee8565b60405180910390f35b34801561061e57600080fd5b506106276116d9565b005b34801561063557600080fd5b50610650600480360381019061064b9190612e82565b6116ed565b005b34801561065e57600080fd5b506106796004803603810190610674919061319f565b6116ff565b005b34801561068757600080fd5b506106906117ae565b60405161069d9190612ee8565b60405180910390f35b3480156106b257600080fd5b506106bb6117b4565b005b3480156106c957600080fd5b506106d26117d9565b6040516106df9190612ebe565b60405180910390f35b3480156106f457600080fd5b506106fd611803565b60405161070a9190612e60565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612e82565b611895565b6040516107479190612ce1565b60405180910390f35b34801561075c57600080fd5b50610777600480360381019061077291906132c3565b6118f7565b005b34801561078557600080fd5b506107a0600480360381019061079b919061330c565b611912565b005b3480156107ae57600080fd5b506107b7611a1d565b005b3480156107c557600080fd5b506107ce611a42565b6040516107db9190612ce1565b60405180910390f35b6107fe60048036038101906107f991906133ed565b611a55565b005b61081a60048036038101906108159190612e82565b611ac8565b005b34801561082857600080fd5b50610831611cf7565b60405161083e9190612ee8565b60405180910390f35b34801561085357600080fd5b5061085c611cfc565b005b34801561086a57600080fd5b5061088560048036038101906108809190612e82565b611d21565b6040516108929190612e60565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd91906132c3565b611e77565b005b3480156108d057600080fd5b506108d9611e92565b005b3480156108e757600080fd5b506108f0611eb7565b6040516108fd9190612ee8565b60405180910390f35b34801561091257600080fd5b5061091b611ebd565b6040516109289190612ce1565b60405180910390f35b34801561093d57600080fd5b5061095860048036038101906109539190613470565b611ed0565b6040516109659190612ce1565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190613008565b611f64565b005b3480156109a357600080fd5b506109ac611fe7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a395750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a4861200c565b600a5481610a5461208a565b610a5e91906134df565b1115610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a969061355f565b60405180910390fd5b610aa9828261209d565b5050565b606060028054610abc906135ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae8906135ae565b8015610b355780601f10610b0a57610100808354040283529160200191610b35565b820191906000526020600020905b815481529060010190602001808311610b1857829003601f168201915b5050505050905090565b6000610b4a826120bb565b610b80576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc9826115fd565b90508073ffffffffffffffffffffffffffffffffffffffff16610bea61211a565b73ffffffffffffffffffffffffffffffffffffffff1614610c4d57610c1681610c1161211a565b611ed0565b610c4c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f8054610d0f906135ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3b906135ae565b8015610d885780601f10610d5d57610100808354040283529160200191610d88565b820191906000526020600020905b815481529060010190602001808311610d6b57829003601f168201915b505050505081565b60118181548110610da057600080fd5b906000526020600020016000915090505481565b6000610dbe612122565b6001546000540303905090565b610dd361200c565b60116000610de19190612ba2565b818160119190610df2929190612bc3565b505050565b6000610e028261212b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e69576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e75846121f7565b91509150610e8b8187610e8661211a565b61221e565b610ed757610ea086610e9b61211a565b611ed0565b610ed6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610f3d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f4a8686866001612262565b8015610f5557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061102385610fff888887612268565b7c020000000000000000000000000000000000000000000000000000000017612290565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036110a957600060018501905060006004600083815260200190815260200160002054036110a75760005481146110a6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461111186868660016122bb565b505050505050565b60011515600d60039054906101000a900460ff1615151461116f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111669061362b565b60405180910390fd5b6001151561117c82611895565b1515146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b590613697565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166111de826115fd565b73ffffffffffffffffffffffffffffffffffffffff1614611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90613703565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16600b5460405161125c90613754565b60006040518083038185875af1925050503d8060008114611299576040519150601f19603f3d011682016040523d82523d6000602084013e61129e565b606091505b505090506112ab826122c1565b5050565b600d60009054906101000a900460ff166112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f5906137b5565b60405180910390fd5b600a548161130a61208a565b61131491906134df565b1115611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c9061355f565b60405180910390fd5b80600b5461136391906137d5565b3410156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90613863565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113f491906134df565b92505081905550611405338261209d565b6000733948b7368feb1728d38695a5e765ad85f62e985973ffffffffffffffffffffffffffffffffffffffff1682600c5461144091906137d5565b60405161144c90613754565b60006040518083038185875af1925050503d8060008114611489576040519150601f19603f3d011682016040523d82523d6000602084013e61148e565b606091505b505090505050565b600d60009054906101000a900460ff1681565b600c5481565b600080600190505b6006811161153e576010600082815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561152b5780915050611544565b808061153690613883565b9150506114b7565b50600090505b919050565b61155161200c565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161157790613754565b60006040518083038185875af1925050503d80600081146115b4576040519150601f19603f3d011682016040523d82523d6000602084013e6115b9565b606091505b50509050806115c757600080fd5b50565b6115e583838360405180602001604052806000815250611a55565b505050565b600d60029054906101000a900460ff1681565b60006116088261212b565b9050919050565b61161761200c565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611688576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116e161200c565b6116eb60006122cf565b565b6116f561200c565b80600b8190555050565b61170761200c565b60005b83518110156117a8578160106000858152602001908152602001600020600086848151811061173c5761173b6138cb565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806117a090613883565b91505061170a565b50505050565b600b5481565b6117bc61200c565b6001600d60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611812906135ae565b80601f016020809104026020016040519081016040528092919081815260200182805461183e906135ae565b801561188b5780601f106118605761010080835404028352916020019161188b565b820191906000526020600020905b81548152906001019060200180831161186e57829003601f168201915b5050505050905090565b600080600090505b6011805490508110156118ec5782601182815481106118bf576118be6138cb565b5b9060005260206000200154036118d95760019150506118f2565b80806118e490613883565b91505061189d565b50600090505b919050565b6118ff61200c565b80600e908161190e9190613aa6565b5050565b806007600061191f61211a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119cc61211a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a119190612ce1565b60405180910390a35050565b611a2561200c565b6001600d60026101000a81548160ff021916908315150217905550565b600d60039054906101000a900460ff1681565b611a60848484610df7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ac257611a8b84848484612395565b611ac1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3381600d60019054906101000a900460ff16611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1090613bc4565b60405180910390fd5b600a5481611b2561208a565b611b2f91906134df565b1115611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b679061355f565b60405180910390fd5b6006811115611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90613c30565b60405180910390fd5b6000611bbf836114af565b905060008103611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90613c9c565b60405180910390fd5b8082601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c5091906134df565b1115611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8890613d08565b60405180910390fd5b83601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ce091906134df565b92505081905550611cf1338561209d565b50505050565b600681565b611d0461200c565b6001600d60016101000a81548160ff021916908315150217905550565b6060611d2c826120bb565b611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290613d74565b60405180910390fd5b60001515600d60029054906101000a900460ff16151503611e1857600f8054611d93906135ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611dbf906135ae565b8015611e0c5780601f10611de157610100808354040283529160200191611e0c565b820191906000526020600020905b815481529060010190602001808311611def57829003601f168201915b50505050509050611e72565b6000611e226124e5565b5111611e3d5760405180602001604052806000815250611e6f565b611e456124e5565b611e4e83612577565b604051602001611e5f929190613e1c565b6040516020818303038152906040525b90505b919050565b611e7f61200c565b80600f9081611e8e9190613aa6565b5050565b611e9a61200c565b6001600d60036101000a81548160ff021916908315150217905550565b600a5481565b600d60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f6c61200c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290613ebd565b60405180910390fd5b611fe4816122cf565b50565b611fef61200c565b6000600d60036101000a81548160ff021916908315150217905550565b6120146126d7565b73ffffffffffffffffffffffffffffffffffffffff166120326117d9565b73ffffffffffffffffffffffffffffffffffffffff1614612088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207f90613f29565b60405180910390fd5b565b6000612094612122565b60005403905090565b6120b78282604051806020016040528060008152506126df565b5050565b6000816120c6612122565b111580156120d5575060005482105b8015612113575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061213a612122565b116121c0576000548110156121bf5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036121bd575b600081036121b3576004600083600190039350838152602001908152602001600020549050612189565b80925050506121f2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861227f86868461277c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6122cc816000612785565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123bb61211a565b8786866040518563ffffffff1660e01b81526004016123dd9493929190613f9e565b6020604051808303816000875af192505050801561241957506040513d601f19601f820116820180604052508101906124169190613fff565b60015b612492573d8060008114612449576040519150601f19603f3d011682016040523d82523d6000602084013e61244e565b606091505b50600081510361248a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546124f4906135ae565b80601f0160208091040260200160405190810160405280929190818152602001828054612520906135ae565b801561256d5780601f106125425761010080835404028352916020019161256d565b820191906000526020600020905b81548152906001019060200180831161255057829003601f168201915b5050505050905090565b6060600082036125be576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126d2565b600082905060005b600082146125f05780806125d990613883565b915050600a826125e9919061405b565b91506125c6565b60008167ffffffffffffffff81111561260c5761260b613035565b5b6040519080825280601f01601f19166020018201604052801561263e5781602001600182028036833780820191505090505b5090505b600085146126cb57600182612657919061408c565b9150600a8561266691906140c0565b603061267291906134df565b60f81b818381518110612688576126876138cb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126c4919061405b565b9450612642565b8093505050505b919050565b600033905090565b6126e983836129d7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461277757600080549050600083820390505b6127296000868380600101945086612395565b61275f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061271657816000541461277457600080fd5b50505b505050565b60009392505050565b60006127908361212b565b905060008190506000806127a3866121f7565b91509150841561280c576127bf81846127ba61211a565b61221e565b61280b576127d4836127cf61211a565b611ed0565b61280a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b61281a836000886001612262565b801561282557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128cd8361288a85600088612268565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612290565b600460008881526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008516036129535760006001870190506000600460008381526020019081526020016000205403612951576000548114612950578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129bd8360008860016122bb565b600160008154809291906001019190505550505050505050565b60008054905060008203612a17576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a246000848385612262565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612a9b83612a8c6000866000612268565b612a9585612b92565b17612290565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b3c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b01565b5060008203612b77576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612b8d60008483856122bb565b505050565b60006001821460e11b9050919050565b5080546000825590600052602060002090810190612bc09190612c10565b50565b828054828255906000526020600020908101928215612bff579160200282015b82811115612bfe578235825591602001919060010190612be3565b5b509050612c0c9190612c10565b5090565b5b80821115612c29576000816000905550600101612c11565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c7681612c41565b8114612c8157600080fd5b50565b600081359050612c9381612c6d565b92915050565b600060208284031215612caf57612cae612c37565b5b6000612cbd84828501612c84565b91505092915050565b60008115159050919050565b612cdb81612cc6565b82525050565b6000602082019050612cf66000830184612cd2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2782612cfc565b9050919050565b612d3781612d1c565b8114612d4257600080fd5b50565b600081359050612d5481612d2e565b92915050565b6000819050919050565b612d6d81612d5a565b8114612d7857600080fd5b50565b600081359050612d8a81612d64565b92915050565b60008060408385031215612da757612da6612c37565b5b6000612db585828601612d45565b9250506020612dc685828601612d7b565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e0a578082015181840152602081019050612def565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e3282612dd0565b612e3c8185612ddb565b9350612e4c818560208601612dec565b612e5581612e16565b840191505092915050565b60006020820190508181036000830152612e7a8184612e27565b905092915050565b600060208284031215612e9857612e97612c37565b5b6000612ea684828501612d7b565b91505092915050565b612eb881612d1c565b82525050565b6000602082019050612ed36000830184612eaf565b92915050565b612ee281612d5a565b82525050565b6000602082019050612efd6000830184612ed9565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612f2857612f27612f03565b5b8235905067ffffffffffffffff811115612f4557612f44612f08565b5b602083019150836020820283011115612f6157612f60612f0d565b5b9250929050565b60008060208385031215612f7f57612f7e612c37565b5b600083013567ffffffffffffffff811115612f9d57612f9c612c3c565b5b612fa985828601612f12565b92509250509250929050565b600080600060608486031215612fce57612fcd612c37565b5b6000612fdc86828701612d45565b9350506020612fed86828701612d45565b9250506040612ffe86828701612d7b565b9150509250925092565b60006020828403121561301e5761301d612c37565b5b600061302c84828501612d45565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61306d82612e16565b810181811067ffffffffffffffff8211171561308c5761308b613035565b5b80604052505050565b600061309f612c2d565b90506130ab8282613064565b919050565b600067ffffffffffffffff8211156130cb576130ca613035565b5b602082029050602081019050919050565b60006130ef6130ea846130b0565b613095565b9050808382526020820190506020840283018581111561311257613111612f0d565b5b835b8181101561313b57806131278882612d45565b845260208401935050602081019050613114565b5050509392505050565b600082601f83011261315a57613159612f03565b5b813561316a8482602086016130dc565b91505092915050565b61317c81612cc6565b811461318757600080fd5b50565b60008135905061319981613173565b92915050565b6000806000606084860312156131b8576131b7612c37565b5b600084013567ffffffffffffffff8111156131d6576131d5612c3c565b5b6131e286828701613145565b93505060206131f386828701612d7b565b92505060406132048682870161318a565b9150509250925092565b600080fd5b600067ffffffffffffffff82111561322e5761322d613035565b5b61323782612e16565b9050602081019050919050565b82818337600083830152505050565b600061326661326184613213565b613095565b9050828152602081018484840111156132825761328161320e565b5b61328d848285613244565b509392505050565b600082601f8301126132aa576132a9612f03565b5b81356132ba848260208601613253565b91505092915050565b6000602082840312156132d9576132d8612c37565b5b600082013567ffffffffffffffff8111156132f7576132f6612c3c565b5b61330384828501613295565b91505092915050565b6000806040838503121561332357613322612c37565b5b600061333185828601612d45565b92505060206133428582860161318a565b9150509250929050565b600067ffffffffffffffff82111561336757613366613035565b5b61337082612e16565b9050602081019050919050565b600061339061338b8461334c565b613095565b9050828152602081018484840111156133ac576133ab61320e565b5b6133b7848285613244565b509392505050565b600082601f8301126133d4576133d3612f03565b5b81356133e484826020860161337d565b91505092915050565b6000806000806080858703121561340757613406612c37565b5b600061341587828801612d45565b945050602061342687828801612d45565b935050604061343787828801612d7b565b925050606085013567ffffffffffffffff81111561345857613457612c3c565b5b613464878288016133bf565b91505092959194509250565b6000806040838503121561348757613486612c37565b5b600061349585828601612d45565b92505060206134a685828601612d45565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134ea82612d5a565b91506134f583612d5a565b925082820190508082111561350d5761350c6134b0565b5b92915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613549601283612ddb565b915061355482613513565b602082019050919050565b600060208201905081810360008301526135788161353c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135c657607f821691505b6020821081036135d9576135d861357f565b5b50919050565b7f4e6f7420696e20726566756e6420706572696f64000000000000000000000000600082015250565b6000613615601483612ddb565b9150613620826135df565b602082019050919050565b6000602082019050818103600083015261364481613608565b9050919050565b7f5468617420726566756e6420746f6b656e20646f65736e277420657869737400600082015250565b6000613681601f83612ddb565b915061368c8261364b565b602082019050919050565b600060208201905081810360008301526136b081613674565b9050919050565b7f596f7520646964206e6f74206f776e207468697320746f6b656e000000000000600082015250565b60006136ed601a83612ddb565b91506136f8826136b7565b602082019050919050565b6000602082019050818103600083015261371c816136e0565b9050919050565b600081905092915050565b50565b600061373e600083613723565b91506137498261372e565b600082019050919050565b600061375f82613731565b9150819050919050565b7f5075626c6963206d696e74206e6f742073746172740000000000000000000000600082015250565b600061379f601583612ddb565b91506137aa82613769565b602082019050919050565b600060208201905081810360008301526137ce81613792565b9050919050565b60006137e082612d5a565b91506137eb83612d5a565b92508282026137f981612d5a565b915082820484148315176138105761380f6134b0565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b600061384d601283612ddb565b915061385882613817565b602082019050919050565b6000602082019050818103600083015261387c81613840565b9050919050565b600061388e82612d5a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138c0576138bf6134b0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261395c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261391f565b613966868361391f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006139a361399e61399984612d5a565b61397e565b612d5a565b9050919050565b6000819050919050565b6139bd83613988565b6139d16139c9826139aa565b84845461392c565b825550505050565b600090565b6139e66139d9565b6139f18184846139b4565b505050565b5b81811015613a1557613a0a6000826139de565b6001810190506139f7565b5050565b601f821115613a5a57613a2b816138fa565b613a348461390f565b81016020851015613a43578190505b613a57613a4f8561390f565b8301826139f6565b50505b505050565b600082821c905092915050565b6000613a7d60001984600802613a5f565b1980831691505092915050565b6000613a968383613a6c565b9150826002028217905092915050565b613aaf82612dd0565b67ffffffffffffffff811115613ac857613ac7613035565b5b613ad282546135ae565b613add828285613a19565b600060209050601f831160018114613b105760008415613afe578287015190505b613b088582613a8a565b865550613b70565b601f198416613b1e866138fa565b60005b82811015613b4657848901518255600182019150602085019450602081019050613b21565b86831015613b635784890151613b5f601f891682613a6c565b8355505b6001600288020188555050505b505050505050565b7f507265206d696e74206e6f742073746172740000000000000000000000000000600082015250565b6000613bae601283612ddb565b9150613bb982613b78565b602082019050919050565b60006020820190508181036000830152613bdd81613ba1565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b6000613c1a601b83612ddb565b9150613c2582613be4565b602082019050919050565b60006020820190508181036000830152613c4981613c0d565b9050919050565b7f55736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b6000613c86601783612ddb565b9150613c9182613c50565b602082019050919050565b60006020820190508181036000830152613cb581613c79565b9050919050565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b6000613cf2601683612ddb565b9150613cfd82613cbc565b602082019050919050565b60006020820190508181036000830152613d2181613ce5565b9050919050565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b6000613d5e601883612ddb565b9150613d6982613d28565b602082019050919050565b60006020820190508181036000830152613d8d81613d51565b9050919050565b600081905092915050565b6000613daa82612dd0565b613db48185613d94565b9350613dc4818560208601612dec565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613e06600583613d94565b9150613e1182613dd0565b600582019050919050565b6000613e288285613d9f565b9150613e348284613d9f565b9150613e3f82613df9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ea7602683612ddb565b9150613eb282613e4b565b604082019050919050565b60006020820190508181036000830152613ed681613e9a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f13602083612ddb565b9150613f1e82613edd565b602082019050919050565b60006020820190508181036000830152613f4281613f06565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f7082613f49565b613f7a8185613f54565b9350613f8a818560208601612dec565b613f9381612e16565b840191505092915050565b6000608082019050613fb36000830187612eaf565b613fc06020830186612eaf565b613fcd6040830185612ed9565b8181036060830152613fdf8184613f65565b905095945050505050565b600081519050613ff981612c6d565b92915050565b60006020828403121561401557614014612c37565b5b600061402384828501613fea565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061406682612d5a565b915061407183612d5a565b9250826140815761408061402c565b5b828204905092915050565b600061409782612d5a565b91506140a283612d5a565b92508282039050818111156140ba576140b96134b0565b5b92915050565b60006140cb82612d5a565b91506140d683612d5a565b9250826140e6576140e561402c565b5b82820690509291505056fea264697066735822122050d27d5d348355be0ba5ceb93f50dc59a0add3a5e9749c10aa203dbd47bac9a364736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f64776172666d61737465722e6d7970696e6174612e636c6f75642f697066732f516d593770327a39507a545a4d4d5243783261354878474133386d6342626874534179363242774634395332714400000000000000000000

-----Decoded View---------------
Arg [0] : _hiddenMetadataUrl (string): https://dwarfmaster.mypinata.cloud/ipfs/QmY7p2z9PzTZMMRCx2a5HxGA38mcBbhtSAy62BwF49S2qD

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000056
Arg [2] : 68747470733a2f2f64776172666d61737465722e6d7970696e6174612e636c6f
Arg [3] : 75642f697066732f516d593770327a39507a545a4d4d52437832613548784741
Arg [4] : 33386d6342626874534179363242774634395332714400000000000000000000


Deployed Bytecode Sourcemap

60386:5090:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18404:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64943:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25797:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25230:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60857:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60962:27;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15057:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65140:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29436:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62552:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64323:515;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60672:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60622:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62931:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62370:177;;;;;;;;;;;;;:::i;:::-;;32357:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60747:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20699:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63822:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16241:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56708:103;;;;;;;;;;;;;:::i;:::-;;64843:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65276:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60576:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62048:78;;;;;;;;;;;;;:::i;:::-;;56060:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19482:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61788:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61367:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26355:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61609:67;;;;;;;;;;;;;:::i;:::-;;60781:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33148:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63624:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60482:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62134:72;;;;;;;;;;;;;:::i;:::-;;63924:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61469:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62211:75;;;;;;;;;;;;;:::i;:::-;;60536:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60711:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26746:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56966:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62291:74;;;;;;;;;;;;;:::i;:::-;;18404:639;18489:4;18828:10;18813:25;;:11;:25;;;;:102;;;;18905:10;18890:25;;:11;:25;;;;18813:102;:179;;;;18982:10;18967:25;;:11;:25;;;;18813:179;18793:199;;18404:639;;;:::o;64943:192::-;55946:13;:11;:13::i;:::-;65060:9:::1;;65046:10;65029:14;:12;:14::i;:::-;:27;;;;:::i;:::-;:40;;65016:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;65105:25;65115:2;65119:10;65105:9;:25::i;:::-;64943:192:::0;;:::o;19306:100::-;19360:13;19393:5;19386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19306:100;:::o;25797:218::-;25873:7;25898:16;25906:7;25898;:16::i;:::-;25893:64;;25923:34;;;;;;;;;;;;;;25893:64;25977:15;:24;25993:7;25977:24;;;;;;;;;;;:30;;;;;;;;;;;;25970:37;;25797:218;;;:::o;25230:408::-;25319:13;25335:16;25343:7;25335;:16::i;:::-;25319:32;;25391:5;25368:28;;:19;:17;:19::i;:::-;:28;;;25364:175;;25416:44;25433:5;25440:19;:17;:19::i;:::-;25416:16;:44::i;:::-;25411:128;;25488:35;;;;;;;;;;;;;;25411:128;25364:175;25584:2;25551:15;:24;25567:7;25551:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25622:7;25618:2;25602:28;;25611:5;25602:28;;;;;;;;;;;;25308:330;25230:408;;:::o;60857:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60962:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15057:323::-;15118:7;15346:15;:13;:15::i;:::-;15331:12;;15315:13;;:28;:46;15308:53;;15057:323;:::o;65140:128::-;55946:13;:11;:13::i;:::-;65223:10:::1;;65216:17;;;;:::i;:::-;65256:4;;65244:10;:16;;;;;;;:::i;:::-;;65140:128:::0;;:::o;29436:2825::-;29578:27;29608;29627:7;29608:18;:27::i;:::-;29578:57;;29693:4;29652:45;;29668:19;29652:45;;;29648:86;;29706:28;;;;;;;;;;;;;;29648:86;29748:27;29777:23;29804:35;29831:7;29804:26;:35::i;:::-;29747:92;;;;29939:68;29964:15;29981:4;29987:19;:17;:19::i;:::-;29939:24;:68::i;:::-;29934:180;;30027:43;30044:4;30050:19;:17;:19::i;:::-;30027:16;:43::i;:::-;30022:92;;30079:35;;;;;;;;;;;;;;30022:92;29934:180;30145:1;30131:16;;:2;:16;;;30127:52;;30156:23;;;;;;;;;;;;;;30127:52;30192:43;30214:4;30220:2;30224:7;30233:1;30192:21;:43::i;:::-;30328:15;30325:160;;;30468:1;30447:19;30440:30;30325:160;30865:18;:24;30884:4;30865:24;;;;;;;;;;;;;;;;30863:26;;;;;;;;;;;;30934:18;:22;30953:2;30934:22;;;;;;;;;;;;;;;;30932:24;;;;;;;;;;;31256:146;31293:2;31342:45;31357:4;31363:2;31367:19;31342:14;:45::i;:::-;11456:8;31314:73;31256:18;:146::i;:::-;31227:17;:26;31245:7;31227:26;;;;;;;;;;;:175;;;;31573:1;11456:8;31522:19;:47;:52;31518:627;;31595:19;31627:1;31617:7;:11;31595:33;;31784:1;31750:17;:30;31768:11;31750:30;;;;;;;;;;;;:35;31746:384;;31888:13;;31873:11;:28;31869:242;;32068:19;32035:17;:30;32053:11;32035:30;;;;;;;;;;;:52;;;;31869:242;31746:384;31576:569;31518:627;32192:7;32188:2;32173:27;;32182:4;32173:27;;;;;;;;;;;;32211:42;32232:4;32238:2;32242:7;32251:1;32211:20;:42::i;:::-;29567:2694;;;29436:2825;;;:::o;62552:371::-;62622:4;62607:19;;:13;;;;;;;;;;;:19;;;62599:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;62683:4;62664:23;;:17;62673:7;62664:8;:17::i;:::-;:23;;;62656:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;62760:10;62742:28;;:16;62750:7;62742;:16::i;:::-;:28;;;62734:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;62806:12;62832:10;62824:24;;62870:14;;62824:75;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62805:94;;;62904:14;62910:7;62904:5;:14::i;:::-;62594:329;62552:371;:::o;64323:515::-;64393:12;;;;;;;;;;;64385:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;64481:9;;64467:10;64450:14;:12;:14::i;:::-;:27;;;;:::i;:::-;:40;;64442:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;64561:10;64544:14;;:27;;;;:::i;:::-;64531:9;:40;;64523:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;64637:10;64599:22;:34;64622:10;64599:34;;;;;;;;;;;;;;;;:48;;;;;;;:::i;:::-;;;;;;;;64652:33;64662:10;64674;64652:9;:33::i;:::-;64697:12;64723:42;64715:56;;64808:10;64793:12;;:25;;;;:::i;:::-;64715:118;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64696:137;;;64380:458;64323:515;:::o;60672:32::-;;;;;;;;;;;;;:::o;60622:42::-;;;;:::o;62931:189::-;62989:4;63009:6;63018:1;63009:10;;63005:87;63026:1;63021;:6;63005:87;;63051:9;:12;63061:1;63051:12;;;;;;;;;;;:19;63064:5;63051:19;;;;;;;;;;;;;;;;;;;;;;;;;63048:32;;;63079:1;63072:8;;;;;63048:32;63029:3;;;;;:::i;:::-;;;;63005:87;;;;63111:1;63104:8;;62931:189;;;;:::o;62370:177::-;55946:13;:11;:13::i;:::-;62415:12:::1;62441:10;62433:24;;62479:21;62433:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62414:101;;;62534:7;62526:16;;;::::0;::::1;;62409:138;62370:177::o:0;32357:193::-;32503:39;32520:4;32526:2;32530:7;32503:39;;;;;;;;;;;;:16;:39::i;:::-;32357:193;;;:::o;60747:30::-;;;;;;;;;;;;;:::o;20699:152::-;20771:7;20814:27;20833:7;20814:18;:27::i;:::-;20791:52;;20699:152;;;:::o;63822:97::-;55946:13;:11;:13::i;:::-;63902:12:::1;63890:9;:24;;;;63822:97:::0;:::o;16241:233::-;16313:7;16354:1;16337:19;;:5;:19;;;16333:60;;16365:28;;;;;;;;;;;;;;16333:60;10400:13;16411:18;:25;16430:5;16411:25;;;;;;;;;;;;;;;;:55;16404:62;;16241:233;;;:::o;56708:103::-;55946:13;:11;:13::i;:::-;56773:30:::1;56800:1;56773:18;:30::i;:::-;56708:103::o:0;64843:92::-;55946:13;:11;:13::i;:::-;64922:8:::1;64905:14;:25;;;;64843:92:::0;:::o;65276:197::-;55946:13;:11;:13::i;:::-;65377:6:::1;65373:93;65393:6;:13;65389:1;:17;65373:93;;;65454:6;65424:9;:16;65434:5;65424:16;;;;;;;;;;;:27;65441:6;65448:1;65441:9;;;;;;;;:::i;:::-;;;;;;;;65424:27;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;65408:3;;;;;:::i;:::-;;;;65373:93;;;;65276:197:::0;;;:::o;60576:42::-;;;;:::o;62048:78::-;55946:13;:11;:13::i;:::-;62117:4:::1;62102:12;;:19;;;;;;;;;;;;;;;;;;62048:78::o:0;56060:87::-;56106:7;56133:6;;;;;;;;;;;56126:13;;56060:87;:::o;19482:104::-;19538:13;19571:7;19564:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19482:104;:::o;61788:255::-;61845:4;61867:9;61879:1;61867:13;;61862:151;61886:10;:17;;;;61882:1;:21;61862:151;;;61946:8;61929:10;61940:1;61929:13;;;;;;;;:::i;:::-;;;;;;;;;;:25;61925:77;;61982:4;61975:11;;;;;61925:77;61905:3;;;;;:::i;:::-;;;;61862:151;;;;62030:5;62023:12;;61788:255;;;;:::o;61367:94::-;55946:13;:11;:13::i;:::-;61448:8:::1;61438:7;:18;;;;;;:::i;:::-;;61367:94:::0;:::o;26355:234::-;26502:8;26450:18;:39;26469:19;:17;:19::i;:::-;26450:39;;;;;;;;;;;;;;;:49;26490:8;26450:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26562:8;26526:55;;26541:19;:17;:19::i;:::-;26526:55;;;26572:8;26526:55;;;;;;:::i;:::-;;;;;;;;26355:234;;:::o;61609:67::-;55946:13;:11;:13::i;:::-;61667:4:::1;61654:10;;:17;;;;;;;;;;;;;;;;;;61609:67::o:0;60781:33::-;;;;;;;;;;;;;:::o;33148:407::-;33323:31;33336:4;33342:2;33346:7;33323:12;:31::i;:::-;33387:1;33369:2;:14;;;:19;33365:183;;33408:56;33439:4;33445:2;33449:7;33458:5;33408:30;:56::i;:::-;33403:145;;33492:40;;;;;;;;;;;;;;33403:145;33365:183;33148:407;;;;:::o;63624:193::-;63692:10;63704;63204:9;;;;;;;;;;;63196:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;63286:9;;63272:10;63255:14;:12;:14::i;:::-;:27;;;;:::i;:::-;:40;;63247:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;60531:1;63336:10;:36;;63328:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;63416:9;63428:20;63442:5;63428:13;:20::i;:::-;63416:32;;63475:1;63467:4;:9;63459:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;63566:4;63552:10;63523:19;:26;63543:5;63523:26;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:47;;63515:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;63761:10:::1;63726:19;:31;63746:10;63726:31;;;;;;;;;;;;;;;;:45;;;;;;;:::i;:::-;;;;;;;;63776:33;63786:10;63798;63776:9;:33::i;:::-;63185:431:::0;63624:193;;;:::o;60482:50::-;60531:1;60482:50;:::o;62134:72::-;55946:13;:11;:13::i;:::-;62197:4:::1;62185:9;;:16;;;;;;;;;;;;;;;;;;62134:72::o:0;63924:394::-;64001:13;64037:16;64045:7;64037;:16::i;:::-;64029:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;64110:5;64096:19;;:10;;;;;;;;;;;:19;;;64093:75;;64139:17;64132:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64093:75;64212:1;64191:10;:8;:10::i;:::-;64185:24;:28;:128;;;;;;;;;;;;;;;;;64254:10;:8;:10::i;:::-;64266:18;:7;:16;:18::i;:::-;64237:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64185:128;64178:135;;63924:394;;;;:::o;61469:132::-;55946:13;:11;:13::i;:::-;61578:18:::1;61558:17;:38;;;;;;:::i;:::-;;61469:132:::0;:::o;62211:75::-;55946:13;:11;:13::i;:::-;62277:4:::1;62261:13;;:20;;;;;;;;;;;;;;;;;;62211:75::o:0;60536:31::-;;;;:::o;60711:29::-;;;;;;;;;;;;;:::o;26746:164::-;26843:4;26867:18;:25;26886:5;26867:25;;;;;;;;;;;;;;;:35;26893:8;26867:35;;;;;;;;;;;;;;;;;;;;;;;;;26860:42;;26746:164;;;;:::o;56966:201::-;55946:13;:11;:13::i;:::-;57075:1:::1;57055:22;;:8;:22;;::::0;57047:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;57131:28;57150:8;57131:18;:28::i;:::-;56966:201:::0;:::o;62291:74::-;55946:13;:11;:13::i;:::-;62355:5:::1;62339:13;;:21;;;;;;;;;;;;;;;;;;62291:74::o:0;56225:132::-;56300:12;:10;:12::i;:::-;56289:23;;:7;:5;:7::i;:::-;:23;;;56281:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56225:132::o;15478:296::-;15533:7;15740:15;:13;:15::i;:::-;15724:13;;:31;15717:38;;15478:296;:::o;43308:112::-;43385:27;43395:2;43399:8;43385:27;;;;;;;;;;;;:9;:27::i;:::-;43308:112;;:::o;27168:282::-;27233:4;27289:7;27270:15;:13;:15::i;:::-;:26;;:66;;;;;27323:13;;27313:7;:23;27270:66;:153;;;;;27422:1;11176:8;27374:17;:26;27392:7;27374:26;;;;;;;;;;;;:44;:49;27270:153;27250:173;;27168:282;;;:::o;49476:105::-;49536:7;49563:10;49556:17;;49476:105;:::o;61681:97::-;61746:7;61770:1;61763:8;;61681:97;:::o;21854:1275::-;21921:7;21941:12;21956:7;21941:22;;22024:4;22005:15;:13;:15::i;:::-;:23;22001:1061;;22058:13;;22051:4;:20;22047:1015;;;22096:14;22113:17;:23;22131:4;22113:23;;;;;;;;;;;;22096:40;;22230:1;11176:8;22202:6;:24;:29;22198:845;;22867:113;22884:1;22874:6;:11;22867:113;;22927:17;:25;22945:6;;;;;;;22927:25;;;;;;;;;;;;22918:34;;22867:113;;;23013:6;23006:13;;;;;;22198:845;22073:989;22047:1015;22001:1061;23090:31;;;;;;;;;;;;;;21854:1275;;;;:::o;28331:485::-;28433:27;28462:23;28503:38;28544:15;:24;28560:7;28544:24;;;;;;;;;;;28503:65;;28721:18;28698:41;;28778:19;28772:26;28753:45;;28683:126;28331:485;;;:::o;27559:659::-;27708:11;27873:16;27866:5;27862:28;27853:37;;28033:16;28022:9;28018:32;28005:45;;28183:15;28172:9;28169:30;28161:5;28150:9;28147:20;28144:56;28134:66;;27559:659;;;;;:::o;34217:159::-;;;;;:::o;48785:311::-;48920:7;48940:16;11580:3;48966:19;:41;;48940:68;;11580:3;49034:31;49045:4;49051:2;49055:9;49034:10;:31::i;:::-;49026:40;;:62;;49019:69;;;48785:311;;;;;:::o;23677:450::-;23757:14;23925:16;23918:5;23914:28;23905:37;;24102:5;24088:11;24063:23;24059:41;24056:52;24049:5;24046:63;24036:73;;23677:450;;;;:::o;35041:158::-;;;;;:::o;43687:89::-;43747:21;43753:7;43762:5;43747;:21::i;:::-;43687:89;:::o;57327:191::-;57401:16;57420:6;;;;;;;;;;;57401:25;;57446:8;57437:6;;:17;;;;;;;;;;;;;;;;;;57501:8;57470:40;;57491:8;57470:40;;;;;;;;;;;;57390:128;57327:191;:::o;35639:716::-;35802:4;35848:2;35823:45;;;35869:19;:17;:19::i;:::-;35890:4;35896:7;35905:5;35823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36123:1;36106:6;:13;:18;36102:235;;36152:40;;;;;;;;;;;;;;36102:235;36295:6;36289:13;36280:6;36276:2;36272:15;36265:38;35819:529;35992:54;;;35982:64;;;:6;:64;;;;35975:71;;;35639:716;;;;;;:::o;61268:91::-;61320:13;61347:7;61340:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61268:91;:::o;51865:723::-;51921:13;52151:1;52142:5;:10;52138:53;;52169:10;;;;;;;;;;;;;;;;;;;;;52138:53;52201:12;52216:5;52201:20;;52232:14;52257:78;52272:1;52264:4;:9;52257:78;;52290:8;;;;;:::i;:::-;;;;52321:2;52313:10;;;;;:::i;:::-;;;52257:78;;;52345:19;52377:6;52367:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52345:39;;52395:154;52411:1;52402:5;:10;52395:154;;52439:1;52429:11;;;;;:::i;:::-;;;52506:2;52498:5;:10;;;;:::i;:::-;52485:2;:24;;;;:::i;:::-;52472:39;;52455:6;52462;52455:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;52535:2;52526:11;;;;;:::i;:::-;;;52395:154;;;52573:6;52559:21;;;;;51865:723;;;;:::o;54611:98::-;54664:7;54691:10;54684:17;;54611:98;:::o;42535:689::-;42666:19;42672:2;42676:8;42666:5;:19::i;:::-;42745:1;42727:2;:14;;;:19;42723:483;;42767:11;42781:13;;42767:27;;42813:13;42835:8;42829:3;:14;42813:30;;42862:233;42893:62;42932:1;42936:2;42940:7;;;;;;42949:5;42893:30;:62::i;:::-;42888:167;;42991:40;;;;;;;;;;;;;;42888:167;43090:3;43082:5;:11;42862:233;;43177:3;43160:13;;:20;43156:34;;43182:8;;;43156:34;42748:458;;42723:483;42535:689;;;:::o;48486:147::-;48623:6;48486:147;;;;;:::o;44005:3081::-;44085:27;44115;44134:7;44115:18;:27::i;:::-;44085:57;;44155:12;44186:19;44155:52;;44221:27;44250:23;44277:35;44304:7;44277:26;:35::i;:::-;44220:92;;;;44329:13;44325:316;;;44450:68;44475:15;44492:4;44498:19;:17;:19::i;:::-;44450:24;:68::i;:::-;44445:184;;44542:43;44559:4;44565:19;:17;:19::i;:::-;44542:16;:43::i;:::-;44537:92;;44594:35;;;;;;;;;;;;;;44537:92;44445:184;44325:316;44653:51;44675:4;44689:1;44693:7;44702:1;44653:21;:51::i;:::-;44797:15;44794:160;;;44937:1;44916:19;44909:30;44794:160;45615:1;10665:3;45585:1;:26;;45584:32;45556:18;:24;45575:4;45556:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;45883:176;45920:4;45991:53;46006:4;46020:1;46024:19;45991:14;:53::i;:::-;11456:8;11176;45944:43;45943:101;45883:18;:176::i;:::-;45854:17;:26;45872:7;45854:26;;;;;;;;;;;:205;;;;46230:1;11456:8;46179:19;:47;:52;46175:627;;46252:19;46284:1;46274:7;:11;46252:33;;46441:1;46407:17;:30;46425:11;46407:30;;;;;;;;;;;;:35;46403:384;;46545:13;;46530:11;:28;46526:242;;46725:19;46692:17;:30;46710:11;46692:30;;;;;;;;;;;:52;;;;46526:242;46403:384;46233:569;46175:627;46857:7;46853:1;46830:35;;46839:4;46830:35;;;;;;;;;;;;46876:50;46897:4;46911:1;46915:7;46924:1;46876:20;:50::i;:::-;47053:12;;:14;;;;;;;;;;;;;44074:3012;;;;44005:3081;;:::o;36817:2966::-;36890:20;36913:13;;36890:36;;36953:1;36941:8;:13;36937:44;;36963:18;;;;;;;;;;;;;;36937:44;36994:61;37024:1;37028:2;37032:12;37046:8;36994:21;:61::i;:::-;37538:1;10538:2;37508:1;:26;;37507:32;37495:8;:45;37469:18;:22;37488:2;37469:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37817:139;37854:2;37908:33;37931:1;37935:2;37939:1;37908:14;:33::i;:::-;37875:30;37896:8;37875:20;:30::i;:::-;:66;37817:18;:139::i;:::-;37783:17;:31;37801:12;37783:31;;;;;;;;;;;:173;;;;37973:16;38004:11;38033:8;38018:12;:23;38004:37;;38554:16;38550:2;38546:25;38534:37;;38926:12;38886:8;38845:1;38783:25;38724:1;38663;38636:335;39297:1;39283:12;39279:20;39237:346;39338:3;39329:7;39326:16;39237:346;;39556:7;39546:8;39543:1;39516:25;39513:1;39510;39505:59;39391:1;39382:7;39378:15;39367:26;;39237:346;;;39241:77;39628:1;39616:8;:13;39612:45;;39638:19;;;;;;;;;;;;;;39612:45;39690:3;39674:13;:19;;;;37243:2462;;39715:60;39744:1;39748:2;39752:12;39766:8;39715:20;:60::i;:::-;36879:2904;36817:2966;;:::o;24229:324::-;24299:14;24532:1;24522:8;24519:15;24493:24;24489:46;24479:56;;24229:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:77::-;2062:7;2091:5;2080:16;;2025:77;;;:::o;2108:122::-;2181:24;2199:5;2181:24;:::i;:::-;2174:5;2171:35;2161:63;;2220:1;2217;2210:12;2161:63;2108:122;:::o;2236:139::-;2282:5;2320:6;2307:20;2298:29;;2336:33;2363:5;2336:33;:::i;:::-;2236:139;;;;:::o;2381:474::-;2449:6;2457;2506:2;2494:9;2485:7;2481:23;2477:32;2474:119;;;2512:79;;:::i;:::-;2474:119;2632:1;2657:53;2702:7;2693:6;2682:9;2678:22;2657:53;:::i;:::-;2647:63;;2603:117;2759:2;2785:53;2830:7;2821:6;2810:9;2806:22;2785:53;:::i;:::-;2775:63;;2730:118;2381:474;;;;;:::o;2861:99::-;2913:6;2947:5;2941:12;2931:22;;2861:99;;;:::o;2966:169::-;3050:11;3084:6;3079:3;3072:19;3124:4;3119:3;3115:14;3100:29;;2966:169;;;;:::o;3141:246::-;3222:1;3232:113;3246:6;3243:1;3240:13;3232:113;;;3331:1;3326:3;3322:11;3316:18;3312:1;3307:3;3303:11;3296:39;3268:2;3265:1;3261:10;3256:15;;3232:113;;;3379:1;3370:6;3365:3;3361:16;3354:27;3203:184;3141:246;;;:::o;3393:102::-;3434:6;3485:2;3481:7;3476:2;3469:5;3465:14;3461:28;3451:38;;3393:102;;;:::o;3501:377::-;3589:3;3617:39;3650:5;3617:39;:::i;:::-;3672:71;3736:6;3731:3;3672:71;:::i;:::-;3665:78;;3752:65;3810:6;3805:3;3798:4;3791:5;3787:16;3752:65;:::i;:::-;3842:29;3864:6;3842:29;:::i;:::-;3837:3;3833:39;3826:46;;3593:285;3501:377;;;;:::o;3884:313::-;3997:4;4035:2;4024:9;4020:18;4012:26;;4084:9;4078:4;4074:20;4070:1;4059:9;4055:17;4048:47;4112:78;4185:4;4176:6;4112:78;:::i;:::-;4104:86;;3884:313;;;;:::o;4203:329::-;4262:6;4311:2;4299:9;4290:7;4286:23;4282:32;4279:119;;;4317:79;;:::i;:::-;4279:119;4437:1;4462:53;4507:7;4498:6;4487:9;4483:22;4462:53;:::i;:::-;4452:63;;4408:117;4203:329;;;;:::o;4538:118::-;4625:24;4643:5;4625:24;:::i;:::-;4620:3;4613:37;4538:118;;:::o;4662:222::-;4755:4;4793:2;4782:9;4778:18;4770:26;;4806:71;4874:1;4863:9;4859:17;4850:6;4806:71;:::i;:::-;4662:222;;;;:::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:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:117;5597:1;5594;5587:12;5628:568;5701:8;5711:6;5761:3;5754:4;5746:6;5742:17;5738:27;5728:122;;5769:79;;:::i;:::-;5728:122;5882:6;5869:20;5859:30;;5912:18;5904:6;5901:30;5898:117;;;5934:79;;:::i;:::-;5898:117;6048:4;6040:6;6036:17;6024:29;;6102:3;6094:4;6086:6;6082:17;6072:8;6068:32;6065:41;6062:128;;;6109:79;;:::i;:::-;6062:128;5628:568;;;;;:::o;6202:559::-;6288:6;6296;6345:2;6333:9;6324:7;6320:23;6316:32;6313:119;;;6351:79;;:::i;:::-;6313:119;6499:1;6488:9;6484:17;6471:31;6529:18;6521:6;6518:30;6515:117;;;6551:79;;:::i;:::-;6515:117;6664:80;6736:7;6727:6;6716:9;6712:22;6664:80;:::i;:::-;6646:98;;;;6442:312;6202:559;;;;;:::o;6767:619::-;6844:6;6852;6860;6909:2;6897:9;6888:7;6884:23;6880:32;6877:119;;;6915:79;;:::i;:::-;6877:119;7035:1;7060:53;7105:7;7096:6;7085:9;7081:22;7060:53;:::i;:::-;7050:63;;7006:117;7162:2;7188:53;7233:7;7224:6;7213:9;7209:22;7188:53;:::i;:::-;7178:63;;7133:118;7290:2;7316:53;7361:7;7352:6;7341:9;7337:22;7316:53;:::i;:::-;7306:63;;7261:118;6767:619;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:180::-;7775:77;7772:1;7765:88;7872:4;7869:1;7862:15;7896:4;7893:1;7886:15;7913:281;7996:27;8018:4;7996:27;:::i;:::-;7988:6;7984:40;8126:6;8114:10;8111:22;8090:18;8078:10;8075:34;8072:62;8069:88;;;8137:18;;:::i;:::-;8069:88;8177:10;8173:2;8166:22;7956:238;7913:281;;:::o;8200:129::-;8234:6;8261:20;;:::i;:::-;8251:30;;8290:33;8318:4;8310:6;8290:33;:::i;:::-;8200:129;;;:::o;8335:311::-;8412:4;8502:18;8494:6;8491:30;8488:56;;;8524:18;;:::i;:::-;8488:56;8574:4;8566:6;8562:17;8554:25;;8634:4;8628;8624:15;8616:23;;8335:311;;;:::o;8669:710::-;8765:5;8790:81;8806:64;8863:6;8806:64;:::i;:::-;8790:81;:::i;:::-;8781:90;;8891:5;8920:6;8913:5;8906:21;8954:4;8947:5;8943:16;8936:23;;9007:4;8999:6;8995:17;8987:6;8983:30;9036:3;9028:6;9025:15;9022:122;;;9055:79;;:::i;:::-;9022:122;9170:6;9153:220;9187:6;9182:3;9179:15;9153:220;;;9262:3;9291:37;9324:3;9312:10;9291:37;:::i;:::-;9286:3;9279:50;9358:4;9353:3;9349:14;9342:21;;9229:144;9213:4;9208:3;9204:14;9197:21;;9153:220;;;9157:21;8771:608;;8669:710;;;;;:::o;9402:370::-;9473:5;9522:3;9515:4;9507:6;9503:17;9499:27;9489:122;;9530:79;;:::i;:::-;9489:122;9647:6;9634:20;9672:94;9762:3;9754:6;9747:4;9739:6;9735:17;9672:94;:::i;:::-;9663:103;;9479:293;9402:370;;;;:::o;9778:116::-;9848:21;9863:5;9848:21;:::i;:::-;9841:5;9838:32;9828:60;;9884:1;9881;9874:12;9828:60;9778:116;:::o;9900:133::-;9943:5;9981:6;9968:20;9959:29;;9997:30;10021:5;9997:30;:::i;:::-;9900:133;;;;:::o;10039:823::-;10138:6;10146;10154;10203:2;10191:9;10182:7;10178:23;10174:32;10171:119;;;10209:79;;:::i;:::-;10171:119;10357:1;10346:9;10342:17;10329:31;10387:18;10379:6;10376:30;10373:117;;;10409:79;;:::i;:::-;10373:117;10514:78;10584:7;10575:6;10564:9;10560:22;10514:78;:::i;:::-;10504:88;;10300:302;10641:2;10667:53;10712:7;10703:6;10692:9;10688:22;10667:53;:::i;:::-;10657:63;;10612:118;10769:2;10795:50;10837:7;10828:6;10817:9;10813:22;10795:50;:::i;:::-;10785:60;;10740:115;10039:823;;;;;:::o;10868:117::-;10977:1;10974;10967:12;10991:308;11053:4;11143:18;11135:6;11132:30;11129:56;;;11165:18;;:::i;:::-;11129:56;11203:29;11225:6;11203:29;:::i;:::-;11195:37;;11287:4;11281;11277:15;11269:23;;10991:308;;;:::o;11305:146::-;11402:6;11397:3;11392;11379:30;11443:1;11434:6;11429:3;11425:16;11418:27;11305:146;;;:::o;11457:425::-;11535:5;11560:66;11576:49;11618:6;11576:49;:::i;:::-;11560:66;:::i;:::-;11551:75;;11649:6;11642:5;11635:21;11687:4;11680:5;11676:16;11725:3;11716:6;11711:3;11707:16;11704:25;11701:112;;;11732:79;;:::i;:::-;11701:112;11822:54;11869:6;11864:3;11859;11822:54;:::i;:::-;11541:341;11457:425;;;;;:::o;11902:340::-;11958:5;12007:3;12000:4;11992:6;11988:17;11984:27;11974:122;;12015:79;;:::i;:::-;11974:122;12132:6;12119:20;12157:79;12232:3;12224:6;12217:4;12209:6;12205:17;12157:79;:::i;:::-;12148:88;;11964:278;11902:340;;;;:::o;12248:509::-;12317:6;12366:2;12354:9;12345:7;12341:23;12337:32;12334:119;;;12372:79;;:::i;:::-;12334:119;12520:1;12509:9;12505:17;12492:31;12550:18;12542:6;12539:30;12536:117;;;12572:79;;:::i;:::-;12536:117;12677:63;12732:7;12723:6;12712:9;12708:22;12677:63;:::i;:::-;12667:73;;12463:287;12248:509;;;;:::o;12763:468::-;12828:6;12836;12885:2;12873:9;12864:7;12860:23;12856:32;12853:119;;;12891:79;;:::i;:::-;12853:119;13011:1;13036:53;13081:7;13072:6;13061:9;13057:22;13036:53;:::i;:::-;13026:63;;12982:117;13138:2;13164:50;13206:7;13197:6;13186:9;13182:22;13164:50;:::i;:::-;13154:60;;13109:115;12763:468;;;;;:::o;13237:307::-;13298:4;13388:18;13380:6;13377:30;13374:56;;;13410:18;;:::i;:::-;13374:56;13448:29;13470:6;13448:29;:::i;:::-;13440:37;;13532:4;13526;13522:15;13514:23;;13237:307;;;:::o;13550:423::-;13627:5;13652:65;13668:48;13709:6;13668:48;:::i;:::-;13652:65;:::i;:::-;13643:74;;13740:6;13733:5;13726:21;13778:4;13771:5;13767:16;13816:3;13807:6;13802:3;13798:16;13795:25;13792:112;;;13823:79;;:::i;:::-;13792:112;13913:54;13960:6;13955:3;13950;13913:54;:::i;:::-;13633:340;13550:423;;;;;:::o;13992:338::-;14047:5;14096:3;14089:4;14081:6;14077:17;14073:27;14063:122;;14104:79;;:::i;:::-;14063:122;14221:6;14208:20;14246:78;14320:3;14312:6;14305:4;14297:6;14293:17;14246:78;:::i;:::-;14237:87;;14053:277;13992:338;;;;:::o;14336:943::-;14431:6;14439;14447;14455;14504:3;14492:9;14483:7;14479:23;14475:33;14472:120;;;14511:79;;:::i;:::-;14472:120;14631:1;14656:53;14701:7;14692:6;14681:9;14677:22;14656:53;:::i;:::-;14646:63;;14602:117;14758:2;14784:53;14829:7;14820:6;14809:9;14805:22;14784:53;:::i;:::-;14774:63;;14729:118;14886:2;14912:53;14957:7;14948:6;14937:9;14933:22;14912:53;:::i;:::-;14902:63;;14857:118;15042:2;15031:9;15027:18;15014:32;15073:18;15065:6;15062:30;15059:117;;;15095:79;;:::i;:::-;15059:117;15200:62;15254:7;15245:6;15234:9;15230:22;15200:62;:::i;:::-;15190:72;;14985:287;14336:943;;;;;;;:::o;15285:474::-;15353:6;15361;15410:2;15398:9;15389:7;15385:23;15381:32;15378:119;;;15416:79;;:::i;:::-;15378:119;15536:1;15561:53;15606:7;15597:6;15586:9;15582:22;15561:53;:::i;:::-;15551:63;;15507:117;15663:2;15689:53;15734:7;15725:6;15714:9;15710:22;15689:53;:::i;:::-;15679:63;;15634:118;15285:474;;;;;:::o;15765:180::-;15813:77;15810:1;15803:88;15910:4;15907:1;15900:15;15934:4;15931:1;15924:15;15951:191;15991:3;16010:20;16028:1;16010:20;:::i;:::-;16005:25;;16044:20;16062:1;16044:20;:::i;:::-;16039:25;;16087:1;16084;16080:9;16073:16;;16108:3;16105:1;16102:10;16099:36;;;16115:18;;:::i;:::-;16099:36;15951:191;;;;:::o;16148:168::-;16288:20;16284:1;16276:6;16272:14;16265:44;16148:168;:::o;16322:366::-;16464:3;16485:67;16549:2;16544:3;16485:67;:::i;:::-;16478:74;;16561:93;16650:3;16561:93;:::i;:::-;16679:2;16674:3;16670:12;16663:19;;16322:366;;;:::o;16694:419::-;16860:4;16898:2;16887:9;16883:18;16875:26;;16947:9;16941:4;16937:20;16933:1;16922:9;16918:17;16911:47;16975:131;17101:4;16975:131;:::i;:::-;16967:139;;16694:419;;;:::o;17119:180::-;17167:77;17164:1;17157:88;17264:4;17261:1;17254:15;17288:4;17285:1;17278:15;17305:320;17349:6;17386:1;17380:4;17376:12;17366:22;;17433:1;17427:4;17423:12;17454:18;17444:81;;17510:4;17502:6;17498:17;17488:27;;17444:81;17572:2;17564:6;17561:14;17541:18;17538:38;17535:84;;17591:18;;:::i;:::-;17535:84;17356:269;17305:320;;;:::o;17631:170::-;17771:22;17767:1;17759:6;17755:14;17748:46;17631:170;:::o;17807:366::-;17949:3;17970:67;18034:2;18029:3;17970:67;:::i;:::-;17963:74;;18046:93;18135:3;18046:93;:::i;:::-;18164:2;18159:3;18155:12;18148:19;;17807:366;;;:::o;18179:419::-;18345:4;18383:2;18372:9;18368:18;18360:26;;18432:9;18426:4;18422:20;18418:1;18407:9;18403:17;18396:47;18460:131;18586:4;18460:131;:::i;:::-;18452:139;;18179:419;;;:::o;18604:181::-;18744:33;18740:1;18732:6;18728:14;18721:57;18604:181;:::o;18791:366::-;18933:3;18954:67;19018:2;19013:3;18954:67;:::i;:::-;18947:74;;19030:93;19119:3;19030:93;:::i;:::-;19148:2;19143:3;19139:12;19132:19;;18791:366;;;:::o;19163:419::-;19329:4;19367:2;19356:9;19352:18;19344:26;;19416:9;19410:4;19406:20;19402:1;19391:9;19387:17;19380:47;19444:131;19570:4;19444:131;:::i;:::-;19436:139;;19163:419;;;:::o;19588:176::-;19728:28;19724:1;19716:6;19712:14;19705:52;19588:176;:::o;19770:366::-;19912:3;19933:67;19997:2;19992:3;19933:67;:::i;:::-;19926:74;;20009:93;20098:3;20009:93;:::i;:::-;20127:2;20122:3;20118:12;20111:19;;19770:366;;;:::o;20142:419::-;20308:4;20346:2;20335:9;20331:18;20323:26;;20395:9;20389:4;20385:20;20381:1;20370:9;20366:17;20359:47;20423:131;20549:4;20423:131;:::i;:::-;20415:139;;20142:419;;;:::o;20567:147::-;20668:11;20705:3;20690:18;;20567:147;;;;:::o;20720:114::-;;:::o;20840:398::-;20999:3;21020:83;21101:1;21096:3;21020:83;:::i;:::-;21013:90;;21112:93;21201:3;21112:93;:::i;:::-;21230:1;21225:3;21221:11;21214:18;;20840:398;;;:::o;21244:379::-;21428:3;21450:147;21593:3;21450:147;:::i;:::-;21443:154;;21614:3;21607:10;;21244:379;;;:::o;21629:171::-;21769:23;21765:1;21757:6;21753:14;21746:47;21629:171;:::o;21806:366::-;21948:3;21969:67;22033:2;22028:3;21969:67;:::i;:::-;21962:74;;22045:93;22134:3;22045:93;:::i;:::-;22163:2;22158:3;22154:12;22147:19;;21806:366;;;:::o;22178:419::-;22344:4;22382:2;22371:9;22367:18;22359:26;;22431:9;22425:4;22421:20;22417:1;22406:9;22402:17;22395:47;22459:131;22585:4;22459:131;:::i;:::-;22451:139;;22178:419;;;:::o;22603:410::-;22643:7;22666:20;22684:1;22666:20;:::i;:::-;22661:25;;22700:20;22718:1;22700:20;:::i;:::-;22695:25;;22755:1;22752;22748:9;22777:30;22795:11;22777:30;:::i;:::-;22766:41;;22956:1;22947:7;22943:15;22940:1;22937:22;22917:1;22910:9;22890:83;22867:139;;22986:18;;:::i;:::-;22867:139;22651:362;22603:410;;;;:::o;23019:168::-;23159:20;23155:1;23147:6;23143:14;23136:44;23019:168;:::o;23193:366::-;23335:3;23356:67;23420:2;23415:3;23356:67;:::i;:::-;23349:74;;23432:93;23521:3;23432:93;:::i;:::-;23550:2;23545:3;23541:12;23534:19;;23193:366;;;:::o;23565:419::-;23731:4;23769:2;23758:9;23754:18;23746:26;;23818:9;23812:4;23808:20;23804:1;23793:9;23789:17;23782:47;23846:131;23972:4;23846:131;:::i;:::-;23838:139;;23565:419;;;:::o;23990:233::-;24029:3;24052:24;24070:5;24052:24;:::i;:::-;24043:33;;24098:66;24091:5;24088:77;24085:103;;24168:18;;:::i;:::-;24085:103;24215:1;24208:5;24204:13;24197:20;;23990:233;;;:::o;24229:180::-;24277:77;24274:1;24267:88;24374:4;24371:1;24364:15;24398:4;24395:1;24388:15;24415:141;24464:4;24487:3;24479:11;;24510:3;24507:1;24500:14;24544:4;24541:1;24531:18;24523:26;;24415:141;;;:::o;24562:93::-;24599:6;24646:2;24641;24634:5;24630:14;24626:23;24616:33;;24562:93;;;:::o;24661:107::-;24705:8;24755:5;24749:4;24745:16;24724:37;;24661:107;;;;:::o;24774:393::-;24843:6;24893:1;24881:10;24877:18;24916:97;24946:66;24935:9;24916:97;:::i;:::-;25034:39;25064:8;25053:9;25034:39;:::i;:::-;25022:51;;25106:4;25102:9;25095:5;25091:21;25082:30;;25155:4;25145:8;25141:19;25134:5;25131:30;25121:40;;24850:317;;24774:393;;;;;:::o;25173:60::-;25201:3;25222:5;25215:12;;25173:60;;;:::o;25239:142::-;25289:9;25322:53;25340:34;25349:24;25367:5;25349:24;:::i;:::-;25340:34;:::i;:::-;25322:53;:::i;:::-;25309:66;;25239:142;;;:::o;25387:75::-;25430:3;25451:5;25444:12;;25387:75;;;:::o;25468:269::-;25578:39;25609:7;25578:39;:::i;:::-;25639:91;25688:41;25712:16;25688:41;:::i;:::-;25680:6;25673:4;25667:11;25639:91;:::i;:::-;25633:4;25626:105;25544:193;25468:269;;;:::o;25743:73::-;25788:3;25743:73;:::o;25822:189::-;25899:32;;:::i;:::-;25940:65;25998:6;25990;25984:4;25940:65;:::i;:::-;25875:136;25822:189;;:::o;26017:186::-;26077:120;26094:3;26087:5;26084:14;26077:120;;;26148:39;26185:1;26178:5;26148:39;:::i;:::-;26121:1;26114:5;26110:13;26101:22;;26077:120;;;26017:186;;:::o;26209:543::-;26310:2;26305:3;26302:11;26299:446;;;26344:38;26376:5;26344:38;:::i;:::-;26428:29;26446:10;26428:29;:::i;:::-;26418:8;26414:44;26611:2;26599:10;26596:18;26593:49;;;26632:8;26617:23;;26593:49;26655:80;26711:22;26729:3;26711:22;:::i;:::-;26701:8;26697:37;26684:11;26655:80;:::i;:::-;26314:431;;26299:446;26209:543;;;:::o;26758:117::-;26812:8;26862:5;26856:4;26852:16;26831:37;;26758:117;;;;:::o;26881:169::-;26925:6;26958:51;27006:1;27002:6;26994:5;26991:1;26987:13;26958:51;:::i;:::-;26954:56;27039:4;27033;27029:15;27019:25;;26932:118;26881:169;;;;:::o;27055:295::-;27131:4;27277:29;27302:3;27296:4;27277:29;:::i;:::-;27269:37;;27339:3;27336:1;27332:11;27326:4;27323:21;27315:29;;27055:295;;;;:::o;27355:1395::-;27472:37;27505:3;27472:37;:::i;:::-;27574:18;27566:6;27563:30;27560:56;;;27596:18;;:::i;:::-;27560:56;27640:38;27672:4;27666:11;27640:38;:::i;:::-;27725:67;27785:6;27777;27771:4;27725:67;:::i;:::-;27819:1;27843:4;27830:17;;27875:2;27867:6;27864:14;27892:1;27887:618;;;;28549:1;28566:6;28563:77;;;28615:9;28610:3;28606:19;28600:26;28591:35;;28563:77;28666:67;28726:6;28719:5;28666:67;:::i;:::-;28660:4;28653:81;28522:222;27857:887;;27887:618;27939:4;27935:9;27927:6;27923:22;27973:37;28005:4;27973:37;:::i;:::-;28032:1;28046:208;28060:7;28057:1;28054:14;28046:208;;;28139:9;28134:3;28130:19;28124:26;28116:6;28109:42;28190:1;28182:6;28178:14;28168:24;;28237:2;28226:9;28222:18;28209:31;;28083:4;28080:1;28076:12;28071:17;;28046:208;;;28282:6;28273:7;28270:19;28267:179;;;28340:9;28335:3;28331:19;28325:26;28383:48;28425:4;28417:6;28413:17;28402:9;28383:48;:::i;:::-;28375:6;28368:64;28290:156;28267:179;28492:1;28488;28480:6;28476:14;28472:22;28466:4;28459:36;27894:611;;;27857:887;;27447:1303;;;27355:1395;;:::o;28756:168::-;28896:20;28892:1;28884:6;28880:14;28873:44;28756:168;:::o;28930:366::-;29072:3;29093:67;29157:2;29152:3;29093:67;:::i;:::-;29086:74;;29169:93;29258:3;29169:93;:::i;:::-;29287:2;29282:3;29278:12;29271:19;;28930:366;;;:::o;29302:419::-;29468:4;29506:2;29495:9;29491:18;29483:26;;29555:9;29549:4;29545:20;29541:1;29530:9;29526:17;29519:47;29583:131;29709:4;29583:131;:::i;:::-;29575:139;;29302:419;;;:::o;29727:177::-;29867:29;29863:1;29855:6;29851:14;29844:53;29727:177;:::o;29910:366::-;30052:3;30073:67;30137:2;30132:3;30073:67;:::i;:::-;30066:74;;30149:93;30238:3;30149:93;:::i;:::-;30267:2;30262:3;30258:12;30251:19;;29910:366;;;:::o;30282:419::-;30448:4;30486:2;30475:9;30471:18;30463:26;;30535:9;30529:4;30525:20;30521:1;30510:9;30506:17;30499:47;30563:131;30689:4;30563:131;:::i;:::-;30555:139;;30282:419;;;:::o;30707:173::-;30847:25;30843:1;30835:6;30831:14;30824:49;30707:173;:::o;30886:366::-;31028:3;31049:67;31113:2;31108:3;31049:67;:::i;:::-;31042:74;;31125:93;31214:3;31125:93;:::i;:::-;31243:2;31238:3;31234:12;31227:19;;30886:366;;;:::o;31258:419::-;31424:4;31462:2;31451:9;31447:18;31439:26;;31511:9;31505:4;31501:20;31497:1;31486:9;31482:17;31475:47;31539:131;31665:4;31539:131;:::i;:::-;31531:139;;31258:419;;;:::o;31683:172::-;31823:24;31819:1;31811:6;31807:14;31800:48;31683:172;:::o;31861:366::-;32003:3;32024:67;32088:2;32083:3;32024:67;:::i;:::-;32017:74;;32100:93;32189:3;32100:93;:::i;:::-;32218:2;32213:3;32209:12;32202:19;;31861:366;;;:::o;32233:419::-;32399:4;32437:2;32426:9;32422:18;32414:26;;32486:9;32480:4;32476:20;32472:1;32461:9;32457:17;32450:47;32514:131;32640:4;32514:131;:::i;:::-;32506:139;;32233:419;;;:::o;32658:174::-;32798:26;32794:1;32786:6;32782:14;32775:50;32658:174;:::o;32838:366::-;32980:3;33001:67;33065:2;33060:3;33001:67;:::i;:::-;32994:74;;33077:93;33166:3;33077:93;:::i;:::-;33195:2;33190:3;33186:12;33179:19;;32838:366;;;:::o;33210:419::-;33376:4;33414:2;33403:9;33399:18;33391:26;;33463:9;33457:4;33453:20;33449:1;33438:9;33434:17;33427:47;33491:131;33617:4;33491:131;:::i;:::-;33483:139;;33210:419;;;:::o;33635:148::-;33737:11;33774:3;33759:18;;33635:148;;;;:::o;33789:390::-;33895:3;33923:39;33956:5;33923:39;:::i;:::-;33978:89;34060:6;34055:3;33978:89;:::i;:::-;33971:96;;34076:65;34134:6;34129:3;34122:4;34115:5;34111:16;34076:65;:::i;:::-;34166:6;34161:3;34157:16;34150:23;;33899:280;33789:390;;;;:::o;34185:155::-;34325:7;34321:1;34313:6;34309:14;34302:31;34185:155;:::o;34346:400::-;34506:3;34527:84;34609:1;34604:3;34527:84;:::i;:::-;34520:91;;34620:93;34709:3;34620:93;:::i;:::-;34738:1;34733:3;34729:11;34722:18;;34346:400;;;:::o;34752:701::-;35033:3;35055:95;35146:3;35137:6;35055:95;:::i;:::-;35048:102;;35167:95;35258:3;35249:6;35167:95;:::i;:::-;35160:102;;35279:148;35423:3;35279:148;:::i;:::-;35272:155;;35444:3;35437:10;;34752:701;;;;;:::o;35459:225::-;35599:34;35595:1;35587:6;35583:14;35576:58;35668:8;35663:2;35655:6;35651:15;35644:33;35459:225;:::o;35690:366::-;35832:3;35853:67;35917:2;35912:3;35853:67;:::i;:::-;35846:74;;35929:93;36018:3;35929:93;:::i;:::-;36047:2;36042:3;36038:12;36031:19;;35690:366;;;:::o;36062:419::-;36228:4;36266:2;36255:9;36251:18;36243:26;;36315:9;36309:4;36305:20;36301:1;36290:9;36286:17;36279:47;36343:131;36469:4;36343:131;:::i;:::-;36335:139;;36062:419;;;:::o;36487:182::-;36627:34;36623:1;36615:6;36611:14;36604:58;36487:182;:::o;36675:366::-;36817:3;36838:67;36902:2;36897:3;36838:67;:::i;:::-;36831:74;;36914:93;37003:3;36914:93;:::i;:::-;37032:2;37027:3;37023:12;37016:19;;36675:366;;;:::o;37047:419::-;37213:4;37251:2;37240:9;37236:18;37228:26;;37300:9;37294:4;37290:20;37286:1;37275:9;37271:17;37264:47;37328:131;37454:4;37328:131;:::i;:::-;37320:139;;37047:419;;;:::o;37472:98::-;37523:6;37557:5;37551:12;37541:22;;37472:98;;;:::o;37576:168::-;37659:11;37693:6;37688:3;37681:19;37733:4;37728:3;37724:14;37709:29;;37576:168;;;;:::o;37750:373::-;37836:3;37864:38;37896:5;37864:38;:::i;:::-;37918:70;37981:6;37976:3;37918:70;:::i;:::-;37911:77;;37997:65;38055:6;38050:3;38043:4;38036:5;38032:16;37997:65;:::i;:::-;38087:29;38109:6;38087:29;:::i;:::-;38082:3;38078:39;38071:46;;37840:283;37750:373;;;;:::o;38129:640::-;38324:4;38362:3;38351:9;38347:19;38339:27;;38376:71;38444:1;38433:9;38429:17;38420:6;38376:71;:::i;:::-;38457:72;38525:2;38514:9;38510:18;38501:6;38457:72;:::i;:::-;38539;38607:2;38596:9;38592:18;38583:6;38539:72;:::i;:::-;38658:9;38652:4;38648:20;38643:2;38632:9;38628:18;38621:48;38686:76;38757:4;38748:6;38686:76;:::i;:::-;38678:84;;38129:640;;;;;;;:::o;38775:141::-;38831:5;38862:6;38856:13;38847:22;;38878:32;38904:5;38878:32;:::i;:::-;38775:141;;;;:::o;38922:349::-;38991:6;39040:2;39028:9;39019:7;39015:23;39011:32;39008:119;;;39046:79;;:::i;:::-;39008:119;39166:1;39191:63;39246:7;39237:6;39226:9;39222:22;39191:63;:::i;:::-;39181:73;;39137:127;38922:349;;;;:::o;39277:180::-;39325:77;39322:1;39315:88;39422:4;39419:1;39412:15;39446:4;39443:1;39436:15;39463:185;39503:1;39520:20;39538:1;39520:20;:::i;:::-;39515:25;;39554:20;39572:1;39554:20;:::i;:::-;39549:25;;39593:1;39583:35;;39598:18;;:::i;:::-;39583:35;39640:1;39637;39633:9;39628:14;;39463:185;;;;:::o;39654:194::-;39694:4;39714:20;39732:1;39714:20;:::i;:::-;39709:25;;39748:20;39766:1;39748:20;:::i;:::-;39743:25;;39792:1;39789;39785:9;39777:17;;39816:1;39810:4;39807:11;39804:37;;;39821:18;;:::i;:::-;39804:37;39654:194;;;;:::o;39854:176::-;39886:1;39903:20;39921:1;39903:20;:::i;:::-;39898:25;;39937:20;39955:1;39937:20;:::i;:::-;39932:25;;39976:1;39966:35;;39981:18;;:::i;:::-;39966:35;40022:1;40019;40015:9;40010:14;;39854:176;;;;:::o

Swarm Source

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