ETH Price: $3,650.73 (-6.00%)

Token

Elements by Koketit (ELEMENTS)
 

Overview

Max Total Supply

800 ELEMENTS

Holders

209

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 ELEMENTS
0x0cCC8254F63Bf740cFcE73D99D11A298cE7FEBa8
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:
ElementsByKoketit

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

Elements by Koketit

Artist: Shira Barzilay
Instagram: @koketit
Twitter: @KoketitArt

*/


// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

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


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

pragma solidity ^0.8.13;

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

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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


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

pragma solidity ^0.8.13;

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


pragma solidity ^0.8.13;

// File: erc721a/contracts/IERC721A.sol

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: erc721a/contracts/ERC721A.sol

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.15;

contract ElementsByKoketit is ERC721A, DefaultOperatorFilterer, Ownable {

    string public baseURI = "https://ipfs.io/ipfs/QmNNWpRWmAdZBCaGLLeNRTRJGt82EjQubRA97dgs2G6TMY/";
    uint256 public maxSupply = 800;
    uint256 public maxPerWallet = 4;
    bool public saleActive = false;

    mapping(address => uint) public addressToMinted;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor () ERC721A("Elements by Koketit", "ELEMENTS") {
    }

    // Mint
    function mintElement(uint256 mintAmount) public callerIsUser {
        require(saleActive, "Inactive");
        require(addressToMinted[msg.sender] + mintAmount <= maxPerWallet, "Too Many");
        require(totalSupply() + mintAmount <= maxSupply, "Supply Gone");
        
        addressToMinted[msg.sender] += mintAmount;

        _safeMint(msg.sender, mintAmount);
    }

    // Team
    function teamElement(uint256 mintAmount) public onlyOwner {
        require(totalSupply() + mintAmount <= maxSupply, "Supply Gone");

        _safeMint(msg.sender, mintAmount);
    }

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mintElement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"mintAmount","type":"uint256"}],"name":"teamElement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806044815260200162003a9c60449139600990816200002e91906200068c565b50610320600a556004600b556000600c60006101000a81548160ff0219169083151502179055503480156200006257600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601381526020017f456c656d656e7473206279204b6f6b65746974000000000000000000000000008152506040518060400160405280600881526020017f454c454d454e54530000000000000000000000000000000000000000000000008152508160029081620000f791906200068c565b5080600390816200010991906200068c565b506200011a6200033f60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000317578015620001dd576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001a3929190620007b8565b600060405180830381600087803b158015620001be57600080fd5b505af1158015620001d3573d6000803e3d6000fd5b5050505062000316565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000297576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200025d929190620007b8565b600060405180830381600087803b1580156200027857600080fd5b505af11580156200028d573d6000803e3d6000fd5b5050505062000315565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002e09190620007e5565b600060405180830381600087803b158015620002fb57600080fd5b505af115801562000310573d6000803e3d6000fd5b505050505b5b5b5050620003396200032d6200034460201b60201c565b6200034c60201b60201c565b62000802565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200049457607f821691505b602082108103620004aa57620004a96200044c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005147fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004d5565b620005208683620004d5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200056d62000567620005618462000538565b62000542565b62000538565b9050919050565b6000819050919050565b62000589836200054c565b620005a1620005988262000574565b848454620004e2565b825550505050565b600090565b620005b8620005a9565b620005c58184846200057e565b505050565b5b81811015620005ed57620005e1600082620005ae565b600181019050620005cb565b5050565b601f8211156200063c576200060681620004b0565b6200061184620004c5565b8101602085101562000621578190505b620006396200063085620004c5565b830182620005ca565b50505b505050565b600082821c905092915050565b6000620006616000198460080262000641565b1980831691505092915050565b60006200067c83836200064e565b9150826002028217905092915050565b620006978262000412565b67ffffffffffffffff811115620006b357620006b26200041d565b5b620006bf82546200047b565b620006cc828285620005f1565b600060209050601f831160018114620007045760008415620006ef578287015190505b620006fb85826200066e565b8655506200076b565b601f1984166200071486620004b0565b60005b828110156200073e5784890151825560018201915060208501945060208101905062000717565b868310156200075e57848901516200075a601f8916826200064e565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007a08262000773565b9050919050565b620007b28162000793565b82525050565b6000604082019050620007cf6000830185620007a7565b620007de6020830184620007a7565b9392505050565b6000602082019050620007fc6000830184620007a7565b92915050565b61328a80620008126000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e2a113bc11610064578063e2a113bc146105b4578063e985e9c5146105dd578063f2fde38b1461061a578063f823ccd114610643576101b7565b8063b88d4fde14610530578063c87b56dd1461054c578063d5abeb0114610589576101b7565b80638da5cb5b116100c65780638da5cb5b1461047457806395d89b411461049f5780639ec00c95146104ca578063a22cb46514610507576101b7565b806370a0823114610409578063715018a6146104465780637d8966e41461045d576101b7565b806341f434341161015957806355f804b31161013357806355f804b31461034d5780636352211e1461037657806368428a1b146103b35780636c0360eb146103de576101b7565b806341f43434146102db57806342842e0e14610306578063453c231014610322576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461027d57806323b872dd146102a85780633ccfd60b146102c4576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906123e4565b61066c565b6040516101f0919061242c565b60405180910390f35b34801561020557600080fd5b5061020e6106fe565b60405161021b91906124e0565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612538565b610790565b60405161025891906125a6565b60405180910390f35b61027b600480360381019061027691906125ed565b61080f565b005b34801561028957600080fd5b50610292610919565b60405161029f919061263c565b60405180910390f35b6102c260048036038101906102bd9190612657565b610930565b005b3480156102d057600080fd5b506102d9610a80565b005b3480156102e757600080fd5b506102f0610ad1565b6040516102fd9190612709565b60405180910390f35b610320600480360381019061031b9190612657565b610ae3565b005b34801561032e57600080fd5b50610337610c33565b604051610344919061263c565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f9190612859565b610c39565b005b34801561038257600080fd5b5061039d60048036038101906103989190612538565b610c54565b6040516103aa91906125a6565b60405180910390f35b3480156103bf57600080fd5b506103c8610c66565b6040516103d5919061242c565b60405180910390f35b3480156103ea57600080fd5b506103f3610c79565b60405161040091906124e0565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b91906128a2565b610d07565b60405161043d919061263c565b60405180910390f35b34801561045257600080fd5b5061045b610dbf565b005b34801561046957600080fd5b50610472610dd3565b005b34801561048057600080fd5b50610489610e07565b60405161049691906125a6565b60405180910390f35b3480156104ab57600080fd5b506104b4610e31565b6040516104c191906124e0565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec91906128a2565b610ec3565b6040516104fe919061263c565b60405180910390f35b34801561051357600080fd5b5061052e600480360381019061052991906128fb565b610edb565b005b61054a600480360381019061054591906129dc565b610fe5565b005b34801561055857600080fd5b50610573600480360381019061056e9190612538565b611138565b60405161058091906124e0565b60405180910390f35b34801561059557600080fd5b5061059e6111d6565b6040516105ab919061263c565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190612538565b6111dc565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190612a5f565b6113e2565b604051610611919061242c565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c91906128a2565b611476565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612538565b6114f9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106c757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461070d90612ace565b80601f016020809104026020016040519081016040528092919081815260200182805461073990612ace565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050905090565b600061079b82611565565b6107d1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561090a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610887929190612aff565b602060405180830381865afa1580156108a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c89190612b3d565b61090957806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161090091906125a6565b60405180910390fd5b5b61091483836115c4565b505050565b6000610923611708565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a6e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109a25761099d84848461170d565b610a7a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109eb929190612aff565b602060405180830381865afa158015610a08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2c9190612b3d565b610a6d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a6491906125a6565b60405180910390fd5b5b610a7984848461170d565b5b50505050565b610a88611a2f565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ace573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c21573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b5557610b50848484611aad565b610c2d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b9e929190612aff565b602060405180830381865afa158015610bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdf9190612b3d565b610c2057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c1791906125a6565b60405180910390fd5b5b610c2c848484611aad565b5b50505050565b600b5481565b610c41611a2f565b8060099081610c509190612d0c565b5050565b6000610c5f82611acd565b9050919050565b600c60009054906101000a900460ff1681565b60098054610c8690612ace565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb290612ace565b8015610cff5780601f10610cd457610100808354040283529160200191610cff565b820191906000526020600020905b815481529060010190602001808311610ce257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d6e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610dc7611a2f565b610dd16000611b99565b565b610ddb611a2f565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e4090612ace565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6c90612ace565b8015610eb95780601f10610e8e57610100808354040283529160200191610eb9565b820191906000526020600020905b815481529060010190602001808311610e9c57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915090505481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610fd6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f53929190612aff565b602060405180830381865afa158015610f70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f949190612b3d565b610fd557806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610fcc91906125a6565b60405180910390fd5b5b610fe08383611c5f565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611124573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110585761105385858585611d6a565b611131565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110a1929190612aff565b602060405180830381865afa1580156110be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e29190612b3d565b61112357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161111a91906125a6565b60405180910390fd5b5b61113085858585611d6a565b5b5050505050565b606061114382611565565b611179576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611183611ddd565b905060008151036111a357604051806020016040528060008152506111ce565b806111ad84611e6f565b6040516020016111be929190612e1a565b6040516020818303038152906040525b915050919050565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190612e8a565b60405180910390fd5b600c60009054906101000a900460ff16611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090612ef6565b60405180910390fd5b600b5481600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112e79190612f45565b1115611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f90612fe7565b60405180910390fd5b600a5481611334610919565b61133e9190612f45565b111561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613053565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ce9190612f45565b925050819055506113df3382611ebf565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61147e611a2f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e4906130e5565b60405180910390fd5b6114f681611b99565b50565b611501611a2f565b600a548161150d610919565b6115179190612f45565b1115611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f90613053565b60405180910390fd5b6115623382611ebf565b50565b600081611570611708565b1115801561157f575060005482105b80156115bd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006115cf82610c54565b90508073ffffffffffffffffffffffffffffffffffffffff166115f0611edd565b73ffffffffffffffffffffffffffffffffffffffff16146116535761161c81611617611edd565b6113e2565b611652576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061171882611acd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461177f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061178b84611ee5565b915091506117a1818761179c611edd565b611f0c565b6117ed576117b6866117b1611edd565b6113e2565b6117ec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611853576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118608686866001611f50565b801561186b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061193985611915888887611f56565b7c020000000000000000000000000000000000000000000000000000000017611f7e565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036119bf57600060018501905060006004600083815260200190815260200160002054036119bd5760005481146119bc578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a278686866001611fa9565b505050505050565b611a37611faf565b73ffffffffffffffffffffffffffffffffffffffff16611a55610e07565b73ffffffffffffffffffffffffffffffffffffffff1614611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613151565b60405180910390fd5b565b611ac883838360405180602001604052806000815250610fe5565b505050565b60008082905080611adc611708565b11611b6257600054811015611b615760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b5f575b60008103611b55576004600083600190039350838152602001908152602001600020549050611b2b565b8092505050611b94565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611c6c611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d19611edd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d5e919061242c565b60405180910390a35050565b611d75848484610930565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dd757611da084848484611fb7565b611dd6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611dec90612ace565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1890612ace565b8015611e655780601f10611e3a57610100808354040283529160200191611e65565b820191906000526020600020905b815481529060010190602001808311611e4857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611eaa57600184039350600a81066030018453600a8104905080611e88575b50828103602084039350808452505050919050565b611ed9828260405180602001604052806000815250612107565b5050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f6d8686846121a4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fdd611edd565b8786866040518563ffffffff1660e01b8152600401611fff94939291906131c6565b6020604051808303816000875af192505050801561203b57506040513d601f19601f820116820180604052508101906120389190613227565b60015b6120b4573d806000811461206b576040519150601f19603f3d011682016040523d82523d6000602084013e612070565b606091505b5060008151036120ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61211183836121ad565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461219f57600080549050600083820390505b6121516000868380600101945086611fb7565b612187576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061213e57816000541461219c57600080fd5b50505b505050565b60009392505050565b600080549050600082036121ed576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121fa6000848385611f50565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612271836122626000866000611f56565b61226b85612368565b17611f7e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461231257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122d7565b506000820361234d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123636000848385611fa9565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123c18161238c565b81146123cc57600080fd5b50565b6000813590506123de816123b8565b92915050565b6000602082840312156123fa576123f9612382565b5b6000612408848285016123cf565b91505092915050565b60008115159050919050565b61242681612411565b82525050565b6000602082019050612441600083018461241d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612481578082015181840152602081019050612466565b83811115612490576000848401525b50505050565b6000601f19601f8301169050919050565b60006124b282612447565b6124bc8185612452565b93506124cc818560208601612463565b6124d581612496565b840191505092915050565b600060208201905081810360008301526124fa81846124a7565b905092915050565b6000819050919050565b61251581612502565b811461252057600080fd5b50565b6000813590506125328161250c565b92915050565b60006020828403121561254e5761254d612382565b5b600061255c84828501612523565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061259082612565565b9050919050565b6125a081612585565b82525050565b60006020820190506125bb6000830184612597565b92915050565b6125ca81612585565b81146125d557600080fd5b50565b6000813590506125e7816125c1565b92915050565b6000806040838503121561260457612603612382565b5b6000612612858286016125d8565b925050602061262385828601612523565b9150509250929050565b61263681612502565b82525050565b6000602082019050612651600083018461262d565b92915050565b6000806000606084860312156126705761266f612382565b5b600061267e868287016125d8565b935050602061268f868287016125d8565b92505060406126a086828701612523565b9150509250925092565b6000819050919050565b60006126cf6126ca6126c584612565565b6126aa565b612565565b9050919050565b60006126e1826126b4565b9050919050565b60006126f3826126d6565b9050919050565b612703816126e8565b82525050565b600060208201905061271e60008301846126fa565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61276682612496565b810181811067ffffffffffffffff821117156127855761278461272e565b5b80604052505050565b6000612798612378565b90506127a4828261275d565b919050565b600067ffffffffffffffff8211156127c4576127c361272e565b5b6127cd82612496565b9050602081019050919050565b82818337600083830152505050565b60006127fc6127f7846127a9565b61278e565b90508281526020810184848401111561281857612817612729565b5b6128238482856127da565b509392505050565b600082601f8301126128405761283f612724565b5b81356128508482602086016127e9565b91505092915050565b60006020828403121561286f5761286e612382565b5b600082013567ffffffffffffffff81111561288d5761288c612387565b5b6128998482850161282b565b91505092915050565b6000602082840312156128b8576128b7612382565b5b60006128c6848285016125d8565b91505092915050565b6128d881612411565b81146128e357600080fd5b50565b6000813590506128f5816128cf565b92915050565b6000806040838503121561291257612911612382565b5b6000612920858286016125d8565b9250506020612931858286016128e6565b9150509250929050565b600067ffffffffffffffff8211156129565761295561272e565b5b61295f82612496565b9050602081019050919050565b600061297f61297a8461293b565b61278e565b90508281526020810184848401111561299b5761299a612729565b5b6129a68482856127da565b509392505050565b600082601f8301126129c3576129c2612724565b5b81356129d384826020860161296c565b91505092915050565b600080600080608085870312156129f6576129f5612382565b5b6000612a04878288016125d8565b9450506020612a15878288016125d8565b9350506040612a2687828801612523565b925050606085013567ffffffffffffffff811115612a4757612a46612387565b5b612a53878288016129ae565b91505092959194509250565b60008060408385031215612a7657612a75612382565b5b6000612a84858286016125d8565b9250506020612a95858286016125d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ae657607f821691505b602082108103612af957612af8612a9f565b5b50919050565b6000604082019050612b146000830185612597565b612b216020830184612597565b9392505050565b600081519050612b37816128cf565b92915050565b600060208284031215612b5357612b52612382565b5b6000612b6184828501612b28565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612bcc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b8f565b612bd68683612b8f565b95508019841693508086168417925050509392505050565b6000612c09612c04612bff84612502565b6126aa565b612502565b9050919050565b6000819050919050565b612c2383612bee565b612c37612c2f82612c10565b848454612b9c565b825550505050565b600090565b612c4c612c3f565b612c57818484612c1a565b505050565b5b81811015612c7b57612c70600082612c44565b600181019050612c5d565b5050565b601f821115612cc057612c9181612b6a565b612c9a84612b7f565b81016020851015612ca9578190505b612cbd612cb585612b7f565b830182612c5c565b50505b505050565b600082821c905092915050565b6000612ce360001984600802612cc5565b1980831691505092915050565b6000612cfc8383612cd2565b9150826002028217905092915050565b612d1582612447565b67ffffffffffffffff811115612d2e57612d2d61272e565b5b612d388254612ace565b612d43828285612c7f565b600060209050601f831160018114612d765760008415612d64578287015190505b612d6e8582612cf0565b865550612dd6565b601f198416612d8486612b6a565b60005b82811015612dac57848901518255600182019150602085019450602081019050612d87565b86831015612dc95784890151612dc5601f891682612cd2565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000612df482612447565b612dfe8185612dde565b9350612e0e818560208601612463565b80840191505092915050565b6000612e268285612de9565b9150612e328284612de9565b91508190509392505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612e74601e83612452565b9150612e7f82612e3e565b602082019050919050565b60006020820190508181036000830152612ea381612e67565b9050919050565b7f496e616374697665000000000000000000000000000000000000000000000000600082015250565b6000612ee0600883612452565b9150612eeb82612eaa565b602082019050919050565b60006020820190508181036000830152612f0f81612ed3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f5082612502565b9150612f5b83612502565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9057612f8f612f16565b5b828201905092915050565b7f546f6f204d616e79000000000000000000000000000000000000000000000000600082015250565b6000612fd1600883612452565b9150612fdc82612f9b565b602082019050919050565b6000602082019050818103600083015261300081612fc4565b9050919050565b7f537570706c7920476f6e65000000000000000000000000000000000000000000600082015250565b600061303d600b83612452565b915061304882613007565b602082019050919050565b6000602082019050818103600083015261306c81613030565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130cf602683612452565b91506130da82613073565b604082019050919050565b600060208201905081810360008301526130fe816130c2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061313b602083612452565b915061314682613105565b602082019050919050565b6000602082019050818103600083015261316a8161312e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061319882613171565b6131a2818561317c565b93506131b2818560208601612463565b6131bb81612496565b840191505092915050565b60006080820190506131db6000830187612597565b6131e86020830186612597565b6131f5604083018561262d565b8181036060830152613207818461318d565b905095945050505050565b600081519050613221816123b8565b92915050565b60006020828403121561323d5761323c612382565b5b600061324b84828501613212565b9150509291505056fea26469706673582212207f15595984cfbf69e4333db3369a5befcd6b0c4d75bf4a4524e2021f307f5d7064736f6c634300080f003368747470733a2f2f697066732e696f2f697066732f516d4e4e577052576d41645a424361474c4c654e5254524a47743832456a51756252413937646773324736544d592f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e2a113bc11610064578063e2a113bc146105b4578063e985e9c5146105dd578063f2fde38b1461061a578063f823ccd114610643576101b7565b8063b88d4fde14610530578063c87b56dd1461054c578063d5abeb0114610589576101b7565b80638da5cb5b116100c65780638da5cb5b1461047457806395d89b411461049f5780639ec00c95146104ca578063a22cb46514610507576101b7565b806370a0823114610409578063715018a6146104465780637d8966e41461045d576101b7565b806341f434341161015957806355f804b31161013357806355f804b31461034d5780636352211e1461037657806368428a1b146103b35780636c0360eb146103de576101b7565b806341f43434146102db57806342842e0e14610306578063453c231014610322576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461027d57806323b872dd146102a85780633ccfd60b146102c4576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906123e4565b61066c565b6040516101f0919061242c565b60405180910390f35b34801561020557600080fd5b5061020e6106fe565b60405161021b91906124e0565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612538565b610790565b60405161025891906125a6565b60405180910390f35b61027b600480360381019061027691906125ed565b61080f565b005b34801561028957600080fd5b50610292610919565b60405161029f919061263c565b60405180910390f35b6102c260048036038101906102bd9190612657565b610930565b005b3480156102d057600080fd5b506102d9610a80565b005b3480156102e757600080fd5b506102f0610ad1565b6040516102fd9190612709565b60405180910390f35b610320600480360381019061031b9190612657565b610ae3565b005b34801561032e57600080fd5b50610337610c33565b604051610344919061263c565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f9190612859565b610c39565b005b34801561038257600080fd5b5061039d60048036038101906103989190612538565b610c54565b6040516103aa91906125a6565b60405180910390f35b3480156103bf57600080fd5b506103c8610c66565b6040516103d5919061242c565b60405180910390f35b3480156103ea57600080fd5b506103f3610c79565b60405161040091906124e0565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b91906128a2565b610d07565b60405161043d919061263c565b60405180910390f35b34801561045257600080fd5b5061045b610dbf565b005b34801561046957600080fd5b50610472610dd3565b005b34801561048057600080fd5b50610489610e07565b60405161049691906125a6565b60405180910390f35b3480156104ab57600080fd5b506104b4610e31565b6040516104c191906124e0565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec91906128a2565b610ec3565b6040516104fe919061263c565b60405180910390f35b34801561051357600080fd5b5061052e600480360381019061052991906128fb565b610edb565b005b61054a600480360381019061054591906129dc565b610fe5565b005b34801561055857600080fd5b50610573600480360381019061056e9190612538565b611138565b60405161058091906124e0565b60405180910390f35b34801561059557600080fd5b5061059e6111d6565b6040516105ab919061263c565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190612538565b6111dc565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190612a5f565b6113e2565b604051610611919061242c565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c91906128a2565b611476565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612538565b6114f9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106c757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461070d90612ace565b80601f016020809104026020016040519081016040528092919081815260200182805461073990612ace565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050905090565b600061079b82611565565b6107d1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561090a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610887929190612aff565b602060405180830381865afa1580156108a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c89190612b3d565b61090957806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161090091906125a6565b60405180910390fd5b5b61091483836115c4565b505050565b6000610923611708565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a6e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109a25761099d84848461170d565b610a7a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109eb929190612aff565b602060405180830381865afa158015610a08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2c9190612b3d565b610a6d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a6491906125a6565b60405180910390fd5b5b610a7984848461170d565b5b50505050565b610a88611a2f565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ace573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c21573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b5557610b50848484611aad565b610c2d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b9e929190612aff565b602060405180830381865afa158015610bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdf9190612b3d565b610c2057336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c1791906125a6565b60405180910390fd5b5b610c2c848484611aad565b5b50505050565b600b5481565b610c41611a2f565b8060099081610c509190612d0c565b5050565b6000610c5f82611acd565b9050919050565b600c60009054906101000a900460ff1681565b60098054610c8690612ace565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb290612ace565b8015610cff5780601f10610cd457610100808354040283529160200191610cff565b820191906000526020600020905b815481529060010190602001808311610ce257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d6e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610dc7611a2f565b610dd16000611b99565b565b610ddb611a2f565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e4090612ace565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6c90612ace565b8015610eb95780601f10610e8e57610100808354040283529160200191610eb9565b820191906000526020600020905b815481529060010190602001808311610e9c57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915090505481565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610fd6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f53929190612aff565b602060405180830381865afa158015610f70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f949190612b3d565b610fd557806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610fcc91906125a6565b60405180910390fd5b5b610fe08383611c5f565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611124573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110585761105385858585611d6a565b611131565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110a1929190612aff565b602060405180830381865afa1580156110be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e29190612b3d565b61112357336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161111a91906125a6565b60405180910390fd5b5b61113085858585611d6a565b5b5050505050565b606061114382611565565b611179576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611183611ddd565b905060008151036111a357604051806020016040528060008152506111ce565b806111ad84611e6f565b6040516020016111be929190612e1a565b6040516020818303038152906040525b915050919050565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190612e8a565b60405180910390fd5b600c60009054906101000a900460ff16611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090612ef6565b60405180910390fd5b600b5481600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112e79190612f45565b1115611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f90612fe7565b60405180910390fd5b600a5481611334610919565b61133e9190612f45565b111561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613053565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113ce9190612f45565b925050819055506113df3382611ebf565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61147e611a2f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e4906130e5565b60405180910390fd5b6114f681611b99565b50565b611501611a2f565b600a548161150d610919565b6115179190612f45565b1115611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f90613053565b60405180910390fd5b6115623382611ebf565b50565b600081611570611708565b1115801561157f575060005482105b80156115bd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006115cf82610c54565b90508073ffffffffffffffffffffffffffffffffffffffff166115f0611edd565b73ffffffffffffffffffffffffffffffffffffffff16146116535761161c81611617611edd565b6113e2565b611652576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061171882611acd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461177f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061178b84611ee5565b915091506117a1818761179c611edd565b611f0c565b6117ed576117b6866117b1611edd565b6113e2565b6117ec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611853576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118608686866001611f50565b801561186b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061193985611915888887611f56565b7c020000000000000000000000000000000000000000000000000000000017611f7e565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036119bf57600060018501905060006004600083815260200190815260200160002054036119bd5760005481146119bc578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a278686866001611fa9565b505050505050565b611a37611faf565b73ffffffffffffffffffffffffffffffffffffffff16611a55610e07565b73ffffffffffffffffffffffffffffffffffffffff1614611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613151565b60405180910390fd5b565b611ac883838360405180602001604052806000815250610fe5565b505050565b60008082905080611adc611708565b11611b6257600054811015611b615760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b5f575b60008103611b55576004600083600190039350838152602001908152602001600020549050611b2b565b8092505050611b94565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000611c6c611edd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d19611edd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d5e919061242c565b60405180910390a35050565b611d75848484610930565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dd757611da084848484611fb7565b611dd6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611dec90612ace565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1890612ace565b8015611e655780601f10611e3a57610100808354040283529160200191611e65565b820191906000526020600020905b815481529060010190602001808311611e4857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611eaa57600184039350600a81066030018453600a8104905080611e88575b50828103602084039350808452505050919050565b611ed9828260405180602001604052806000815250612107565b5050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f6d8686846121a4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fdd611edd565b8786866040518563ffffffff1660e01b8152600401611fff94939291906131c6565b6020604051808303816000875af192505050801561203b57506040513d601f19601f820116820180604052508101906120389190613227565b60015b6120b4573d806000811461206b576040519150601f19603f3d011682016040523d82523d6000602084013e612070565b606091505b5060008151036120ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61211183836121ad565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461219f57600080549050600083820390505b6121516000868380600101945086611fb7565b612187576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061213e57816000541461219c57600080fd5b50505b505050565b60009392505050565b600080549050600082036121ed576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121fa6000848385611f50565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612271836122626000866000611f56565b61226b85612368565b17611f7e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461231257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122d7565b506000820361234d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123636000848385611fa9565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123c18161238c565b81146123cc57600080fd5b50565b6000813590506123de816123b8565b92915050565b6000602082840312156123fa576123f9612382565b5b6000612408848285016123cf565b91505092915050565b60008115159050919050565b61242681612411565b82525050565b6000602082019050612441600083018461241d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612481578082015181840152602081019050612466565b83811115612490576000848401525b50505050565b6000601f19601f8301169050919050565b60006124b282612447565b6124bc8185612452565b93506124cc818560208601612463565b6124d581612496565b840191505092915050565b600060208201905081810360008301526124fa81846124a7565b905092915050565b6000819050919050565b61251581612502565b811461252057600080fd5b50565b6000813590506125328161250c565b92915050565b60006020828403121561254e5761254d612382565b5b600061255c84828501612523565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061259082612565565b9050919050565b6125a081612585565b82525050565b60006020820190506125bb6000830184612597565b92915050565b6125ca81612585565b81146125d557600080fd5b50565b6000813590506125e7816125c1565b92915050565b6000806040838503121561260457612603612382565b5b6000612612858286016125d8565b925050602061262385828601612523565b9150509250929050565b61263681612502565b82525050565b6000602082019050612651600083018461262d565b92915050565b6000806000606084860312156126705761266f612382565b5b600061267e868287016125d8565b935050602061268f868287016125d8565b92505060406126a086828701612523565b9150509250925092565b6000819050919050565b60006126cf6126ca6126c584612565565b6126aa565b612565565b9050919050565b60006126e1826126b4565b9050919050565b60006126f3826126d6565b9050919050565b612703816126e8565b82525050565b600060208201905061271e60008301846126fa565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61276682612496565b810181811067ffffffffffffffff821117156127855761278461272e565b5b80604052505050565b6000612798612378565b90506127a4828261275d565b919050565b600067ffffffffffffffff8211156127c4576127c361272e565b5b6127cd82612496565b9050602081019050919050565b82818337600083830152505050565b60006127fc6127f7846127a9565b61278e565b90508281526020810184848401111561281857612817612729565b5b6128238482856127da565b509392505050565b600082601f8301126128405761283f612724565b5b81356128508482602086016127e9565b91505092915050565b60006020828403121561286f5761286e612382565b5b600082013567ffffffffffffffff81111561288d5761288c612387565b5b6128998482850161282b565b91505092915050565b6000602082840312156128b8576128b7612382565b5b60006128c6848285016125d8565b91505092915050565b6128d881612411565b81146128e357600080fd5b50565b6000813590506128f5816128cf565b92915050565b6000806040838503121561291257612911612382565b5b6000612920858286016125d8565b9250506020612931858286016128e6565b9150509250929050565b600067ffffffffffffffff8211156129565761295561272e565b5b61295f82612496565b9050602081019050919050565b600061297f61297a8461293b565b61278e565b90508281526020810184848401111561299b5761299a612729565b5b6129a68482856127da565b509392505050565b600082601f8301126129c3576129c2612724565b5b81356129d384826020860161296c565b91505092915050565b600080600080608085870312156129f6576129f5612382565b5b6000612a04878288016125d8565b9450506020612a15878288016125d8565b9350506040612a2687828801612523565b925050606085013567ffffffffffffffff811115612a4757612a46612387565b5b612a53878288016129ae565b91505092959194509250565b60008060408385031215612a7657612a75612382565b5b6000612a84858286016125d8565b9250506020612a95858286016125d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ae657607f821691505b602082108103612af957612af8612a9f565b5b50919050565b6000604082019050612b146000830185612597565b612b216020830184612597565b9392505050565b600081519050612b37816128cf565b92915050565b600060208284031215612b5357612b52612382565b5b6000612b6184828501612b28565b91505092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612bcc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b8f565b612bd68683612b8f565b95508019841693508086168417925050509392505050565b6000612c09612c04612bff84612502565b6126aa565b612502565b9050919050565b6000819050919050565b612c2383612bee565b612c37612c2f82612c10565b848454612b9c565b825550505050565b600090565b612c4c612c3f565b612c57818484612c1a565b505050565b5b81811015612c7b57612c70600082612c44565b600181019050612c5d565b5050565b601f821115612cc057612c9181612b6a565b612c9a84612b7f565b81016020851015612ca9578190505b612cbd612cb585612b7f565b830182612c5c565b50505b505050565b600082821c905092915050565b6000612ce360001984600802612cc5565b1980831691505092915050565b6000612cfc8383612cd2565b9150826002028217905092915050565b612d1582612447565b67ffffffffffffffff811115612d2e57612d2d61272e565b5b612d388254612ace565b612d43828285612c7f565b600060209050601f831160018114612d765760008415612d64578287015190505b612d6e8582612cf0565b865550612dd6565b601f198416612d8486612b6a565b60005b82811015612dac57848901518255600182019150602085019450602081019050612d87565b86831015612dc95784890151612dc5601f891682612cd2565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000612df482612447565b612dfe8185612dde565b9350612e0e818560208601612463565b80840191505092915050565b6000612e268285612de9565b9150612e328284612de9565b91508190509392505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612e74601e83612452565b9150612e7f82612e3e565b602082019050919050565b60006020820190508181036000830152612ea381612e67565b9050919050565b7f496e616374697665000000000000000000000000000000000000000000000000600082015250565b6000612ee0600883612452565b9150612eeb82612eaa565b602082019050919050565b60006020820190508181036000830152612f0f81612ed3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f5082612502565b9150612f5b83612502565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9057612f8f612f16565b5b828201905092915050565b7f546f6f204d616e79000000000000000000000000000000000000000000000000600082015250565b6000612fd1600883612452565b9150612fdc82612f9b565b602082019050919050565b6000602082019050818103600083015261300081612fc4565b9050919050565b7f537570706c7920476f6e65000000000000000000000000000000000000000000600082015250565b600061303d600b83612452565b915061304882613007565b602082019050919050565b6000602082019050818103600083015261306c81613030565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130cf602683612452565b91506130da82613073565b604082019050919050565b600060208201905081810360008301526130fe816130c2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061313b602083612452565b915061314682613105565b602082019050919050565b6000602082019050818103600083015261316a8161312e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061319882613171565b6131a2818561317c565b93506131b2818560208601612463565b6131bb81612496565b840191505092915050565b60006080820190506131db6000830187612597565b6131e86020830186612597565b6131f5604083018561262d565b8181036060830152613207818461318d565b905095945050505050565b600081519050613221816123b8565b92915050565b60006020828403121561323d5761323c612382565b5b600061324b84828501613212565b9150509291505056fea26469706673582212207f15595984cfbf69e4333db3369a5befcd6b0c4d75bf4a4524e2021f307f5d7064736f6c634300080f0033

Deployed Bytecode Sourcemap

63889:2768:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24291:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25193:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31684:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65870:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20944:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66043:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65471:98;;;;;;;;;;;;;:::i;:::-;;3078:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66222:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64108:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65362:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26586:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64146:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63970:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22128:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63044:103;;;;;;;;;;;;;:::i;:::-;;65154:84;;;;;;;;;;;;;:::i;:::-;;62396:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25369:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64185:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65686:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66409:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25579:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64071:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64457:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32633:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63302:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64859:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24291:639;24376:4;24715:10;24700:25;;:11;:25;;;;:102;;;;24792:10;24777:25;;:11;:25;;;;24700:102;:179;;;;24869:10;24854:25;;:11;:25;;;;24700:179;24680:199;;24291:639;;;:::o;25193:100::-;25247:13;25280:5;25273:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25193:100;:::o;31684:218::-;31760:7;31785:16;31793:7;31785;:16::i;:::-;31780:64;;31810:34;;;;;;;;;;;;;;31780:64;31864:15;:24;31880:7;31864:24;;;;;;;;;;;:30;;;;;;;;;;;;31857:37;;31684:218;;;:::o;65870:165::-;65974:8;5120:1;3178:42;5072:45;;;:49;5068:225;;;3178:42;5143;;;5194:4;5201:8;5143:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5138:144;;5257:8;5238:28;;;;;;;;;;;:::i;:::-;;;;;;;;5138:144;5068:225;65995:32:::1;66009:8;66019:7;65995:13;:32::i;:::-;65870:165:::0;;;:::o;20944:323::-;21005:7;21233:15;:13;:15::i;:::-;21218:12;;21202:13;;:28;:46;21195:53;;20944:323;:::o;66043:171::-;66152:4;4374:1;3178:42;4326:45;;;:49;4322:539;;;4615:10;4607:18;;:4;:18;;;4603:85;;66169:37:::1;66188:4;66194:2;66198:7;66169:18;:37::i;:::-;4666:7:::0;;4603:85;3178:42;4707;;;4758:4;4765:10;4707:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4702:148;;4823:10;4804:30;;;;;;;;;;;:::i;:::-;;;;;;;;4702:148;4322:539;66169:37:::1;66188:4;66194:2;66198:7;66169:18;:37::i;:::-;66043:171:::0;;;;;:::o;65471:98::-;62282:13;:11;:13::i;:::-;65521:10:::1;65513:28;;:51;65542:21;65513:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65471:98::o:0;3078:143::-;3178:42;3078:143;:::o;66222:179::-;66335:4;4374:1;3178:42;4326:45;;;:49;4322:539;;;4615:10;4607:18;;:4;:18;;;4603:85;;66352:41:::1;66375:4;66381:2;66385:7;66352:22;:41::i;:::-;4666:7:::0;;4603:85;3178:42;4707;;;4758:4;4765:10;4707:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4702:148;;4823:10;4804:30;;;;;;;;;;;:::i;:::-;;;;;;;;4702:148;4322:539;66352:41:::1;66375:4;66381:2;66385:7;66352:22;:41::i;:::-;66222:179:::0;;;;;:::o;64108:31::-;;;;:::o;65362:100::-;62282:13;:11;:13::i;:::-;65446:8:::1;65436:7;:18;;;;;;:::i;:::-;;65362:100:::0;:::o;26586:152::-;26658:7;26701:27;26720:7;26701:18;:27::i;:::-;26678:52;;26586:152;;;:::o;64146:30::-;;;;;;;;;;;;;:::o;63970:94::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22128:233::-;22200:7;22241:1;22224:19;;:5;:19;;;22220:60;;22252:28;;;;;;;;;;;;;;22220:60;16287:13;22298:18;:25;22317:5;22298:25;;;;;;;;;;;;;;;;:55;22291:62;;22128:233;;;:::o;63044:103::-;62282:13;:11;:13::i;:::-;63109:30:::1;63136:1;63109:18;:30::i;:::-;63044:103::o:0;65154:84::-;62282:13;:11;:13::i;:::-;65220:10:::1;;;;;;;;;;;65219:11;65206:10;;:24;;;;;;;;;;;;;;;;;;65154:84::o:0;62396:87::-;62442:7;62469:6;;;;;;;;;;;62462:13;;62396:87;:::o;25369:104::-;25425:13;25458:7;25451:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25369:104;:::o;64185:47::-;;;;;;;;;;;;;;;;;:::o;65686:176::-;65790:8;5120:1;3178:42;5072:45;;;:49;5068:225;;;3178:42;5143;;;5194:4;5201:8;5143:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5138:144;;5257:8;5238:28;;;;;;;;;;;:::i;:::-;;;;;;;;5138:144;5068:225;65811:43:::1;65835:8;65845;65811:23;:43::i;:::-;65686:176:::0;;;:::o;66409:245::-;66577:4;4374:1;3178:42;4326:45;;;:49;4322:539;;;4615:10;4607:18;;:4;:18;;;4603:85;;66599:47:::1;66622:4;66628:2;66632:7;66641:4;66599:22;:47::i;:::-;4666:7:::0;;4603:85;3178:42;4707;;;4758:4;4765:10;4707:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4702:148;;4823:10;4804:30;;;;;;;;;;;:::i;:::-;;;;;;;;4702:148;4322:539;66599:47:::1;66622:4;66628:2;66632:7;66641:4;66599:22;:47::i;:::-;66409:245:::0;;;;;;:::o;25579:318::-;25652:13;25683:16;25691:7;25683;:16::i;:::-;25678:59;;25708:29;;;;;;;;;;;;;;25678:59;25750:21;25774:10;:8;:10::i;:::-;25750:34;;25827:1;25808:7;25802:21;:26;:87;;;;;;;;;;;;;;;;;25855:7;25864:18;25874:7;25864:9;:18::i;:::-;25838:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25802:87;25795:94;;;25579:318;;;:::o;64071:30::-;;;;:::o;64457:381::-;64297:10;64284:23;;:9;:23;;;64276:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;64537:10:::1;;;;;;;;;;;64529:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;64623:12;;64609:10;64579:15;:27;64595:10;64579:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:56;;64571:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;64697:9;;64683:10;64667:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:39;;64659:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;64774:10;64743:15;:27;64759:10;64743:27;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;64797:33;64807:10;64819;64797:9;:33::i;:::-;64457:381:::0;:::o;32633:164::-;32730:4;32754:18;:25;32773:5;32754:25;;;;;;;;;;;;;;;:35;32780:8;32754:35;;;;;;;;;;;;;;;;;;;;;;;;;32747:42;;32633:164;;;;:::o;63302:201::-;62282:13;:11;:13::i;:::-;63411:1:::1;63391:22;;:8;:22;;::::0;63383:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;63467:28;63486:8;63467:18;:28::i;:::-;63302:201:::0;:::o;64859:186::-;62282:13;:11;:13::i;:::-;64966:9:::1;;64952:10;64936:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:39;;64928:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;65004:33;65014:10;65026;65004:9;:33::i;:::-;64859:186:::0;:::o;33055:282::-;33120:4;33176:7;33157:15;:13;:15::i;:::-;:26;;:66;;;;;33210:13;;33200:7;:23;33157:66;:153;;;;;33309:1;17063:8;33261:17;:26;33279:7;33261:26;;;;;;;;;;;;:44;:49;33157:153;33137:173;;33055:282;;;:::o;31117:408::-;31206:13;31222:16;31230:7;31222;:16::i;:::-;31206:32;;31278:5;31255:28;;:19;:17;:19::i;:::-;:28;;;31251:175;;31303:44;31320:5;31327:19;:17;:19::i;:::-;31303:16;:44::i;:::-;31298:128;;31375:35;;;;;;;;;;;;;;31298:128;31251:175;31471:2;31438:15;:24;31454:7;31438:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31509:7;31505:2;31489:28;;31498:5;31489:28;;;;;;;;;;;;31195:330;31117:408;;:::o;20460:92::-;20516:7;20460:92;:::o;35323:2825::-;35465:27;35495;35514:7;35495:18;:27::i;:::-;35465:57;;35580:4;35539:45;;35555:19;35539:45;;;35535:86;;35593:28;;;;;;;;;;;;;;35535:86;35635:27;35664:23;35691:35;35718:7;35691:26;:35::i;:::-;35634:92;;;;35826:68;35851:15;35868:4;35874:19;:17;:19::i;:::-;35826:24;:68::i;:::-;35821:180;;35914:43;35931:4;35937:19;:17;:19::i;:::-;35914:16;:43::i;:::-;35909:92;;35966:35;;;;;;;;;;;;;;35909:92;35821:180;36032:1;36018:16;;:2;:16;;;36014:52;;36043:23;;;;;;;;;;;;;;36014:52;36079:43;36101:4;36107:2;36111:7;36120:1;36079:21;:43::i;:::-;36215:15;36212:160;;;36355:1;36334:19;36327:30;36212:160;36752:18;:24;36771:4;36752:24;;;;;;;;;;;;;;;;36750:26;;;;;;;;;;;;36821:18;:22;36840:2;36821:22;;;;;;;;;;;;;;;;36819:24;;;;;;;;;;;37143:146;37180:2;37229:45;37244:4;37250:2;37254:19;37229:14;:45::i;:::-;17343:8;37201:73;37143:18;:146::i;:::-;37114:17;:26;37132:7;37114:26;;;;;;;;;;;:175;;;;37460:1;17343:8;37409:19;:47;:52;37405:627;;37482:19;37514:1;37504:7;:11;37482:33;;37671:1;37637:17;:30;37655:11;37637:30;;;;;;;;;;;;:35;37633:384;;37775:13;;37760:11;:28;37756:242;;37955:19;37922:17;:30;37940:11;37922:30;;;;;;;;;;;:52;;;;37756:242;37633:384;37463:569;37405:627;38079:7;38075:2;38060:27;;38069:4;38060:27;;;;;;;;;;;;38098:42;38119:4;38125:2;38129:7;38138:1;38098:20;:42::i;:::-;35454:2694;;;35323:2825;;;:::o;62561:132::-;62636:12;:10;:12::i;:::-;62625:23;;:7;:5;:7::i;:::-;:23;;;62617:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62561:132::o;38244:193::-;38390:39;38407:4;38413:2;38417:7;38390:39;;;;;;;;;;;;:16;:39::i;:::-;38244:193;;;:::o;27741:1275::-;27808:7;27828:12;27843:7;27828:22;;27911:4;27892:15;:13;:15::i;:::-;:23;27888:1061;;27945:13;;27938:4;:20;27934:1015;;;27983:14;28000:17;:23;28018:4;28000:23;;;;;;;;;;;;27983:40;;28117:1;17063:8;28089:6;:24;:29;28085:845;;28754:113;28771:1;28761:6;:11;28754:113;;28814:17;:25;28832:6;;;;;;;28814:25;;;;;;;;;;;;28805:34;;28754:113;;;28900:6;28893:13;;;;;;28085:845;27960:989;27934:1015;27888:1061;28977:31;;;;;;;;;;;;;;27741:1275;;;;:::o;63663:191::-;63737:16;63756:6;;;;;;;;;;;63737:25;;63782:8;63773:6;;:17;;;;;;;;;;;;;;;;;;63837:8;63806:40;;63827:8;63806:40;;;;;;;;;;;;63726:128;63663:191;:::o;32242:234::-;32389:8;32337:18;:39;32356:19;:17;:19::i;:::-;32337:39;;;;;;;;;;;;;;;:49;32377:8;32337:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32449:8;32413:55;;32428:19;:17;:19::i;:::-;32413:55;;;32459:8;32413:55;;;;;;:::i;:::-;;;;;;;;32242:234;;:::o;39035:407::-;39210:31;39223:4;39229:2;39233:7;39210:12;:31::i;:::-;39274:1;39256:2;:14;;;:19;39252:183;;39295:56;39326:4;39332:2;39336:7;39345:5;39295:30;:56::i;:::-;39290:145;;39379:40;;;;;;;;;;;;;;39290:145;39252:183;39035:407;;;;:::o;65246:108::-;65306:13;65339:7;65332:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65246:108;:::o;55570:1745::-;55635:17;56069:4;56062;56056:11;56052:22;56161:1;56155:4;56148:15;56236:4;56233:1;56229:12;56222:19;;56318:1;56313:3;56306:14;56422:3;56661:5;56643:428;56669:1;56643:428;;;56709:1;56704:3;56700:11;56693:18;;56880:2;56874:4;56870:13;56866:2;56862:22;56857:3;56849:36;56974:2;56968:4;56964:13;56956:21;;57041:4;56643:428;57031:25;56643:428;56647:21;57110:3;57105;57101:13;57225:4;57220:3;57216:14;57209:21;;57290:6;57285:3;57278:19;55674:1634;;;55570:1745;;;:::o;49195:112::-;49272:27;49282:2;49286:8;49272:27;;;;;;;;;;;;:9;:27::i;:::-;49195:112;;:::o;55363:105::-;55423:7;55450:10;55443:17;;55363:105;:::o;34218:485::-;34320:27;34349:23;34390:38;34431:15;:24;34447:7;34431:24;;;;;;;;;;;34390:65;;34608:18;34585:41;;34665:19;34659:26;34640:45;;34570:126;34218:485;;;:::o;33446:659::-;33595:11;33760:16;33753:5;33749:28;33740:37;;33920:16;33909:9;33905:32;33892:45;;34070:15;34059:9;34056:30;34048:5;34037:9;34034:20;34031:56;34021:66;;33446:659;;;;;:::o;40104:159::-;;;;;:::o;54672:311::-;54807:7;54827:16;17467:3;54853:19;:41;;54827:68;;17467:3;54921:31;54932:4;54938:2;54942:9;54921:10;:31::i;:::-;54913:40;;:62;;54906:69;;;54672:311;;;;;:::o;29564:450::-;29644:14;29812:16;29805:5;29801:28;29792:37;;29989:5;29975:11;29950:23;29946:41;29943:52;29936:5;29933:63;29923:73;;29564:450;;;;:::o;40928:158::-;;;;;:::o;60947:98::-;61000:7;61027:10;61020:17;;60947:98;:::o;41526:716::-;41689:4;41735:2;41710:45;;;41756:19;:17;:19::i;:::-;41777:4;41783:7;41792:5;41710:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41706:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42010:1;41993:6;:13;:18;41989:235;;42039:40;;;;;;;;;;;;;;41989:235;42182:6;42176:13;42167:6;42163:2;42159:15;42152:38;41706:529;41879:54;;;41869:64;;;:6;:64;;;;41862:71;;;41526:716;;;;;;:::o;48422:689::-;48553:19;48559:2;48563:8;48553:5;:19::i;:::-;48632:1;48614:2;:14;;;:19;48610:483;;48654:11;48668:13;;48654:27;;48700:13;48722:8;48716:3;:14;48700:30;;48749:233;48780:62;48819:1;48823:2;48827:7;;;;;;48836:5;48780:30;:62::i;:::-;48775:167;;48878:40;;;;;;;;;;;;;;48775:167;48977:3;48969:5;:11;48749:233;;49064:3;49047:13;;:20;49043:34;;49069:8;;;49043:34;48635:458;;48610:483;48422:689;;;:::o;54373:147::-;54510:6;54373:147;;;;;:::o;42704:2966::-;42777:20;42800:13;;42777:36;;42840:1;42828:8;:13;42824:44;;42850:18;;;;;;;;;;;;;;42824:44;42881:61;42911:1;42915:2;42919:12;42933:8;42881:21;:61::i;:::-;43425:1;16425:2;43395:1;:26;;43394:32;43382:8;:45;43356:18;:22;43375:2;43356:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43704:139;43741:2;43795:33;43818:1;43822:2;43826:1;43795:14;:33::i;:::-;43762:30;43783:8;43762:20;:30::i;:::-;:66;43704:18;:139::i;:::-;43670:17;:31;43688:12;43670:31;;;;;;;;;;;:173;;;;43860:16;43891:11;43920:8;43905:12;:23;43891:37;;44441:16;44437:2;44433:25;44421:37;;44813:12;44773:8;44732:1;44670:25;44611:1;44550;44523:335;45184:1;45170:12;45166:20;45124:346;45225:3;45216:7;45213:16;45124:346;;45443:7;45433:8;45430:1;45403:25;45400:1;45397;45392:59;45278:1;45269:7;45265:15;45254:26;;45124:346;;;45128:77;45515:1;45503:8;:13;45499:45;;45525:19;;;;;;;;;;;;;;45499:45;45577:3;45561:13;:19;;;;43130:2462;;45602:60;45631:1;45635:2;45639:12;45653:8;45602:20;:60::i;:::-;42766:2904;42704:2966;;:::o;30116:324::-;30186:14;30419:1;30409:8;30406:15;30380:24;30376:46;30366:56;;30116:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:60::-;5943:3;5964:5;5957:12;;5915:60;;;:::o;5981:142::-;6031:9;6064:53;6082:34;6091:24;6109:5;6091:24;:::i;:::-;6082:34;:::i;:::-;6064:53;:::i;:::-;6051:66;;5981:142;;;:::o;6129:126::-;6179:9;6212:37;6243:5;6212:37;:::i;:::-;6199:50;;6129:126;;;:::o;6261:157::-;6342:9;6375:37;6406:5;6375:37;:::i;:::-;6362:50;;6261:157;;;:::o;6424:193::-;6542:68;6604:5;6542:68;:::i;:::-;6537:3;6530:81;6424:193;;:::o;6623:284::-;6747:4;6785:2;6774:9;6770:18;6762:26;;6798:102;6897:1;6886:9;6882:17;6873:6;6798:102;:::i;:::-;6623:284;;;;:::o;6913:117::-;7022:1;7019;7012:12;7036:117;7145:1;7142;7135:12;7159:180;7207:77;7204:1;7197:88;7304:4;7301:1;7294:15;7328:4;7325:1;7318:15;7345:281;7428:27;7450:4;7428:27;:::i;:::-;7420:6;7416:40;7558:6;7546:10;7543:22;7522:18;7510:10;7507:34;7504:62;7501:88;;;7569:18;;:::i;:::-;7501:88;7609:10;7605:2;7598:22;7388:238;7345:281;;:::o;7632:129::-;7666:6;7693:20;;:::i;:::-;7683:30;;7722:33;7750:4;7742:6;7722:33;:::i;:::-;7632:129;;;:::o;7767:308::-;7829:4;7919:18;7911:6;7908:30;7905:56;;;7941:18;;:::i;:::-;7905:56;7979:29;8001:6;7979:29;:::i;:::-;7971:37;;8063:4;8057;8053:15;8045:23;;7767:308;;;:::o;8081:154::-;8165:6;8160:3;8155;8142:30;8227:1;8218:6;8213:3;8209:16;8202:27;8081:154;;;:::o;8241:412::-;8319:5;8344:66;8360:49;8402:6;8360:49;:::i;:::-;8344:66;:::i;:::-;8335:75;;8433:6;8426:5;8419:21;8471:4;8464:5;8460:16;8509:3;8500:6;8495:3;8491:16;8488:25;8485:112;;;8516:79;;:::i;:::-;8485:112;8606:41;8640:6;8635:3;8630;8606:41;:::i;:::-;8325:328;8241:412;;;;;:::o;8673:340::-;8729:5;8778:3;8771:4;8763:6;8759:17;8755:27;8745:122;;8786:79;;:::i;:::-;8745:122;8903:6;8890:20;8928:79;9003:3;8995:6;8988:4;8980:6;8976:17;8928:79;:::i;:::-;8919:88;;8735:278;8673:340;;;;:::o;9019:509::-;9088:6;9137:2;9125:9;9116:7;9112:23;9108:32;9105:119;;;9143:79;;:::i;:::-;9105:119;9291:1;9280:9;9276:17;9263:31;9321:18;9313:6;9310:30;9307:117;;;9343:79;;:::i;:::-;9307:117;9448:63;9503:7;9494:6;9483:9;9479:22;9448:63;:::i;:::-;9438:73;;9234:287;9019:509;;;;:::o;9534:329::-;9593:6;9642:2;9630:9;9621:7;9617:23;9613:32;9610:119;;;9648:79;;:::i;:::-;9610:119;9768:1;9793:53;9838:7;9829:6;9818:9;9814:22;9793:53;:::i;:::-;9783:63;;9739:117;9534:329;;;;:::o;9869:116::-;9939:21;9954:5;9939:21;:::i;:::-;9932:5;9929:32;9919:60;;9975:1;9972;9965:12;9919:60;9869:116;:::o;9991:133::-;10034:5;10072:6;10059:20;10050:29;;10088:30;10112:5;10088:30;:::i;:::-;9991:133;;;;:::o;10130:468::-;10195:6;10203;10252:2;10240:9;10231:7;10227:23;10223:32;10220:119;;;10258:79;;:::i;:::-;10220:119;10378:1;10403:53;10448:7;10439:6;10428:9;10424:22;10403:53;:::i;:::-;10393:63;;10349:117;10505:2;10531:50;10573:7;10564:6;10553:9;10549:22;10531:50;:::i;:::-;10521:60;;10476:115;10130:468;;;;;:::o;10604:307::-;10665:4;10755:18;10747:6;10744:30;10741:56;;;10777:18;;:::i;:::-;10741:56;10815:29;10837:6;10815:29;:::i;:::-;10807:37;;10899:4;10893;10889:15;10881:23;;10604:307;;;:::o;10917:410::-;10994:5;11019:65;11035:48;11076:6;11035:48;:::i;:::-;11019:65;:::i;:::-;11010:74;;11107:6;11100:5;11093:21;11145:4;11138:5;11134:16;11183:3;11174:6;11169:3;11165:16;11162:25;11159:112;;;11190:79;;:::i;:::-;11159:112;11280:41;11314:6;11309:3;11304;11280:41;:::i;:::-;11000:327;10917:410;;;;;:::o;11346:338::-;11401:5;11450:3;11443:4;11435:6;11431:17;11427:27;11417:122;;11458:79;;:::i;:::-;11417:122;11575:6;11562:20;11600:78;11674:3;11666:6;11659:4;11651:6;11647:17;11600:78;:::i;:::-;11591:87;;11407:277;11346:338;;;;:::o;11690:943::-;11785:6;11793;11801;11809;11858:3;11846:9;11837:7;11833:23;11829:33;11826:120;;;11865:79;;:::i;:::-;11826:120;11985:1;12010:53;12055:7;12046:6;12035:9;12031:22;12010:53;:::i;:::-;12000:63;;11956:117;12112:2;12138:53;12183:7;12174:6;12163:9;12159:22;12138:53;:::i;:::-;12128:63;;12083:118;12240:2;12266:53;12311:7;12302:6;12291:9;12287:22;12266:53;:::i;:::-;12256:63;;12211:118;12396:2;12385:9;12381:18;12368:32;12427:18;12419:6;12416:30;12413:117;;;12449:79;;:::i;:::-;12413:117;12554:62;12608:7;12599:6;12588:9;12584:22;12554:62;:::i;:::-;12544:72;;12339:287;11690:943;;;;;;;:::o;12639:474::-;12707:6;12715;12764:2;12752:9;12743:7;12739:23;12735:32;12732:119;;;12770:79;;:::i;:::-;12732:119;12890:1;12915:53;12960:7;12951:6;12940:9;12936:22;12915:53;:::i;:::-;12905:63;;12861:117;13017:2;13043:53;13088:7;13079:6;13068:9;13064:22;13043:53;:::i;:::-;13033:63;;12988:118;12639:474;;;;;:::o;13119:180::-;13167:77;13164:1;13157:88;13264:4;13261:1;13254:15;13288:4;13285:1;13278:15;13305:320;13349:6;13386:1;13380:4;13376:12;13366:22;;13433:1;13427:4;13423:12;13454:18;13444:81;;13510:4;13502:6;13498:17;13488:27;;13444:81;13572:2;13564:6;13561:14;13541:18;13538:38;13535:84;;13591:18;;:::i;:::-;13535:84;13356:269;13305:320;;;:::o;13631:332::-;13752:4;13790:2;13779:9;13775:18;13767:26;;13803:71;13871:1;13860:9;13856:17;13847:6;13803:71;:::i;:::-;13884:72;13952:2;13941:9;13937:18;13928:6;13884:72;:::i;:::-;13631:332;;;;;:::o;13969:137::-;14023:5;14054:6;14048:13;14039:22;;14070:30;14094:5;14070:30;:::i;:::-;13969:137;;;;:::o;14112:345::-;14179:6;14228:2;14216:9;14207:7;14203:23;14199:32;14196:119;;;14234:79;;:::i;:::-;14196:119;14354:1;14379:61;14432:7;14423:6;14412:9;14408:22;14379:61;:::i;:::-;14369:71;;14325:125;14112:345;;;;:::o;14463:141::-;14512:4;14535:3;14527:11;;14558:3;14555:1;14548:14;14592:4;14589:1;14579:18;14571:26;;14463:141;;;:::o;14610:93::-;14647:6;14694:2;14689;14682:5;14678:14;14674:23;14664:33;;14610:93;;;:::o;14709:107::-;14753:8;14803:5;14797:4;14793:16;14772:37;;14709:107;;;;:::o;14822:393::-;14891:6;14941:1;14929:10;14925:18;14964:97;14994:66;14983:9;14964:97;:::i;:::-;15082:39;15112:8;15101:9;15082:39;:::i;:::-;15070:51;;15154:4;15150:9;15143:5;15139:21;15130:30;;15203:4;15193:8;15189:19;15182:5;15179:30;15169:40;;14898:317;;14822:393;;;;;:::o;15221:142::-;15271:9;15304:53;15322:34;15331:24;15349:5;15331:24;:::i;:::-;15322:34;:::i;:::-;15304:53;:::i;:::-;15291:66;;15221:142;;;:::o;15369:75::-;15412:3;15433:5;15426:12;;15369:75;;;:::o;15450:269::-;15560:39;15591:7;15560:39;:::i;:::-;15621:91;15670:41;15694:16;15670:41;:::i;:::-;15662:6;15655:4;15649:11;15621:91;:::i;:::-;15615:4;15608:105;15526:193;15450:269;;;:::o;15725:73::-;15770:3;15725:73;:::o;15804:189::-;15881:32;;:::i;:::-;15922:65;15980:6;15972;15966:4;15922:65;:::i;:::-;15857:136;15804:189;;:::o;15999:186::-;16059:120;16076:3;16069:5;16066:14;16059:120;;;16130:39;16167:1;16160:5;16130:39;:::i;:::-;16103:1;16096:5;16092:13;16083:22;;16059:120;;;15999:186;;:::o;16191:543::-;16292:2;16287:3;16284:11;16281:446;;;16326:38;16358:5;16326:38;:::i;:::-;16410:29;16428:10;16410:29;:::i;:::-;16400:8;16396:44;16593:2;16581:10;16578:18;16575:49;;;16614:8;16599:23;;16575:49;16637:80;16693:22;16711:3;16693:22;:::i;:::-;16683:8;16679:37;16666:11;16637:80;:::i;:::-;16296:431;;16281:446;16191:543;;;:::o;16740:117::-;16794:8;16844:5;16838:4;16834:16;16813:37;;16740:117;;;;:::o;16863:169::-;16907:6;16940:51;16988:1;16984:6;16976:5;16973:1;16969:13;16940:51;:::i;:::-;16936:56;17021:4;17015;17011:15;17001:25;;16914:118;16863:169;;;;:::o;17037:295::-;17113:4;17259:29;17284:3;17278:4;17259:29;:::i;:::-;17251:37;;17321:3;17318:1;17314:11;17308:4;17305:21;17297:29;;17037:295;;;;:::o;17337:1395::-;17454:37;17487:3;17454:37;:::i;:::-;17556:18;17548:6;17545:30;17542:56;;;17578:18;;:::i;:::-;17542:56;17622:38;17654:4;17648:11;17622:38;:::i;:::-;17707:67;17767:6;17759;17753:4;17707:67;:::i;:::-;17801:1;17825:4;17812:17;;17857:2;17849:6;17846:14;17874:1;17869:618;;;;18531:1;18548:6;18545:77;;;18597:9;18592:3;18588:19;18582:26;18573:35;;18545:77;18648:67;18708:6;18701:5;18648:67;:::i;:::-;18642:4;18635:81;18504:222;17839:887;;17869:618;17921:4;17917:9;17909:6;17905:22;17955:37;17987:4;17955:37;:::i;:::-;18014:1;18028:208;18042:7;18039:1;18036:14;18028:208;;;18121:9;18116:3;18112:19;18106:26;18098:6;18091:42;18172:1;18164:6;18160:14;18150:24;;18219:2;18208:9;18204:18;18191:31;;18065:4;18062:1;18058:12;18053:17;;18028:208;;;18264:6;18255:7;18252:19;18249:179;;;18322:9;18317:3;18313:19;18307:26;18365:48;18407:4;18399:6;18395:17;18384:9;18365:48;:::i;:::-;18357:6;18350:64;18272:156;18249:179;18474:1;18470;18462:6;18458:14;18454:22;18448:4;18441:36;17876:611;;;17839:887;;17429:1303;;;17337:1395;;:::o;18738:148::-;18840:11;18877:3;18862:18;;18738:148;;;;:::o;18892:377::-;18998:3;19026:39;19059:5;19026:39;:::i;:::-;19081:89;19163:6;19158:3;19081:89;:::i;:::-;19074:96;;19179:52;19224:6;19219:3;19212:4;19205:5;19201:16;19179:52;:::i;:::-;19256:6;19251:3;19247:16;19240:23;;19002:267;18892:377;;;;:::o;19275:435::-;19455:3;19477:95;19568:3;19559:6;19477:95;:::i;:::-;19470:102;;19589:95;19680:3;19671:6;19589:95;:::i;:::-;19582:102;;19701:3;19694:10;;19275:435;;;;;:::o;19716:180::-;19856:32;19852:1;19844:6;19840:14;19833:56;19716:180;:::o;19902:366::-;20044:3;20065:67;20129:2;20124:3;20065:67;:::i;:::-;20058:74;;20141:93;20230:3;20141:93;:::i;:::-;20259:2;20254:3;20250:12;20243:19;;19902:366;;;:::o;20274:419::-;20440:4;20478:2;20467:9;20463:18;20455:26;;20527:9;20521:4;20517:20;20513:1;20502:9;20498:17;20491:47;20555:131;20681:4;20555:131;:::i;:::-;20547:139;;20274:419;;;:::o;20699:158::-;20839:10;20835:1;20827:6;20823:14;20816:34;20699:158;:::o;20863:365::-;21005:3;21026:66;21090:1;21085:3;21026:66;:::i;:::-;21019:73;;21101:93;21190:3;21101:93;:::i;:::-;21219:2;21214:3;21210:12;21203:19;;20863:365;;;:::o;21234:419::-;21400:4;21438:2;21427:9;21423:18;21415:26;;21487:9;21481:4;21477:20;21473:1;21462:9;21458:17;21451:47;21515:131;21641:4;21515:131;:::i;:::-;21507:139;;21234:419;;;:::o;21659:180::-;21707:77;21704:1;21697:88;21804:4;21801:1;21794:15;21828:4;21825:1;21818:15;21845:305;21885:3;21904:20;21922:1;21904:20;:::i;:::-;21899:25;;21938:20;21956:1;21938:20;:::i;:::-;21933:25;;22092:1;22024:66;22020:74;22017:1;22014:81;22011:107;;;22098:18;;:::i;:::-;22011:107;22142:1;22139;22135:9;22128:16;;21845:305;;;;:::o;22156:158::-;22296:10;22292:1;22284:6;22280:14;22273:34;22156:158;:::o;22320:365::-;22462:3;22483:66;22547:1;22542:3;22483:66;:::i;:::-;22476:73;;22558:93;22647:3;22558:93;:::i;:::-;22676:2;22671:3;22667:12;22660:19;;22320:365;;;:::o;22691:419::-;22857:4;22895:2;22884:9;22880:18;22872:26;;22944:9;22938:4;22934:20;22930:1;22919:9;22915:17;22908:47;22972:131;23098:4;22972:131;:::i;:::-;22964:139;;22691:419;;;:::o;23116:161::-;23256:13;23252:1;23244:6;23240:14;23233:37;23116:161;:::o;23283:366::-;23425:3;23446:67;23510:2;23505:3;23446:67;:::i;:::-;23439:74;;23522:93;23611:3;23522:93;:::i;:::-;23640:2;23635:3;23631:12;23624:19;;23283:366;;;:::o;23655:419::-;23821:4;23859:2;23848:9;23844:18;23836:26;;23908:9;23902:4;23898:20;23894:1;23883:9;23879:17;23872:47;23936:131;24062:4;23936:131;:::i;:::-;23928:139;;23655:419;;;:::o;24080:225::-;24220:34;24216:1;24208:6;24204:14;24197:58;24289:8;24284:2;24276:6;24272:15;24265:33;24080:225;:::o;24311:366::-;24453:3;24474:67;24538:2;24533:3;24474:67;:::i;:::-;24467:74;;24550:93;24639:3;24550:93;:::i;:::-;24668:2;24663:3;24659:12;24652:19;;24311:366;;;:::o;24683:419::-;24849:4;24887:2;24876:9;24872:18;24864:26;;24936:9;24930:4;24926:20;24922:1;24911:9;24907:17;24900:47;24964:131;25090:4;24964:131;:::i;:::-;24956:139;;24683:419;;;:::o;25108:182::-;25248:34;25244:1;25236:6;25232:14;25225:58;25108:182;:::o;25296:366::-;25438:3;25459:67;25523:2;25518:3;25459:67;:::i;:::-;25452:74;;25535:93;25624:3;25535:93;:::i;:::-;25653:2;25648:3;25644:12;25637:19;;25296:366;;;:::o;25668:419::-;25834:4;25872:2;25861:9;25857:18;25849:26;;25921:9;25915:4;25911:20;25907:1;25896:9;25892:17;25885:47;25949:131;26075:4;25949:131;:::i;:::-;25941:139;;25668:419;;;:::o;26093:98::-;26144:6;26178:5;26172:12;26162:22;;26093:98;;;:::o;26197:168::-;26280:11;26314:6;26309:3;26302:19;26354:4;26349:3;26345:14;26330:29;;26197:168;;;;:::o;26371:360::-;26457:3;26485:38;26517:5;26485:38;:::i;:::-;26539:70;26602:6;26597:3;26539:70;:::i;:::-;26532:77;;26618:52;26663:6;26658:3;26651:4;26644:5;26640:16;26618:52;:::i;:::-;26695:29;26717:6;26695:29;:::i;:::-;26690:3;26686:39;26679:46;;26461:270;26371:360;;;;:::o;26737:640::-;26932:4;26970:3;26959:9;26955:19;26947:27;;26984:71;27052:1;27041:9;27037:17;27028:6;26984:71;:::i;:::-;27065:72;27133:2;27122:9;27118:18;27109:6;27065:72;:::i;:::-;27147;27215:2;27204:9;27200:18;27191:6;27147:72;:::i;:::-;27266:9;27260:4;27256:20;27251:2;27240:9;27236:18;27229:48;27294:76;27365:4;27356:6;27294:76;:::i;:::-;27286:84;;26737:640;;;;;;;:::o;27383:141::-;27439:5;27470:6;27464:13;27455:22;;27486:32;27512:5;27486:32;:::i;:::-;27383:141;;;;:::o;27530:349::-;27599:6;27648:2;27636:9;27627:7;27623:23;27619:32;27616:119;;;27654:79;;:::i;:::-;27616:119;27774:1;27799:63;27854:7;27845:6;27834:9;27830:22;27799:63;:::i;:::-;27789:73;;27745:127;27530:349;;;;:::o

Swarm Source

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