ETH Price: $3,165.97 (-8.78%)
Gas: 3 Gwei

Token

FULL METAL RABBIT - KOSMO (FMRK)
 

Overview

Max Total Supply

5,555 FMRK

Holders

796

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
6 FMRK
0xbff411219284fc7f6e70bad2a70b5eeb6d882e75
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:
KOSMONFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity >=0.7.0 <0.9.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

// SPDX-License-Identifier: MIT

contract KOSMONFT is ERC721A, Ownable, Pausable {
  string public baseURI = "ipfs://bafybeidre74aqtyco3mpslcssxopznbkrs6imj2l5hniodq3lat3a7eakq/";
  uint256 public cost = 0.03 ether;
  uint256 public maxSupply = 5555;
  uint256 public maxMintAmount = 6;
  uint256 public nftPerCollectorPassLimit = 6;
  uint256 public nftPerWhitelistLimit = 2;
  uint256 public nftPerPublicLimit = 1;

  bool public onlyWhitelisted = true;
  mapping (address => bool) public collectorPassAddresses;
  mapping (address => bool) public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  event NewTokenURI(string);

  constructor() ERC721A("FULL METAL RABBIT - KOSMO", "FMRK") {}

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

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused(), "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
  
    if (msg.sender != owner()) {
      uint256 ownerMintedCount = addressMintedBalance[msg.sender];

      if (onlyWhitelisted == true) {
        if (collectorPassAddresses[msg.sender]) {
          require(ownerMintedCount + _mintAmount <= nftPerCollectorPassLimit, "max NFT per Collector address exceeded");
        } else if (whitelistedAddresses[msg.sender]) {
          require(ownerMintedCount + _mintAmount <= nftPerWhitelistLimit, "max NFT per Whitelisted address exceeded");
        } else {
          require(whitelistedAddresses[msg.sender], "user is not whitelisted");
        }
      } else {
        require(ownerMintedCount + _mintAmount <= nftPerPublicLimit, "max NFT per address exceeded");
      }

      require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    addressMintedBalance[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function mintReserved(address to, uint8 amount) external onlyOwner {
    require(amount > 0, "No amount specified");
    uint256 supply = totalSupply();
    require(supply + amount <= maxSupply, "max NFT limit exceeded");
    _safeMint(to, amount);
    addressMintedBalance[to] += amount;
  }

  function mintReservedList(address[] calldata addresses, uint8 amount) external onlyOwner {
    require(amount > 0, "No amount specified");
    uint256 supply = totalSupply();
    require(supply + (amount * addresses.length) <= maxSupply, "max NFT limit exceeded");

    for (uint256 i = 0; i < addresses.length; i++) {
      _safeMint(addresses[i], amount);
      addressMintedBalance[addresses[i]] += amount;
    }
  }

  function setNewURI(string memory _newURI) external onlyOwner {
    baseURI = _newURI;
    emit NewTokenURI(_newURI);
  }

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setNftPerCollectorPassLimit(uint256 _limit) public onlyOwner {
    nftPerCollectorPassLimit = _limit;
  }

  function setNftPerWhitelistLimit(uint256 _limit) public onlyOwner {
    nftPerWhitelistLimit = _limit;
  }

  function setNftPerPublicLimit(uint256 _limit) public onlyOwner {
    nftPerPublicLimit = _limit;
  }

  function pause() external onlyOwner {
    _pause();
  }

  function unpause() external onlyOwner {
    _unpause();
  }

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

  function endOnlyWhitelisted() public onlyOwner {
    onlyWhitelisted = false;
  }

  function collectorPassAddreses(address[] calldata addresses, bool isAllow) public onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      collectorPassAddresses[addresses[i]] = isAllow;
    }
  }

  function whitelistAddreses(address[] calldata addresses, bool isAllow) public onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      whitelistedAddresses[addresses[i]] = isAllow;
    }
  }

  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

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":[],"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":false,"internalType":"string","name":"","type":"string"}],"name":"NewTokenURI","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"isAllow","type":"bool"}],"name":"collectorPassAddreses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collectorPassAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","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":"maxMintAmount","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":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mintReservedList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerCollectorPassLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerPublicLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerWhitelistLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setNewURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerCollectorPassLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerPublicLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerWhitelistLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"isAllow","type":"bool"}],"name":"whitelistAddreses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052604051806080016040528060438152602001620047bc60439139600990805190602001906200003592919062000252565b50666a94d74f430000600a556115b3600b556006600c556006600d556002600e556001600f556001601060006101000a81548160ff0219169083151502179055503480156200008357600080fd5b506040518060400160405280601981526020017f46554c4c204d4554414c20524142424954202d204b4f534d4f000000000000008152506040518060400160405280600481526020017f464d524b0000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010892919062000252565b5080600390805190602001906200012192919062000252565b50620001326200017b60201b60201c565b60008190555050506200015a6200014e6200018460201b60201c565b6200018c60201b60201c565b6000600860146101000a81548160ff02191690831515021790555062000367565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002609062000302565b90600052602060002090601f016020900481019282620002845760008555620002d0565b82601f106200029f57805160ff1916838001178555620002d0565b82800160010185558215620002d0579182015b82811115620002cf578251825591602001919060010190620002b2565b5b509050620002df9190620002e3565b5090565b5b80821115620002fe576000816000905550600101620002e4565b5090565b600060028204905060018216806200031b57607f821691505b6020821081141562000332576200033162000338565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61444580620003776000396000f3fe6080604052600436106102725760003560e01c80636c0360eb1161014f578063a1250788116100c1578063c87b56dd1161007a578063c87b56dd146108b2578063d5abeb01146108ef578063e985e9c51461091a578063ea21b75114610957578063ecb3750614610980578063f2fde38b146109a957610272565b8063a1250788146107c3578063a22cb465146107ec578063a720161614610815578063aeefa16a14610840578063b88d4fde1461086b578063c664b0a71461088757610272565b80638da5cb5b116101135780638da5cb5b146106d45780638eb56396146106ff5780639197d56c1461072857806395d89b41146107515780639c70b5121461077c578063a0712d68146107a757610272565b80636c0360eb1461061557806370a0823114610640578063715018a61461067d5780637f00c7a6146106945780638456cb59146106bd57610272565b806323b872dd116101e85780633f4ba83a116101ac5780633f4ba83a1461052857806342842e0e1461053f57806344a0d68a1461055b5780635c975abb146105845780635d46b509146105af5780636352211e146105d857610272565b806323b872dd1461049957806328fb1eff146104b55780633bb798b2146104cc5780633c952764146104f55780633ccfd60b1461051e57610272565b80630e709b1b1161023a5780630e709b1b1461037557806313faede61461039e57806318160ddd146103c957806318cae269146103f4578063237c1fad14610431578063239c70ae1461046e57610272565b806301ffc9a71461027757806306c933d8146102b457806306fdde03146102f1578063081812fc1461031c578063095ea7b314610359575b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061367f565b6109d2565b6040516102ab9190613acc565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d6919061338f565b610a64565b6040516102e89190613acc565b60405180910390f35b3480156102fd57600080fd5b50610306610a84565b6040516103139190613ae7565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613722565b610b16565b6040516103509190613a65565b60405180910390f35b610373600480360381019061036e9190613512565b610b95565b005b34801561038157600080fd5b5061039c600480360381019061039791906136d9565b610cd9565b005b3480156103aa57600080fd5b506103b3610da6565b6040516103c09190613cc9565b60405180910390f35b3480156103d557600080fd5b506103de610dac565b6040516103eb9190613cc9565b60405180910390f35b34801561040057600080fd5b5061041b6004803603810190610416919061338f565b610dc3565b6040516104289190613cc9565b60405180910390f35b34801561043d57600080fd5b506104586004803603810190610453919061338f565b610ddb565b6040516104659190613acc565b60405180910390f35b34801561047a57600080fd5b50610483610dfb565b6040516104909190613cc9565b60405180910390f35b6104b360048036038101906104ae91906133fc565b610e01565b005b3480156104c157600080fd5b506104ca611126565b005b3480156104d857600080fd5b506104f360048036038101906104ee9190613722565b6111bf565b005b34801561050157600080fd5b5061051c60048036038101906105179190613652565b611245565b005b6105266112de565b005b34801561053457600080fd5b5061053d6113da565b005b610559600480360381019061055491906133fc565b611460565b005b34801561056757600080fd5b50610582600480360381019061057d9190613722565b611480565b005b34801561059057600080fd5b50610599611506565b6040516105a69190613acc565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906135f2565b61151d565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190613722565b611728565b60405161060c9190613a65565b60405180910390f35b34801561062157600080fd5b5061062a61173a565b6040516106379190613ae7565b60405180910390f35b34801561064c57600080fd5b506106676004803603810190610662919061338f565b6117c8565b6040516106749190613cc9565b60405180910390f35b34801561068957600080fd5b50610692611881565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613722565b611909565b005b3480156106c957600080fd5b506106d261198f565b005b3480156106e057600080fd5b506106e9611a15565b6040516106f69190613a65565b60405180910390f35b34801561070b57600080fd5b5061072660048036038101906107219190613552565b611a3f565b005b34801561073457600080fd5b5061074f600480360381019061074a9190613722565b611bcb565b005b34801561075d57600080fd5b50610766611c51565b6040516107739190613ae7565b60405180910390f35b34801561078857600080fd5b50610791611ce3565b60405161079e9190613acc565b60405180910390f35b6107c160048036038101906107bc9190613722565b611cf6565b005b3480156107cf57600080fd5b506107ea60048036038101906107e59190613722565b6121a4565b005b3480156107f857600080fd5b50610813600480360381019061080e91906134d2565b61222a565b005b34801561082157600080fd5b5061082a612335565b6040516108379190613cc9565b60405180910390f35b34801561084c57600080fd5b5061085561233b565b6040516108629190613cc9565b60405180910390f35b6108856004803603810190610880919061344f565b612341565b005b34801561089357600080fd5b5061089c6123b4565b6040516108a99190613cc9565b60405180910390f35b3480156108be57600080fd5b506108d960048036038101906108d49190613722565b6123ba565b6040516108e69190613ae7565b60405180910390f35b3480156108fb57600080fd5b50610904612459565b6040516109119190613cc9565b60405180910390f35b34801561092657600080fd5b50610941600480360381019061093c91906133bc565b61245f565b60405161094e9190613acc565b60405180910390f35b34801561096357600080fd5b5061097e60048036038101906109799190613592565b6124f3565b005b34801561098c57600080fd5b506109a760048036038101906109a29190613592565b612614565b005b3480156109b557600080fd5b506109d060048036038101906109cb919061338f565b612735565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a5d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60126020528060005260406000206000915054906101000a900460ff1681565b606060028054610a9390613f2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610abf90613f2c565b8015610b0c5780601f10610ae157610100808354040283529160200191610b0c565b820191906000526020600020905b815481529060010190602001808311610aef57829003601f168201915b5050505050905090565b6000610b218261282d565b610b57576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba082611728565b90508073ffffffffffffffffffffffffffffffffffffffff16610bc161288c565b73ffffffffffffffffffffffffffffffffffffffff1614610c2457610bed81610be861288c565b61245f565b610c23576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ce1612894565b73ffffffffffffffffffffffffffffffffffffffff16610cff611a15565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613be9565b60405180910390fd5b8060099080519060200190610d6b929190613138565b507f8eca6ea708f9bc34439b72366aa672afc86bb8b1294f1ba9637945c5dab8ea7481604051610d9b9190613ae7565b60405180910390a150565b600a5481565b6000610db661289c565b6001546000540303905090565b60136020528060005260406000206000915090505481565b60116020528060005260406000206000915054906101000a900460ff1681565b600c5481565b6000610e0c826128a5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e73576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e7f84612973565b91509150610e958187610e9061288c565b61299a565b610ee157610eaa86610ea561288c565b61245f565b610ee0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f48576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f5586868660016129de565b8015610f6057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061102e8561100a8888876129e4565b7c020000000000000000000000000000000000000000000000000000000017612a0c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156110b65760006001850190506000600460008381526020019081526020016000205414156110b45760005481146110b3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461111e8686866001612a37565b505050505050565b61112e612894565b73ffffffffffffffffffffffffffffffffffffffff1661114c611a15565b73ffffffffffffffffffffffffffffffffffffffff16146111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990613be9565b60405180910390fd5b6000601060006101000a81548160ff021916908315150217905550565b6111c7612894565b73ffffffffffffffffffffffffffffffffffffffff166111e5611a15565b73ffffffffffffffffffffffffffffffffffffffff161461123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123290613be9565b60405180910390fd5b80600d8190555050565b61124d612894565b73ffffffffffffffffffffffffffffffffffffffff1661126b611a15565b73ffffffffffffffffffffffffffffffffffffffff16146112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890613be9565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6112e6612894565b73ffffffffffffffffffffffffffffffffffffffff16611304611a15565b73ffffffffffffffffffffffffffffffffffffffff161461135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613be9565b60405180910390fd5b6000611364611a15565b73ffffffffffffffffffffffffffffffffffffffff164760405161138790613a50565b60006040518083038185875af1925050503d80600081146113c4576040519150601f19603f3d011682016040523d82523d6000602084013e6113c9565b606091505b50509050806113d757600080fd5b50565b6113e2612894565b73ffffffffffffffffffffffffffffffffffffffff16611400611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613be9565b60405180910390fd5b61145e612a3d565b565b61147b83838360405180602001604052806000815250612341565b505050565b611488612894565b73ffffffffffffffffffffffffffffffffffffffff166114a6611a15565b73ffffffffffffffffffffffffffffffffffffffff16146114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f390613be9565b60405180910390fd5b80600a8190555050565b6000600860149054906101000a900460ff16905090565b611525612894565b73ffffffffffffffffffffffffffffffffffffffff16611543611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613be9565b60405180910390fd5b60008160ff16116115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690613c29565b60405180910390fd5b60006115e9610dac565b9050600b54848490508360ff166116009190613e0f565b8261160b9190613db9565b111561164c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164390613ba9565b60405180910390fd5b60005b848490508110156117215761168e8585838181106116705761166f614036565b5b9050602002016020810190611685919061338f565b8460ff16612aa0565b8260ff16601360008787858181106116a9576116a8614036565b5b90506020020160208101906116be919061338f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117079190613db9565b92505081905550808061171990613f8f565b91505061164f565b5050505050565b6000611733826128a5565b9050919050565b6009805461174790613f2c565b80601f016020809104026020016040519081016040528092919081815260200182805461177390613f2c565b80156117c05780601f10611795576101008083540402835291602001916117c0565b820191906000526020600020905b8154815290600101906020018083116117a357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611830576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611889612894565b73ffffffffffffffffffffffffffffffffffffffff166118a7611a15565b73ffffffffffffffffffffffffffffffffffffffff16146118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490613be9565b60405180910390fd5b6119076000612abe565b565b611911612894565b73ffffffffffffffffffffffffffffffffffffffff1661192f611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613be9565b60405180910390fd5b80600c8190555050565b611997612894565b73ffffffffffffffffffffffffffffffffffffffff166119b5611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290613be9565b60405180910390fd5b611a13612b84565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a47612894565b73ffffffffffffffffffffffffffffffffffffffff16611a65611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab290613be9565b60405180910390fd5b60008160ff1611611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af890613c29565b60405180910390fd5b6000611b0b610dac565b9050600b548260ff1682611b1f9190613db9565b1115611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790613ba9565b60405180910390fd5b611b6d838360ff16612aa0565b8160ff16601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bbf9190613db9565b92505081905550505050565b611bd3612894565b73ffffffffffffffffffffffffffffffffffffffff16611bf1611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3e90613be9565b60405180910390fd5b80600e8190555050565b606060038054611c6090613f2c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8c90613f2c565b8015611cd95780601f10611cae57610100808354040283529160200191611cd9565b820191906000526020600020905b815481529060010190602001808311611cbc57829003601f168201915b5050505050905090565b601060009054906101000a900460ff1681565b611cfe611506565b15611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590613c09565b60405180910390fd5b6000611d48610dac565b905060008211611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8490613ca9565b60405180910390fd5b600c54821115611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990613bc9565b60405180910390fd5b600b548282611de19190613db9565b1115611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613ba9565b60405180910390fd5b611e2a611a15565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612140576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060011515601060009054906101000a900460ff161515141561209d57601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f6357600d548382611f1d9190613db9565b1115611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5590613b69565b60405180910390fd5b612098565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561200a57600e548382611fc49190613db9565b1115612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90613c49565b60405180910390fd5b612097565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d90613c89565b60405180910390fd5b5b5b6120ee565b600f5483826120ac9190613db9565b11156120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490613b49565b60405180910390fd5b5b82600a546120fc9190613e0f565b34101561213e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213590613c69565b60405180910390fd5b505b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218f9190613db9565b925050819055506121a03383612aa0565b5050565b6121ac612894565b73ffffffffffffffffffffffffffffffffffffffff166121ca611a15565b73ffffffffffffffffffffffffffffffffffffffff1614612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790613be9565b60405180910390fd5b80600f8190555050565b806007600061223761288c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122e461288c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123299190613acc565b60405180910390a35050565b600e5481565b600f5481565b61234c848484610e01565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123ae5761237784848484612be7565b6123ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b60606123c58261282d565b6123fb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612405612d47565b90506000815114156124265760405180602001604052806000815250612451565b8061243084612dd9565b604051602001612441929190613a2c565b6040516020818303038152906040525b915050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124fb612894565b73ffffffffffffffffffffffffffffffffffffffff16612519611a15565b73ffffffffffffffffffffffffffffffffffffffff161461256f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256690613be9565b60405180910390fd5b60005b8383905081101561260e57816012600086868581811061259557612594614036565b5b90506020020160208101906125aa919061338f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061260690613f8f565b915050612572565b50505050565b61261c612894565b73ffffffffffffffffffffffffffffffffffffffff1661263a611a15565b73ffffffffffffffffffffffffffffffffffffffff1614612690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268790613be9565b60405180910390fd5b60005b8383905081101561272f5781601160008686858181106126b6576126b5614036565b5b90506020020160208101906126cb919061338f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061272790613f8f565b915050612693565b50505050565b61273d612894565b73ffffffffffffffffffffffffffffffffffffffff1661275b611a15565b73ffffffffffffffffffffffffffffffffffffffff16146127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890613be9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281890613b29565b60405180910390fd5b61282a81612abe565b50565b60008161283861289c565b11158015612847575060005482105b8015612885575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b600080829050806128b461289c565b1161293c5760005481101561293b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612939575b600081141561292f576004600083600190039350838152602001908152602001600020549050612904565b809250505061296e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86129fb868684612e32565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612a45612e3b565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a89612894565b604051612a969190613a65565b60405180910390a1565b612aba828260405180602001604052806000815250612e84565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b8c612f21565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612bd0612894565b604051612bdd9190613a65565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c0d61288c565b8786866040518563ffffffff1660e01b8152600401612c2f9493929190613a80565b602060405180830381600087803b158015612c4957600080fd5b505af1925050508015612c7a57506040513d601f19601f82011682018060405250810190612c7791906136ac565b60015b612cf4573d8060008114612caa576040519150601f19603f3d011682016040523d82523d6000602084013e612caf565b606091505b50600081511415612cec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612d5690613f2c565b80601f0160208091040260200160405190810160405280929190818152602001828054612d8290613f2c565b8015612dcf5780601f10612da457610100808354040283529160200191612dcf565b820191906000526020600020905b815481529060010190602001808311612db257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612e1d57600184039350600a81066030018453600a8104905080612e1857612e1d565b612df2565b50828103602084039350808452505050919050565b60009392505050565b612e43611506565b612e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7990613b09565b60405180910390fd5b565b612e8e8383612f6b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612f1c57600080549050600083820390505b612ece6000868380600101945086612be7565b612f04576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612ebb578160005414612f1957600080fd5b50505b505050565b612f29611506565b15612f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6090613b89565b60405180910390fd5b565b6000805490506000821415612fac576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fb960008483856129de565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506130308361302160008660006129e4565b61302a85613128565b17612a0c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146130d157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613096565b50600082141561310d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506131236000848385612a37565b505050565b60006001821460e11b9050919050565b82805461314490613f2c565b90600052602060002090601f01602090048101928261316657600085556131ad565b82601f1061317f57805160ff19168380011785556131ad565b828001600101855582156131ad579182015b828111156131ac578251825591602001919060010190613191565b5b5090506131ba91906131be565b5090565b5b808211156131d75760008160009055506001016131bf565b5090565b60006131ee6131e984613d09565b613ce4565b90508281526020810184848401111561320a576132096140a3565b5b613215848285613eea565b509392505050565b600061323061322b84613d3a565b613ce4565b90508281526020810184848401111561324c5761324b6140a3565b5b613257848285613eea565b509392505050565b60008135905061326e8161439c565b92915050565b60008083601f84011261328a57613289614099565b5b8235905067ffffffffffffffff8111156132a7576132a6614094565b5b6020830191508360208202830111156132c3576132c261409e565b5b9250929050565b6000813590506132d9816143b3565b92915050565b6000813590506132ee816143ca565b92915050565b600081519050613303816143ca565b92915050565b600082601f83011261331e5761331d614099565b5b813561332e8482602086016131db565b91505092915050565b600082601f83011261334c5761334b614099565b5b813561335c84826020860161321d565b91505092915050565b600081359050613374816143e1565b92915050565b600081359050613389816143f8565b92915050565b6000602082840312156133a5576133a46140ad565b5b60006133b38482850161325f565b91505092915050565b600080604083850312156133d3576133d26140ad565b5b60006133e18582860161325f565b92505060206133f28582860161325f565b9150509250929050565b600080600060608486031215613415576134146140ad565b5b60006134238682870161325f565b93505060206134348682870161325f565b925050604061344586828701613365565b9150509250925092565b60008060008060808587031215613469576134686140ad565b5b60006134778782880161325f565b94505060206134888782880161325f565b935050604061349987828801613365565b925050606085013567ffffffffffffffff8111156134ba576134b96140a8565b5b6134c687828801613309565b91505092959194509250565b600080604083850312156134e9576134e86140ad565b5b60006134f78582860161325f565b9250506020613508858286016132ca565b9150509250929050565b60008060408385031215613529576135286140ad565b5b60006135378582860161325f565b925050602061354885828601613365565b9150509250929050565b60008060408385031215613569576135686140ad565b5b60006135778582860161325f565b92505060206135888582860161337a565b9150509250929050565b6000806000604084860312156135ab576135aa6140ad565b5b600084013567ffffffffffffffff8111156135c9576135c86140a8565b5b6135d586828701613274565b935093505060206135e8868287016132ca565b9150509250925092565b60008060006040848603121561360b5761360a6140ad565b5b600084013567ffffffffffffffff811115613629576136286140a8565b5b61363586828701613274565b935093505060206136488682870161337a565b9150509250925092565b600060208284031215613668576136676140ad565b5b6000613676848285016132ca565b91505092915050565b600060208284031215613695576136946140ad565b5b60006136a3848285016132df565b91505092915050565b6000602082840312156136c2576136c16140ad565b5b60006136d0848285016132f4565b91505092915050565b6000602082840312156136ef576136ee6140ad565b5b600082013567ffffffffffffffff81111561370d5761370c6140a8565b5b61371984828501613337565b91505092915050565b600060208284031215613738576137376140ad565b5b600061374684828501613365565b91505092915050565b61375881613e69565b82525050565b61376781613e7b565b82525050565b600061377882613d6b565b6137828185613d81565b9350613792818560208601613ef9565b61379b816140b2565b840191505092915050565b60006137b182613d76565b6137bb8185613d9d565b93506137cb818560208601613ef9565b6137d4816140b2565b840191505092915050565b60006137ea82613d76565b6137f48185613dae565b9350613804818560208601613ef9565b80840191505092915050565b600061381d601483613d9d565b9150613828826140c3565b602082019050919050565b6000613840602683613d9d565b915061384b826140ec565b604082019050919050565b6000613863601c83613d9d565b915061386e8261413b565b602082019050919050565b6000613886602683613d9d565b915061389182614164565b604082019050919050565b60006138a9601083613d9d565b91506138b4826141b3565b602082019050919050565b60006138cc601683613d9d565b91506138d7826141dc565b602082019050919050565b60006138ef602483613d9d565b91506138fa82614205565b604082019050919050565b6000613912602083613d9d565b915061391d82614254565b602082019050919050565b6000613935601683613d9d565b91506139408261427d565b602082019050919050565b6000613958601383613d9d565b9150613963826142a6565b602082019050919050565b600061397b602883613d9d565b9150613986826142cf565b604082019050919050565b600061399e600083613d92565b91506139a98261431e565b600082019050919050565b60006139c1601283613d9d565b91506139cc82614321565b602082019050919050565b60006139e4601783613d9d565b91506139ef8261434a565b602082019050919050565b6000613a07601b83613d9d565b9150613a1282614373565b602082019050919050565b613a2681613ed3565b82525050565b6000613a3882856137df565b9150613a4482846137df565b91508190509392505050565b6000613a5b82613991565b9150819050919050565b6000602082019050613a7a600083018461374f565b92915050565b6000608082019050613a95600083018761374f565b613aa2602083018661374f565b613aaf6040830185613a1d565b8181036060830152613ac1818461376d565b905095945050505050565b6000602082019050613ae1600083018461375e565b92915050565b60006020820190508181036000830152613b0181846137a6565b905092915050565b60006020820190508181036000830152613b2281613810565b9050919050565b60006020820190508181036000830152613b4281613833565b9050919050565b60006020820190508181036000830152613b6281613856565b9050919050565b60006020820190508181036000830152613b8281613879565b9050919050565b60006020820190508181036000830152613ba28161389c565b9050919050565b60006020820190508181036000830152613bc2816138bf565b9050919050565b60006020820190508181036000830152613be2816138e2565b9050919050565b60006020820190508181036000830152613c0281613905565b9050919050565b60006020820190508181036000830152613c2281613928565b9050919050565b60006020820190508181036000830152613c428161394b565b9050919050565b60006020820190508181036000830152613c628161396e565b9050919050565b60006020820190508181036000830152613c82816139b4565b9050919050565b60006020820190508181036000830152613ca2816139d7565b9050919050565b60006020820190508181036000830152613cc2816139fa565b9050919050565b6000602082019050613cde6000830184613a1d565b92915050565b6000613cee613cff565b9050613cfa8282613f5e565b919050565b6000604051905090565b600067ffffffffffffffff821115613d2457613d23614065565b5b613d2d826140b2565b9050602081019050919050565b600067ffffffffffffffff821115613d5557613d54614065565b5b613d5e826140b2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dc482613ed3565b9150613dcf83613ed3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e0457613e03613fd8565b5b828201905092915050565b6000613e1a82613ed3565b9150613e2583613ed3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e5e57613e5d613fd8565b5b828202905092915050565b6000613e7482613eb3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613f17578082015181840152602081019050613efc565b83811115613f26576000848401525b50505050565b60006002820490506001821680613f4457607f821691505b60208210811415613f5857613f57614007565b5b50919050565b613f67826140b2565b810181811067ffffffffffffffff82111715613f8657613f85614065565b5b80604052505050565b6000613f9a82613ed3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fcd57613fcc613fd8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f6d6178204e46542070657220436f6c6c6563746f72206164647265737320657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4e6f20616d6f756e742073706563696669656400000000000000000000000000600082015250565b7f6d6178204e4654207065722057686974656c697374656420616464726573732060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6143a581613e69565b81146143b057600080fd5b50565b6143bc81613e7b565b81146143c757600080fd5b50565b6143d381613e87565b81146143de57600080fd5b50565b6143ea81613ed3565b81146143f557600080fd5b50565b61440181613edd565b811461440c57600080fd5b5056fea264697066735822122007cf48d67a0acb03362e0b62ac47e83a49d8b95b0c581fe25bc37ab373cedc0364736f6c63430008070033697066733a2f2f62616679626569647265373461717479636f336d70736c637373786f707a6e626b727336696d6a326c35686e696f6471336c617433613765616b712f

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636c0360eb1161014f578063a1250788116100c1578063c87b56dd1161007a578063c87b56dd146108b2578063d5abeb01146108ef578063e985e9c51461091a578063ea21b75114610957578063ecb3750614610980578063f2fde38b146109a957610272565b8063a1250788146107c3578063a22cb465146107ec578063a720161614610815578063aeefa16a14610840578063b88d4fde1461086b578063c664b0a71461088757610272565b80638da5cb5b116101135780638da5cb5b146106d45780638eb56396146106ff5780639197d56c1461072857806395d89b41146107515780639c70b5121461077c578063a0712d68146107a757610272565b80636c0360eb1461061557806370a0823114610640578063715018a61461067d5780637f00c7a6146106945780638456cb59146106bd57610272565b806323b872dd116101e85780633f4ba83a116101ac5780633f4ba83a1461052857806342842e0e1461053f57806344a0d68a1461055b5780635c975abb146105845780635d46b509146105af5780636352211e146105d857610272565b806323b872dd1461049957806328fb1eff146104b55780633bb798b2146104cc5780633c952764146104f55780633ccfd60b1461051e57610272565b80630e709b1b1161023a5780630e709b1b1461037557806313faede61461039e57806318160ddd146103c957806318cae269146103f4578063237c1fad14610431578063239c70ae1461046e57610272565b806301ffc9a71461027757806306c933d8146102b457806306fdde03146102f1578063081812fc1461031c578063095ea7b314610359575b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061367f565b6109d2565b6040516102ab9190613acc565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d6919061338f565b610a64565b6040516102e89190613acc565b60405180910390f35b3480156102fd57600080fd5b50610306610a84565b6040516103139190613ae7565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613722565b610b16565b6040516103509190613a65565b60405180910390f35b610373600480360381019061036e9190613512565b610b95565b005b34801561038157600080fd5b5061039c600480360381019061039791906136d9565b610cd9565b005b3480156103aa57600080fd5b506103b3610da6565b6040516103c09190613cc9565b60405180910390f35b3480156103d557600080fd5b506103de610dac565b6040516103eb9190613cc9565b60405180910390f35b34801561040057600080fd5b5061041b6004803603810190610416919061338f565b610dc3565b6040516104289190613cc9565b60405180910390f35b34801561043d57600080fd5b506104586004803603810190610453919061338f565b610ddb565b6040516104659190613acc565b60405180910390f35b34801561047a57600080fd5b50610483610dfb565b6040516104909190613cc9565b60405180910390f35b6104b360048036038101906104ae91906133fc565b610e01565b005b3480156104c157600080fd5b506104ca611126565b005b3480156104d857600080fd5b506104f360048036038101906104ee9190613722565b6111bf565b005b34801561050157600080fd5b5061051c60048036038101906105179190613652565b611245565b005b6105266112de565b005b34801561053457600080fd5b5061053d6113da565b005b610559600480360381019061055491906133fc565b611460565b005b34801561056757600080fd5b50610582600480360381019061057d9190613722565b611480565b005b34801561059057600080fd5b50610599611506565b6040516105a69190613acc565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d191906135f2565b61151d565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190613722565b611728565b60405161060c9190613a65565b60405180910390f35b34801561062157600080fd5b5061062a61173a565b6040516106379190613ae7565b60405180910390f35b34801561064c57600080fd5b506106676004803603810190610662919061338f565b6117c8565b6040516106749190613cc9565b60405180910390f35b34801561068957600080fd5b50610692611881565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613722565b611909565b005b3480156106c957600080fd5b506106d261198f565b005b3480156106e057600080fd5b506106e9611a15565b6040516106f69190613a65565b60405180910390f35b34801561070b57600080fd5b5061072660048036038101906107219190613552565b611a3f565b005b34801561073457600080fd5b5061074f600480360381019061074a9190613722565b611bcb565b005b34801561075d57600080fd5b50610766611c51565b6040516107739190613ae7565b60405180910390f35b34801561078857600080fd5b50610791611ce3565b60405161079e9190613acc565b60405180910390f35b6107c160048036038101906107bc9190613722565b611cf6565b005b3480156107cf57600080fd5b506107ea60048036038101906107e59190613722565b6121a4565b005b3480156107f857600080fd5b50610813600480360381019061080e91906134d2565b61222a565b005b34801561082157600080fd5b5061082a612335565b6040516108379190613cc9565b60405180910390f35b34801561084c57600080fd5b5061085561233b565b6040516108629190613cc9565b60405180910390f35b6108856004803603810190610880919061344f565b612341565b005b34801561089357600080fd5b5061089c6123b4565b6040516108a99190613cc9565b60405180910390f35b3480156108be57600080fd5b506108d960048036038101906108d49190613722565b6123ba565b6040516108e69190613ae7565b60405180910390f35b3480156108fb57600080fd5b50610904612459565b6040516109119190613cc9565b60405180910390f35b34801561092657600080fd5b50610941600480360381019061093c91906133bc565b61245f565b60405161094e9190613acc565b60405180910390f35b34801561096357600080fd5b5061097e60048036038101906109799190613592565b6124f3565b005b34801561098c57600080fd5b506109a760048036038101906109a29190613592565b612614565b005b3480156109b557600080fd5b506109d060048036038101906109cb919061338f565b612735565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a5d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60126020528060005260406000206000915054906101000a900460ff1681565b606060028054610a9390613f2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610abf90613f2c565b8015610b0c5780601f10610ae157610100808354040283529160200191610b0c565b820191906000526020600020905b815481529060010190602001808311610aef57829003601f168201915b5050505050905090565b6000610b218261282d565b610b57576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba082611728565b90508073ffffffffffffffffffffffffffffffffffffffff16610bc161288c565b73ffffffffffffffffffffffffffffffffffffffff1614610c2457610bed81610be861288c565b61245f565b610c23576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ce1612894565b73ffffffffffffffffffffffffffffffffffffffff16610cff611a15565b73ffffffffffffffffffffffffffffffffffffffff1614610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90613be9565b60405180910390fd5b8060099080519060200190610d6b929190613138565b507f8eca6ea708f9bc34439b72366aa672afc86bb8b1294f1ba9637945c5dab8ea7481604051610d9b9190613ae7565b60405180910390a150565b600a5481565b6000610db661289c565b6001546000540303905090565b60136020528060005260406000206000915090505481565b60116020528060005260406000206000915054906101000a900460ff1681565b600c5481565b6000610e0c826128a5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e73576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e7f84612973565b91509150610e958187610e9061288c565b61299a565b610ee157610eaa86610ea561288c565b61245f565b610ee0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f48576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f5586868660016129de565b8015610f6057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061102e8561100a8888876129e4565b7c020000000000000000000000000000000000000000000000000000000017612a0c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156110b65760006001850190506000600460008381526020019081526020016000205414156110b45760005481146110b3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461111e8686866001612a37565b505050505050565b61112e612894565b73ffffffffffffffffffffffffffffffffffffffff1661114c611a15565b73ffffffffffffffffffffffffffffffffffffffff16146111a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119990613be9565b60405180910390fd5b6000601060006101000a81548160ff021916908315150217905550565b6111c7612894565b73ffffffffffffffffffffffffffffffffffffffff166111e5611a15565b73ffffffffffffffffffffffffffffffffffffffff161461123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123290613be9565b60405180910390fd5b80600d8190555050565b61124d612894565b73ffffffffffffffffffffffffffffffffffffffff1661126b611a15565b73ffffffffffffffffffffffffffffffffffffffff16146112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890613be9565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6112e6612894565b73ffffffffffffffffffffffffffffffffffffffff16611304611a15565b73ffffffffffffffffffffffffffffffffffffffff161461135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613be9565b60405180910390fd5b6000611364611a15565b73ffffffffffffffffffffffffffffffffffffffff164760405161138790613a50565b60006040518083038185875af1925050503d80600081146113c4576040519150601f19603f3d011682016040523d82523d6000602084013e6113c9565b606091505b50509050806113d757600080fd5b50565b6113e2612894565b73ffffffffffffffffffffffffffffffffffffffff16611400611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613be9565b60405180910390fd5b61145e612a3d565b565b61147b83838360405180602001604052806000815250612341565b505050565b611488612894565b73ffffffffffffffffffffffffffffffffffffffff166114a6611a15565b73ffffffffffffffffffffffffffffffffffffffff16146114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f390613be9565b60405180910390fd5b80600a8190555050565b6000600860149054906101000a900460ff16905090565b611525612894565b73ffffffffffffffffffffffffffffffffffffffff16611543611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613be9565b60405180910390fd5b60008160ff16116115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690613c29565b60405180910390fd5b60006115e9610dac565b9050600b54848490508360ff166116009190613e0f565b8261160b9190613db9565b111561164c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164390613ba9565b60405180910390fd5b60005b848490508110156117215761168e8585838181106116705761166f614036565b5b9050602002016020810190611685919061338f565b8460ff16612aa0565b8260ff16601360008787858181106116a9576116a8614036565b5b90506020020160208101906116be919061338f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117079190613db9565b92505081905550808061171990613f8f565b91505061164f565b5050505050565b6000611733826128a5565b9050919050565b6009805461174790613f2c565b80601f016020809104026020016040519081016040528092919081815260200182805461177390613f2c565b80156117c05780601f10611795576101008083540402835291602001916117c0565b820191906000526020600020905b8154815290600101906020018083116117a357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611830576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611889612894565b73ffffffffffffffffffffffffffffffffffffffff166118a7611a15565b73ffffffffffffffffffffffffffffffffffffffff16146118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490613be9565b60405180910390fd5b6119076000612abe565b565b611911612894565b73ffffffffffffffffffffffffffffffffffffffff1661192f611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613be9565b60405180910390fd5b80600c8190555050565b611997612894565b73ffffffffffffffffffffffffffffffffffffffff166119b5611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290613be9565b60405180910390fd5b611a13612b84565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a47612894565b73ffffffffffffffffffffffffffffffffffffffff16611a65611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab290613be9565b60405180910390fd5b60008160ff1611611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af890613c29565b60405180910390fd5b6000611b0b610dac565b9050600b548260ff1682611b1f9190613db9565b1115611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790613ba9565b60405180910390fd5b611b6d838360ff16612aa0565b8160ff16601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bbf9190613db9565b92505081905550505050565b611bd3612894565b73ffffffffffffffffffffffffffffffffffffffff16611bf1611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3e90613be9565b60405180910390fd5b80600e8190555050565b606060038054611c6090613f2c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8c90613f2c565b8015611cd95780601f10611cae57610100808354040283529160200191611cd9565b820191906000526020600020905b815481529060010190602001808311611cbc57829003601f168201915b5050505050905090565b601060009054906101000a900460ff1681565b611cfe611506565b15611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590613c09565b60405180910390fd5b6000611d48610dac565b905060008211611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8490613ca9565b60405180910390fd5b600c54821115611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990613bc9565b60405180910390fd5b600b548282611de19190613db9565b1115611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613ba9565b60405180910390fd5b611e2a611a15565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612140576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060011515601060009054906101000a900460ff161515141561209d57601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f6357600d548382611f1d9190613db9565b1115611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5590613b69565b60405180910390fd5b612098565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561200a57600e548382611fc49190613db9565b1115612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90613c49565b60405180910390fd5b612097565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d90613c89565b60405180910390fd5b5b5b6120ee565b600f5483826120ac9190613db9565b11156120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e490613b49565b60405180910390fd5b5b82600a546120fc9190613e0f565b34101561213e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213590613c69565b60405180910390fd5b505b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218f9190613db9565b925050819055506121a03383612aa0565b5050565b6121ac612894565b73ffffffffffffffffffffffffffffffffffffffff166121ca611a15565b73ffffffffffffffffffffffffffffffffffffffff1614612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790613be9565b60405180910390fd5b80600f8190555050565b806007600061223761288c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122e461288c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123299190613acc565b60405180910390a35050565b600e5481565b600f5481565b61234c848484610e01565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123ae5761237784848484612be7565b6123ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b60606123c58261282d565b6123fb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612405612d47565b90506000815114156124265760405180602001604052806000815250612451565b8061243084612dd9565b604051602001612441929190613a2c565b6040516020818303038152906040525b915050919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124fb612894565b73ffffffffffffffffffffffffffffffffffffffff16612519611a15565b73ffffffffffffffffffffffffffffffffffffffff161461256f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256690613be9565b60405180910390fd5b60005b8383905081101561260e57816012600086868581811061259557612594614036565b5b90506020020160208101906125aa919061338f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061260690613f8f565b915050612572565b50505050565b61261c612894565b73ffffffffffffffffffffffffffffffffffffffff1661263a611a15565b73ffffffffffffffffffffffffffffffffffffffff1614612690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268790613be9565b60405180910390fd5b60005b8383905081101561272f5781601160008686858181106126b6576126b5614036565b5b90506020020160208101906126cb919061338f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061272790613f8f565b915050612693565b50505050565b61273d612894565b73ffffffffffffffffffffffffffffffffffffffff1661275b611a15565b73ffffffffffffffffffffffffffffffffffffffff16146127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890613be9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281890613b29565b60405180910390fd5b61282a81612abe565b50565b60008161283861289c565b11158015612847575060005482105b8015612885575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60006001905090565b600080829050806128b461289c565b1161293c5760005481101561293b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612939575b600081141561292f576004600083600190039350838152602001908152602001600020549050612904565b809250505061296e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86129fb868684612e32565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612a45612e3b565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612a89612894565b604051612a969190613a65565b60405180910390a1565b612aba828260405180602001604052806000815250612e84565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b8c612f21565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612bd0612894565b604051612bdd9190613a65565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c0d61288c565b8786866040518563ffffffff1660e01b8152600401612c2f9493929190613a80565b602060405180830381600087803b158015612c4957600080fd5b505af1925050508015612c7a57506040513d601f19601f82011682018060405250810190612c7791906136ac565b60015b612cf4573d8060008114612caa576040519150601f19603f3d011682016040523d82523d6000602084013e612caf565b606091505b50600081511415612cec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612d5690613f2c565b80601f0160208091040260200160405190810160405280929190818152602001828054612d8290613f2c565b8015612dcf5780601f10612da457610100808354040283529160200191612dcf565b820191906000526020600020905b815481529060010190602001808311612db257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612e1d57600184039350600a81066030018453600a8104905080612e1857612e1d565b612df2565b50828103602084039350808452505050919050565b60009392505050565b612e43611506565b612e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7990613b09565b60405180910390fd5b565b612e8e8383612f6b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612f1c57600080549050600083820390505b612ece6000868380600101945086612be7565b612f04576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612ebb578160005414612f1957600080fd5b50505b505050565b612f29611506565b15612f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6090613b89565b60405180910390fd5b565b6000805490506000821415612fac576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fb960008483856129de565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506130308361302160008660006129e4565b61302a85613128565b17612a0c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146130d157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613096565b50600082141561310d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506131236000848385612a37565b505050565b60006001821460e11b9050919050565b82805461314490613f2c565b90600052602060002090601f01602090048101928261316657600085556131ad565b82601f1061317f57805160ff19168380011785556131ad565b828001600101855582156131ad579182015b828111156131ac578251825591602001919060010190613191565b5b5090506131ba91906131be565b5090565b5b808211156131d75760008160009055506001016131bf565b5090565b60006131ee6131e984613d09565b613ce4565b90508281526020810184848401111561320a576132096140a3565b5b613215848285613eea565b509392505050565b600061323061322b84613d3a565b613ce4565b90508281526020810184848401111561324c5761324b6140a3565b5b613257848285613eea565b509392505050565b60008135905061326e8161439c565b92915050565b60008083601f84011261328a57613289614099565b5b8235905067ffffffffffffffff8111156132a7576132a6614094565b5b6020830191508360208202830111156132c3576132c261409e565b5b9250929050565b6000813590506132d9816143b3565b92915050565b6000813590506132ee816143ca565b92915050565b600081519050613303816143ca565b92915050565b600082601f83011261331e5761331d614099565b5b813561332e8482602086016131db565b91505092915050565b600082601f83011261334c5761334b614099565b5b813561335c84826020860161321d565b91505092915050565b600081359050613374816143e1565b92915050565b600081359050613389816143f8565b92915050565b6000602082840312156133a5576133a46140ad565b5b60006133b38482850161325f565b91505092915050565b600080604083850312156133d3576133d26140ad565b5b60006133e18582860161325f565b92505060206133f28582860161325f565b9150509250929050565b600080600060608486031215613415576134146140ad565b5b60006134238682870161325f565b93505060206134348682870161325f565b925050604061344586828701613365565b9150509250925092565b60008060008060808587031215613469576134686140ad565b5b60006134778782880161325f565b94505060206134888782880161325f565b935050604061349987828801613365565b925050606085013567ffffffffffffffff8111156134ba576134b96140a8565b5b6134c687828801613309565b91505092959194509250565b600080604083850312156134e9576134e86140ad565b5b60006134f78582860161325f565b9250506020613508858286016132ca565b9150509250929050565b60008060408385031215613529576135286140ad565b5b60006135378582860161325f565b925050602061354885828601613365565b9150509250929050565b60008060408385031215613569576135686140ad565b5b60006135778582860161325f565b92505060206135888582860161337a565b9150509250929050565b6000806000604084860312156135ab576135aa6140ad565b5b600084013567ffffffffffffffff8111156135c9576135c86140a8565b5b6135d586828701613274565b935093505060206135e8868287016132ca565b9150509250925092565b60008060006040848603121561360b5761360a6140ad565b5b600084013567ffffffffffffffff811115613629576136286140a8565b5b61363586828701613274565b935093505060206136488682870161337a565b9150509250925092565b600060208284031215613668576136676140ad565b5b6000613676848285016132ca565b91505092915050565b600060208284031215613695576136946140ad565b5b60006136a3848285016132df565b91505092915050565b6000602082840312156136c2576136c16140ad565b5b60006136d0848285016132f4565b91505092915050565b6000602082840312156136ef576136ee6140ad565b5b600082013567ffffffffffffffff81111561370d5761370c6140a8565b5b61371984828501613337565b91505092915050565b600060208284031215613738576137376140ad565b5b600061374684828501613365565b91505092915050565b61375881613e69565b82525050565b61376781613e7b565b82525050565b600061377882613d6b565b6137828185613d81565b9350613792818560208601613ef9565b61379b816140b2565b840191505092915050565b60006137b182613d76565b6137bb8185613d9d565b93506137cb818560208601613ef9565b6137d4816140b2565b840191505092915050565b60006137ea82613d76565b6137f48185613dae565b9350613804818560208601613ef9565b80840191505092915050565b600061381d601483613d9d565b9150613828826140c3565b602082019050919050565b6000613840602683613d9d565b915061384b826140ec565b604082019050919050565b6000613863601c83613d9d565b915061386e8261413b565b602082019050919050565b6000613886602683613d9d565b915061389182614164565b604082019050919050565b60006138a9601083613d9d565b91506138b4826141b3565b602082019050919050565b60006138cc601683613d9d565b91506138d7826141dc565b602082019050919050565b60006138ef602483613d9d565b91506138fa82614205565b604082019050919050565b6000613912602083613d9d565b915061391d82614254565b602082019050919050565b6000613935601683613d9d565b91506139408261427d565b602082019050919050565b6000613958601383613d9d565b9150613963826142a6565b602082019050919050565b600061397b602883613d9d565b9150613986826142cf565b604082019050919050565b600061399e600083613d92565b91506139a98261431e565b600082019050919050565b60006139c1601283613d9d565b91506139cc82614321565b602082019050919050565b60006139e4601783613d9d565b91506139ef8261434a565b602082019050919050565b6000613a07601b83613d9d565b9150613a1282614373565b602082019050919050565b613a2681613ed3565b82525050565b6000613a3882856137df565b9150613a4482846137df565b91508190509392505050565b6000613a5b82613991565b9150819050919050565b6000602082019050613a7a600083018461374f565b92915050565b6000608082019050613a95600083018761374f565b613aa2602083018661374f565b613aaf6040830185613a1d565b8181036060830152613ac1818461376d565b905095945050505050565b6000602082019050613ae1600083018461375e565b92915050565b60006020820190508181036000830152613b0181846137a6565b905092915050565b60006020820190508181036000830152613b2281613810565b9050919050565b60006020820190508181036000830152613b4281613833565b9050919050565b60006020820190508181036000830152613b6281613856565b9050919050565b60006020820190508181036000830152613b8281613879565b9050919050565b60006020820190508181036000830152613ba28161389c565b9050919050565b60006020820190508181036000830152613bc2816138bf565b9050919050565b60006020820190508181036000830152613be2816138e2565b9050919050565b60006020820190508181036000830152613c0281613905565b9050919050565b60006020820190508181036000830152613c2281613928565b9050919050565b60006020820190508181036000830152613c428161394b565b9050919050565b60006020820190508181036000830152613c628161396e565b9050919050565b60006020820190508181036000830152613c82816139b4565b9050919050565b60006020820190508181036000830152613ca2816139d7565b9050919050565b60006020820190508181036000830152613cc2816139fa565b9050919050565b6000602082019050613cde6000830184613a1d565b92915050565b6000613cee613cff565b9050613cfa8282613f5e565b919050565b6000604051905090565b600067ffffffffffffffff821115613d2457613d23614065565b5b613d2d826140b2565b9050602081019050919050565b600067ffffffffffffffff821115613d5557613d54614065565b5b613d5e826140b2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dc482613ed3565b9150613dcf83613ed3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e0457613e03613fd8565b5b828201905092915050565b6000613e1a82613ed3565b9150613e2583613ed3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e5e57613e5d613fd8565b5b828202905092915050565b6000613e7482613eb3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613f17578082015181840152602081019050613efc565b83811115613f26576000848401525b50505050565b60006002820490506001821680613f4457607f821691505b60208210811415613f5857613f57614007565b5b50919050565b613f67826140b2565b810181811067ffffffffffffffff82111715613f8657613f85614065565b5b80604052505050565b6000613f9a82613ed3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fcd57613fcc613fd8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f6d6178204e46542070657220436f6c6c6563746f72206164647265737320657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4e6f20616d6f756e742073706563696669656400000000000000000000000000600082015250565b7f6d6178204e4654207065722057686974656c697374656420616464726573732060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6143a581613e69565b81146143b057600080fd5b50565b6143bc81613e7b565b81146143c757600080fd5b50565b6143d381613e87565b81146143de57600080fd5b50565b6143ea81613ed3565b81146143f557600080fd5b50565b61440181613edd565b811461440c57600080fd5b5056fea264697066735822122007cf48d67a0acb03362e0b62ac47e83a49d8b95b0c581fe25bc37ab373cedc0364736f6c63430008070033

Deployed Bytecode Sourcemap

54805:4546:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21739:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55300:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22641:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29132:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28565:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57768:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54956:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18392:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55358:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55029:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32771:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58680:83;;;;;;;;;;;;;:::i;:::-;;58105:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58579:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59203:145;;;:::i;:::-;;58512:61;;;;;;;;;;;;;:::i;:::-;;35692:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57897:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1342:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57334:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24034:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54858:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19576:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3387:103;;;;;;;;;;;;;:::i;:::-;;57983:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58449:57;;;;;;;;;;;;;:::i;:::-;;2736:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57030:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58227:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22817:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55201:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55749:1275;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58341:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29690:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55114:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55158:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36483:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55066:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23027:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54993:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30081:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58989:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58769:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3645:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21739:639;21824:4;22163:10;22148:25;;:11;:25;;;;:102;;;;22240:10;22225:25;;:11;:25;;;;22148:102;:179;;;;22317:10;22302:25;;:11;:25;;;;22148:179;22128:199;;21739:639;;;:::o;55300:53::-;;;;;;;;;;;;;;;;;;;;;;:::o;22641:100::-;22695:13;22728:5;22721:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22641:100;:::o;29132:218::-;29208:7;29233:16;29241:7;29233;:16::i;:::-;29228:64;;29258:34;;;;;;;;;;;;;;29228:64;29312:15;:24;29328:7;29312:24;;;;;;;;;;;:30;;;;;;;;;;;;29305:37;;29132:218;;;:::o;28565:408::-;28654:13;28670:16;28678:7;28670;:16::i;:::-;28654:32;;28726:5;28703:28;;:19;:17;:19::i;:::-;:28;;;28699:175;;28751:44;28768:5;28775:19;:17;:19::i;:::-;28751:16;:44::i;:::-;28746:128;;28823:35;;;;;;;;;;;;;;28746:128;28699:175;28919:2;28886:15;:24;28902:7;28886:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28957:7;28953:2;28937:28;;28946:5;28937:28;;;;;;;;;;;;28643:330;28565:408;;:::o;57768:123::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57846:7:::1;57836;:17;;;;;;;;;;;;:::i;:::-;;57865:20;57877:7;57865:20;;;;;;:::i;:::-;;;;;;;;57768:123:::0;:::o;54956:32::-;;;;:::o;18392:323::-;18453:7;18681:15;:13;:15::i;:::-;18666:12;;18650:13;;:28;:46;18643:53;;18392:323;:::o;55358:55::-;;;;;;;;;;;;;;;;;:::o;55240:::-;;;;;;;;;;;;;;;;;;;;;;:::o;55029:32::-;;;;:::o;32771:2825::-;32913:27;32943;32962:7;32943:18;:27::i;:::-;32913:57;;33028:4;32987:45;;33003:19;32987:45;;;32983:86;;33041:28;;;;;;;;;;;;;;32983:86;33083:27;33112:23;33139:35;33166:7;33139:26;:35::i;:::-;33082:92;;;;33274:68;33299:15;33316:4;33322:19;:17;:19::i;:::-;33274:24;:68::i;:::-;33269:180;;33362:43;33379:4;33385:19;:17;:19::i;:::-;33362:16;:43::i;:::-;33357:92;;33414:35;;;;;;;;;;;;;;33357:92;33269:180;33480:1;33466:16;;:2;:16;;;33462:52;;;33491:23;;;;;;;;;;;;;;33462:52;33527:43;33549:4;33555:2;33559:7;33568:1;33527:21;:43::i;:::-;33663:15;33660:160;;;33803:1;33782:19;33775:30;33660:160;34200:18;:24;34219:4;34200:24;;;;;;;;;;;;;;;;34198:26;;;;;;;;;;;;34269:18;:22;34288:2;34269:22;;;;;;;;;;;;;;;;34267:24;;;;;;;;;;;34591:146;34628:2;34677:45;34692:4;34698:2;34702:19;34677:14;:45::i;:::-;14791:8;34649:73;34591:18;:146::i;:::-;34562:17;:26;34580:7;34562:26;;;;;;;;;;;:175;;;;34908:1;14791:8;34857:19;:47;:52;34853:627;;;34930:19;34962:1;34952:7;:11;34930:33;;35119:1;35085:17;:30;35103:11;35085:30;;;;;;;;;;;;:35;35081:384;;;35223:13;;35208:11;:28;35204:242;;35403:19;35370:17;:30;35388:11;35370:30;;;;;;;;;;;:52;;;;35204:242;35081:384;34911:569;34853:627;35527:7;35523:2;35508:27;;35517:4;35508:27;;;;;;;;;;;;35546:42;35567:4;35573:2;35577:7;35586:1;35546:20;:42::i;:::-;32902:2694;;;32771:2825;;;:::o;58680:83::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58752:5:::1;58734:15;;:23;;;;;;;;;;;;;;;;;;58680:83::o:0;58105:116::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58209:6:::1;58182:24;:33;;;;58105:116:::0;:::o;58579:95::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58662:6:::1;58644:15;;:24;;;;;;;;;;;;;;;;;;58579:95:::0;:::o;59203:145::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59256:7:::1;59277;:5;:7::i;:::-;59269:21;;59298;59269:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59255:69;;;59339:2;59331:11;;;::::0;::::1;;59248:100;59203:145::o:0;58512:61::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58557:10:::1;:8;:10::i;:::-;58512:61::o:0;35692:193::-;35838:39;35855:4;35861:2;35865:7;35838:39;;;;;;;;;;;;:16;:39::i;:::-;35692:193;;;:::o;57897:80::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57963:8:::1;57956:4;:15;;;;57897:80:::0;:::o;1342:86::-;1389:4;1413:7;;;;;;;;;;;1406:14;;1342:86;:::o;57334:428::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57447:1:::1;57438:6;:10;;;57430:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;57479:14;57496:13;:11;:13::i;:::-;57479:30;;57564:9;;57543;;:16;;57534:6;:25;;;;;;:::i;:::-;57524:6;:36;;;;:::i;:::-;:49;;57516:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;57614:9;57609:148;57633:9;;:16;;57629:1;:20;57609:148;;;57665:31;57675:9;;57685:1;57675:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;57689:6;57665:31;;:9;:31::i;:::-;57743:6;57705:44;;:20;:34;57726:9;;57736:1;57726:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;57705:34;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;57651:3;;;;;:::i;:::-;;;;57609:148;;;;57423:339;57334:428:::0;;;:::o;24034:152::-;24106:7;24149:27;24168:7;24149:18;:27::i;:::-;24126:52;;24034:152;;;:::o;54858:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19576:233::-;19648:7;19689:1;19672:19;;:5;:19;;;19668:60;;;19700:28;;;;;;;;;;;;;;19668:60;13735:13;19746:18;:25;19765:5;19746:25;;;;;;;;;;;;;;;;:55;19739:62;;19576:233;;;:::o;3387:103::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3452:30:::1;3479:1;3452:18;:30::i;:::-;3387:103::o:0;57983:116::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58076:17:::1;58060:13;:33;;;;57983:116:::0;:::o;58449:57::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58492:8:::1;:6;:8::i;:::-;58449:57::o:0;2736:87::-;2782:7;2809:6;;;;;;;;;;;2802:13;;2736:87;:::o;57030:298::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57121:1:::1;57112:6;:10;;;57104:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;57153:14;57170:13;:11;:13::i;:::-;57153:30;;57217:9;;57207:6;57198:15;;:6;:15;;;;:::i;:::-;:28;;57190:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;57260:21;57270:2;57274:6;57260:21;;:9;:21::i;:::-;57316:6;57288:34;;:20;:24;57309:2;57288:24;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;57097:231;57030:298:::0;;:::o;58227:108::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58323:6:::1;58300:20;:29;;;;58227:108:::0;:::o;22817:104::-;22873:13;22906:7;22899:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22817:104;:::o;55201:34::-;;;;;;;;;;;;;:::o;55749:1275::-;55815:8;:6;:8::i;:::-;55814:9;55806:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;55857:14;55874:13;:11;:13::i;:::-;55857:30;;55916:1;55902:11;:15;55894:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;55979:13;;55964:11;:28;;55956:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;56072:9;;56057:11;56048:6;:20;;;;:::i;:::-;:33;;56040:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56137:7;:5;:7::i;:::-;56123:21;;:10;:21;;;56119:803;;56155:24;56182:20;:32;56203:10;56182:32;;;;;;;;;;;;;;;;56155:59;;56248:4;56229:23;;:15;;;;;;;;;;;:23;;;56225:617;;;56269:22;:34;56292:10;56269:34;;;;;;;;;;;;;;;;;;;;;;;;;56265:449;;;56360:24;;56345:11;56326:16;:30;;;;:::i;:::-;:58;;56318:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;56265:449;;;56449:20;:32;56470:10;56449:32;;;;;;;;;;;;;;;;;;;;;;;;;56445:269;;;56538:20;;56523:11;56504:16;:30;;;;:::i;:::-;:54;;56496:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;56445:269;;;56642:20;:32;56663:10;56642:32;;;;;;;;;;;;;;;;;;;;;;;;;56634:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56445:269;56265:449;56225:617;;;56782:17;;56767:11;56748:16;:30;;;;:::i;:::-;:51;;56740:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;56225:617;56880:11;56873:4;;:18;;;;:::i;:::-;56860:9;:31;;56852:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;56146:776;56119:803;56966:11;56930:20;:32;56951:10;56930:32;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;56984:34;56994:10;57006:11;56984:9;:34::i;:::-;55799:1225;55749:1275;:::o;58341:102::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58431:6:::1;58411:17;:26;;;;58341:102:::0;:::o;29690:234::-;29837:8;29785:18;:39;29804:19;:17;:19::i;:::-;29785:39;;;;;;;;;;;;;;;:49;29825:8;29785:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29897:8;29861:55;;29876:19;:17;:19::i;:::-;29861:55;;;29907:8;29861:55;;;;;;:::i;:::-;;;;;;;;29690:234;;:::o;55114:39::-;;;;:::o;55158:36::-;;;;:::o;36483:407::-;36658:31;36671:4;36677:2;36681:7;36658:12;:31::i;:::-;36722:1;36704:2;:14;;;:19;36700:183;;36743:56;36774:4;36780:2;36784:7;36793:5;36743:30;:56::i;:::-;36738:145;;36827:40;;;;;;;;;;;;;;36738:145;36700:183;36483:407;;;;:::o;55066:43::-;;;;:::o;23027:318::-;23100:13;23131:16;23139:7;23131;:16::i;:::-;23126:59;;23156:29;;;;;;;;;;;;;;23126:59;23198:21;23222:10;:8;:10::i;:::-;23198:34;;23275:1;23256:7;23250:21;:26;;:87;;;;;;;;;;;;;;;;;23303:7;23312:18;23322:7;23312:9;:18::i;:::-;23286:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23250:87;23243:94;;;23027:318;;;:::o;54993:31::-;;;;:::o;30081:164::-;30178:4;30202:18;:25;30221:5;30202:25;;;;;;;;;;;;;;;:35;30228:8;30202:35;;;;;;;;;;;;;;;;;;;;;;;;;30195:42;;30081:164;;;;:::o;58989:208::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59089:9:::1;59084:108;59108:9;;:16;;59104:1;:20;59084:108;;;59177:7;59140:20;:34;59161:9;;59171:1;59161:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;59140:34;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;59126:3;;;;;:::i;:::-;;;;59084:108;;;;58989:208:::0;;;:::o;58769:214::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58873:9:::1;58868:110;58892:9;;:16;;58888:1;:20;58868:110;;;58963:7;58924:22;:36;58947:9;;58957:1;58947:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;58924:36;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;58910:3;;;;;:::i;:::-;;;;58868:110;;;;58769:214:::0;;;:::o;3645:201::-;2967:12;:10;:12::i;:::-;2956:23;;:7;:5;:7::i;:::-;:23;;;2948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3754:1:::1;3734:22;;:8;:22;;;;3726:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3810:28;3829:8;3810:18;:28::i;:::-;3645:201:::0;:::o;30503:282::-;30568:4;30624:7;30605:15;:13;:15::i;:::-;:26;;:66;;;;;30658:13;;30648:7;:23;30605:66;:153;;;;;30757:1;14511:8;30709:17;:26;30727:7;30709:26;;;;;;;;;;;;:44;:49;30605:153;30585:173;;30503:282;;;:::o;52811:105::-;52871:7;52898:10;52891:17;;52811:105;:::o;68:98::-;121:7;148:10;141:17;;68:98;:::o;55642:87::-;55699:7;55722:1;55715:8;;55642:87;:::o;25189:1275::-;25256:7;25276:12;25291:7;25276:22;;25359:4;25340:15;:13;:15::i;:::-;:23;25336:1061;;25393:13;;25386:4;:20;25382:1015;;;25431:14;25448:17;:23;25466:4;25448:23;;;;;;;;;;;;25431:40;;25565:1;14511:8;25537:6;:24;:29;25533:845;;;26202:113;26219:1;26209:6;:11;26202:113;;;26262:17;:25;26280:6;;;;;;;26262:25;;;;;;;;;;;;26253:34;;26202:113;;;26348:6;26341:13;;;;;;25533:845;25408:989;25382:1015;25336:1061;26425:31;;;;;;;;;;;;;;25189:1275;;;;:::o;31666:485::-;31768:27;31797:23;31838:38;31879:15;:24;31895:7;31879:24;;;;;;;;;;;31838:65;;32056:18;32033:41;;32113:19;32107:26;32088:45;;32018:126;31666:485;;;:::o;30894:659::-;31043:11;31208:16;31201:5;31197:28;31188:37;;31368:16;31357:9;31353:32;31340:45;;31518:15;31507:9;31504:30;31496:5;31485:9;31482:20;31479:56;31469:66;;30894:659;;;;;:::o;37552:159::-;;;;;:::o;52120:311::-;52255:7;52275:16;14915:3;52301:19;:41;;52275:68;;14915:3;52369:31;52380:4;52386:2;52390:9;52369:10;:31::i;:::-;52361:40;;:62;;52354:69;;;52120:311;;;;;:::o;27012:450::-;27092:14;27260:16;27253:5;27249:28;27240:37;;27437:5;27423:11;27398:23;27394:41;27391:52;27384:5;27381:63;27371:73;;27012:450;;;;:::o;38376:158::-;;;;;:::o;2197:120::-;1206:16;:14;:16::i;:::-;2266:5:::1;2256:7;;:15;;;;;;;;;;;;;;;;;;2287:22;2296:12;:10;:12::i;:::-;2287:22;;;;;;:::i;:::-;;;;;;;;2197:120::o:0;46643:112::-;46720:27;46730:2;46734:8;46720:27;;;;;;;;;;;;:9;:27::i;:::-;46643:112;;:::o;4006:191::-;4080:16;4099:6;;;;;;;;;;;4080:25;;4125:8;4116:6;;:17;;;;;;;;;;;;;;;;;;4180:8;4149:40;;4170:8;4149:40;;;;;;;;;;;;4069:128;4006:191;:::o;1938:118::-;947:19;:17;:19::i;:::-;2008:4:::1;1998:7;;:14;;;;;;;;;;;;;;;;;;2028:20;2035:12;:10;:12::i;:::-;2028:20;;;;;;:::i;:::-;;;;;;;;1938:118::o:0;38974:716::-;39137:4;39183:2;39158:45;;;39204:19;:17;:19::i;:::-;39225:4;39231:7;39240:5;39158:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39154:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39458:1;39441:6;:13;:18;39437:235;;;39487:40;;;;;;;;;;;;;;39437:235;39630:6;39624:13;39615:6;39611:2;39607:15;39600:38;39154:529;39327:54;;;39317:64;;;:6;:64;;;;39310:71;;;38974:716;;;;;;:::o;55534:102::-;55594:13;55623:7;55616:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55534:102;:::o;53018:1745::-;53083:17;53517:4;53510;53504:11;53500:22;53609:1;53603:4;53596:15;53684:4;53681:1;53677:12;53670:19;;53766:1;53761:3;53754:14;53870:3;54109:5;54091:428;54117:1;54091:428;;;54157:1;54152:3;54148:11;54141:18;;54328:2;54322:4;54318:13;54314:2;54310:22;54305:3;54297:36;54422:2;54416:4;54412:13;54404:21;;54489:4;54479:25;;54497:5;;54479:25;54091:428;;;54095:21;54558:3;54553;54549:13;54673:4;54668:3;54664:14;54657:21;;54738:6;54733:3;54726:19;53122:1634;;;53018:1745;;;:::o;51821:147::-;51958:6;51821:147;;;;;:::o;1686:108::-;1753:8;:6;:8::i;:::-;1745:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1686:108::o;45870:689::-;46001:19;46007:2;46011:8;46001:5;:19::i;:::-;46080:1;46062:2;:14;;;:19;46058:483;;46102:11;46116:13;;46102:27;;46148:13;46170:8;46164:3;:14;46148:30;;46197:233;46228:62;46267:1;46271:2;46275:7;;;;;;46284:5;46228:30;:62::i;:::-;46223:167;;46326:40;;;;;;;;;;;;;;46223:167;46425:3;46417:5;:11;46197:233;;46512:3;46495:13;;:20;46491:34;;46517:8;;;46491:34;46083:458;;46058:483;45870:689;;;:::o;1501:108::-;1572:8;:6;:8::i;:::-;1571:9;1563:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1501:108::o;40152:2966::-;40225:20;40248:13;;40225:36;;40288:1;40276:8;:13;40272:44;;;40298:18;;;;;;;;;;;;;;40272:44;40329:61;40359:1;40363:2;40367:12;40381:8;40329:21;:61::i;:::-;40873:1;13873:2;40843:1;:26;;40842:32;40830:8;:45;40804:18;:22;40823:2;40804:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41152:139;41189:2;41243:33;41266:1;41270:2;41274:1;41243:14;:33::i;:::-;41210:30;41231:8;41210:20;:30::i;:::-;:66;41152:18;:139::i;:::-;41118:17;:31;41136:12;41118:31;;;;;;;;;;;:173;;;;41308:16;41339:11;41368:8;41353:12;:23;41339:37;;41889:16;41885:2;41881:25;41869:37;;42261:12;42221:8;42180:1;42118:25;42059:1;41998;41971:335;42632:1;42618:12;42614:20;42572:346;42673:3;42664:7;42661:16;42572:346;;42891:7;42881:8;42878:1;42851:25;42848:1;42845;42840:59;42726:1;42717:7;42713:15;42702:26;;42572:346;;;42576:77;42963:1;42951:8;:13;42947:45;;;42973:19;;;;;;;;;;;;;;42947:45;43025:3;43009:13;:19;;;;40578:2462;;43050:60;43079:1;43083:2;43087:12;43101:8;43050:20;:60::i;:::-;40214:2904;40152:2966;;:::o;27564:324::-;27634:14;27867:1;27857:8;27854:15;27828:24;27824:46;27814:56;;27564:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:135::-;2912:5;2950:6;2937:20;2928:29;;2966:31;2991:5;2966:31;:::i;:::-;2868:135;;;;:::o;3009:329::-;3068:6;3117:2;3105:9;3096:7;3092:23;3088:32;3085:119;;;3123:79;;:::i;:::-;3085:119;3243:1;3268:53;3313:7;3304:6;3293:9;3289:22;3268:53;:::i;:::-;3258:63;;3214:117;3009:329;;;;:::o;3344:474::-;3412:6;3420;3469:2;3457:9;3448:7;3444:23;3440:32;3437:119;;;3475:79;;:::i;:::-;3437:119;3595:1;3620:53;3665:7;3656:6;3645:9;3641:22;3620:53;:::i;:::-;3610:63;;3566:117;3722:2;3748:53;3793:7;3784:6;3773:9;3769:22;3748:53;:::i;:::-;3738:63;;3693:118;3344:474;;;;;:::o;3824:619::-;3901:6;3909;3917;3966:2;3954:9;3945:7;3941:23;3937:32;3934:119;;;3972:79;;:::i;:::-;3934:119;4092:1;4117:53;4162:7;4153:6;4142:9;4138:22;4117:53;:::i;:::-;4107:63;;4063:117;4219:2;4245:53;4290:7;4281:6;4270:9;4266:22;4245:53;:::i;:::-;4235:63;;4190:118;4347:2;4373:53;4418:7;4409:6;4398:9;4394:22;4373:53;:::i;:::-;4363:63;;4318:118;3824:619;;;;;:::o;4449:943::-;4544:6;4552;4560;4568;4617:3;4605:9;4596:7;4592:23;4588:33;4585:120;;;4624:79;;:::i;:::-;4585:120;4744:1;4769:53;4814:7;4805:6;4794:9;4790:22;4769:53;:::i;:::-;4759:63;;4715:117;4871:2;4897:53;4942:7;4933:6;4922:9;4918:22;4897:53;:::i;:::-;4887:63;;4842:118;4999:2;5025:53;5070:7;5061:6;5050:9;5046:22;5025:53;:::i;:::-;5015:63;;4970:118;5155:2;5144:9;5140:18;5127:32;5186:18;5178:6;5175:30;5172:117;;;5208:79;;:::i;:::-;5172:117;5313:62;5367:7;5358:6;5347:9;5343:22;5313:62;:::i;:::-;5303:72;;5098:287;4449:943;;;;;;;:::o;5398:468::-;5463:6;5471;5520:2;5508:9;5499:7;5495:23;5491:32;5488:119;;;5526:79;;:::i;:::-;5488:119;5646:1;5671:53;5716:7;5707:6;5696:9;5692:22;5671:53;:::i;:::-;5661:63;;5617:117;5773:2;5799:50;5841:7;5832:6;5821:9;5817:22;5799:50;:::i;:::-;5789:60;;5744:115;5398:468;;;;;:::o;5872:474::-;5940:6;5948;5997:2;5985:9;5976:7;5972:23;5968:32;5965:119;;;6003:79;;:::i;:::-;5965:119;6123:1;6148:53;6193:7;6184:6;6173:9;6169:22;6148:53;:::i;:::-;6138:63;;6094:117;6250:2;6276:53;6321:7;6312:6;6301:9;6297:22;6276:53;:::i;:::-;6266:63;;6221:118;5872:474;;;;;:::o;6352:470::-;6418:6;6426;6475:2;6463:9;6454:7;6450:23;6446:32;6443:119;;;6481:79;;:::i;:::-;6443:119;6601:1;6626:53;6671:7;6662:6;6651:9;6647:22;6626:53;:::i;:::-;6616:63;;6572:117;6728:2;6754:51;6797:7;6788:6;6777:9;6773:22;6754:51;:::i;:::-;6744:61;;6699:116;6352:470;;;;;:::o;6828:698::-;6920:6;6928;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:80;7376:7;7367:6;7356:9;7352:22;7304:80;:::i;:::-;7286:98;;;;7082:312;7433:2;7459:50;7501:7;7492:6;7481:9;7477:22;7459:50;:::i;:::-;7449:60;;7404:115;6828:698;;;;;:::o;7532:700::-;7625:6;7633;7641;7690:2;7678:9;7669:7;7665:23;7661:32;7658:119;;;7696:79;;:::i;:::-;7658:119;7844:1;7833:9;7829:17;7816:31;7874:18;7866:6;7863:30;7860:117;;;7896:79;;:::i;:::-;7860:117;8009:80;8081:7;8072:6;8061:9;8057:22;8009:80;:::i;:::-;7991:98;;;;7787:312;8138:2;8164:51;8207:7;8198:6;8187:9;8183:22;8164:51;:::i;:::-;8154:61;;8109:116;7532:700;;;;;:::o;8238:323::-;8294:6;8343:2;8331:9;8322:7;8318:23;8314:32;8311:119;;;8349:79;;:::i;:::-;8311:119;8469:1;8494:50;8536:7;8527:6;8516:9;8512:22;8494:50;:::i;:::-;8484:60;;8440:114;8238:323;;;;:::o;8567:327::-;8625:6;8674:2;8662:9;8653:7;8649:23;8645:32;8642:119;;;8680:79;;:::i;:::-;8642:119;8800:1;8825:52;8869:7;8860:6;8849:9;8845:22;8825:52;:::i;:::-;8815:62;;8771:116;8567:327;;;;:::o;8900:349::-;8969:6;9018:2;9006:9;8997:7;8993:23;8989:32;8986:119;;;9024:79;;:::i;:::-;8986:119;9144:1;9169:63;9224:7;9215:6;9204:9;9200:22;9169:63;:::i;:::-;9159:73;;9115:127;8900:349;;;;:::o;9255:509::-;9324:6;9373:2;9361:9;9352:7;9348:23;9344:32;9341:119;;;9379:79;;:::i;:::-;9341:119;9527:1;9516:9;9512:17;9499:31;9557:18;9549:6;9546:30;9543:117;;;9579:79;;:::i;:::-;9543:117;9684:63;9739:7;9730:6;9719:9;9715:22;9684:63;:::i;:::-;9674:73;;9470:287;9255:509;;;;:::o;9770:329::-;9829:6;9878:2;9866:9;9857:7;9853:23;9849:32;9846:119;;;9884:79;;:::i;:::-;9846:119;10004:1;10029:53;10074:7;10065:6;10054:9;10050:22;10029:53;:::i;:::-;10019:63;;9975:117;9770:329;;;;:::o;10105:118::-;10192:24;10210:5;10192:24;:::i;:::-;10187:3;10180:37;10105:118;;:::o;10229:109::-;10310:21;10325:5;10310:21;:::i;:::-;10305:3;10298:34;10229:109;;:::o;10344:360::-;10430:3;10458:38;10490:5;10458:38;:::i;:::-;10512:70;10575:6;10570:3;10512:70;:::i;:::-;10505:77;;10591:52;10636:6;10631:3;10624:4;10617:5;10613:16;10591:52;:::i;:::-;10668:29;10690:6;10668:29;:::i;:::-;10663:3;10659:39;10652:46;;10434:270;10344:360;;;;:::o;10710:364::-;10798:3;10826:39;10859:5;10826:39;:::i;:::-;10881:71;10945:6;10940:3;10881:71;:::i;:::-;10874:78;;10961:52;11006:6;11001:3;10994:4;10987:5;10983:16;10961:52;:::i;:::-;11038:29;11060:6;11038:29;:::i;:::-;11033:3;11029:39;11022:46;;10802:272;10710:364;;;;:::o;11080:377::-;11186:3;11214:39;11247:5;11214:39;:::i;:::-;11269:89;11351:6;11346:3;11269:89;:::i;:::-;11262:96;;11367:52;11412:6;11407:3;11400:4;11393:5;11389:16;11367:52;:::i;:::-;11444:6;11439:3;11435:16;11428:23;;11190:267;11080:377;;;;:::o;11463:366::-;11605:3;11626:67;11690:2;11685:3;11626:67;:::i;:::-;11619:74;;11702:93;11791:3;11702:93;:::i;:::-;11820:2;11815:3;11811:12;11804:19;;11463:366;;;:::o;11835:::-;11977:3;11998:67;12062:2;12057:3;11998:67;:::i;:::-;11991:74;;12074:93;12163:3;12074:93;:::i;:::-;12192:2;12187:3;12183:12;12176:19;;11835:366;;;:::o;12207:::-;12349:3;12370:67;12434:2;12429:3;12370:67;:::i;:::-;12363:74;;12446:93;12535:3;12446:93;:::i;:::-;12564:2;12559:3;12555:12;12548:19;;12207:366;;;:::o;12579:::-;12721:3;12742:67;12806:2;12801:3;12742:67;:::i;:::-;12735:74;;12818:93;12907:3;12818:93;:::i;:::-;12936:2;12931:3;12927:12;12920:19;;12579:366;;;:::o;12951:::-;13093:3;13114:67;13178:2;13173:3;13114:67;:::i;:::-;13107:74;;13190:93;13279:3;13190:93;:::i;:::-;13308:2;13303:3;13299:12;13292:19;;12951:366;;;:::o;13323:::-;13465:3;13486:67;13550:2;13545:3;13486:67;:::i;:::-;13479:74;;13562:93;13651:3;13562:93;:::i;:::-;13680:2;13675:3;13671:12;13664:19;;13323:366;;;:::o;13695:::-;13837:3;13858:67;13922:2;13917:3;13858:67;:::i;:::-;13851:74;;13934:93;14023:3;13934:93;:::i;:::-;14052:2;14047:3;14043:12;14036:19;;13695:366;;;:::o;14067:::-;14209:3;14230:67;14294:2;14289:3;14230:67;:::i;:::-;14223:74;;14306:93;14395:3;14306:93;:::i;:::-;14424:2;14419:3;14415:12;14408:19;;14067:366;;;:::o;14439:::-;14581:3;14602:67;14666:2;14661:3;14602:67;:::i;:::-;14595:74;;14678:93;14767:3;14678:93;:::i;:::-;14796:2;14791:3;14787:12;14780:19;;14439:366;;;:::o;14811:::-;14953:3;14974:67;15038:2;15033:3;14974:67;:::i;:::-;14967:74;;15050:93;15139:3;15050:93;:::i;:::-;15168:2;15163:3;15159:12;15152:19;;14811:366;;;:::o;15183:::-;15325:3;15346:67;15410:2;15405:3;15346:67;:::i;:::-;15339:74;;15422:93;15511:3;15422:93;:::i;:::-;15540:2;15535:3;15531:12;15524:19;;15183:366;;;:::o;15555:398::-;15714:3;15735:83;15816:1;15811:3;15735:83;:::i;:::-;15728:90;;15827:93;15916:3;15827:93;:::i;:::-;15945:1;15940:3;15936:11;15929:18;;15555:398;;;:::o;15959:366::-;16101:3;16122:67;16186:2;16181:3;16122:67;:::i;:::-;16115:74;;16198:93;16287:3;16198:93;:::i;:::-;16316:2;16311:3;16307:12;16300:19;;15959:366;;;:::o;16331:::-;16473:3;16494:67;16558:2;16553:3;16494:67;:::i;:::-;16487:74;;16570:93;16659:3;16570:93;:::i;:::-;16688:2;16683:3;16679:12;16672:19;;16331:366;;;:::o;16703:::-;16845:3;16866:67;16930:2;16925:3;16866:67;:::i;:::-;16859:74;;16942:93;17031:3;16942:93;:::i;:::-;17060:2;17055:3;17051:12;17044:19;;16703:366;;;:::o;17075:118::-;17162:24;17180:5;17162:24;:::i;:::-;17157:3;17150:37;17075:118;;:::o;17199:435::-;17379:3;17401:95;17492:3;17483:6;17401:95;:::i;:::-;17394:102;;17513:95;17604:3;17595:6;17513:95;:::i;:::-;17506:102;;17625:3;17618:10;;17199:435;;;;;:::o;17640:379::-;17824:3;17846:147;17989:3;17846:147;:::i;:::-;17839:154;;18010:3;18003:10;;17640:379;;;:::o;18025:222::-;18118:4;18156:2;18145:9;18141:18;18133:26;;18169:71;18237:1;18226:9;18222:17;18213:6;18169:71;:::i;:::-;18025:222;;;;:::o;18253:640::-;18448:4;18486:3;18475:9;18471:19;18463:27;;18500:71;18568:1;18557:9;18553:17;18544:6;18500:71;:::i;:::-;18581:72;18649:2;18638:9;18634:18;18625:6;18581:72;:::i;:::-;18663;18731:2;18720:9;18716:18;18707:6;18663:72;:::i;:::-;18782:9;18776:4;18772:20;18767:2;18756:9;18752:18;18745:48;18810:76;18881:4;18872:6;18810:76;:::i;:::-;18802:84;;18253:640;;;;;;;:::o;18899:210::-;18986:4;19024:2;19013:9;19009:18;19001:26;;19037:65;19099:1;19088:9;19084:17;19075:6;19037:65;:::i;:::-;18899:210;;;;:::o;19115:313::-;19228:4;19266:2;19255:9;19251:18;19243:26;;19315:9;19309:4;19305:20;19301:1;19290:9;19286:17;19279:47;19343:78;19416:4;19407:6;19343:78;:::i;:::-;19335:86;;19115:313;;;;:::o;19434:419::-;19600:4;19638:2;19627:9;19623:18;19615:26;;19687:9;19681:4;19677:20;19673:1;19662:9;19658:17;19651:47;19715:131;19841:4;19715:131;:::i;:::-;19707:139;;19434:419;;;:::o;19859:::-;20025:4;20063:2;20052:9;20048:18;20040:26;;20112:9;20106:4;20102:20;20098:1;20087:9;20083:17;20076:47;20140:131;20266:4;20140:131;:::i;:::-;20132:139;;19859:419;;;:::o;20284:::-;20450:4;20488:2;20477:9;20473:18;20465:26;;20537:9;20531:4;20527:20;20523:1;20512:9;20508:17;20501:47;20565:131;20691:4;20565:131;:::i;:::-;20557:139;;20284:419;;;:::o;20709:::-;20875:4;20913:2;20902:9;20898:18;20890:26;;20962:9;20956:4;20952:20;20948:1;20937:9;20933:17;20926:47;20990:131;21116:4;20990:131;:::i;:::-;20982:139;;20709:419;;;:::o;21134:::-;21300:4;21338:2;21327:9;21323:18;21315:26;;21387:9;21381:4;21377:20;21373:1;21362:9;21358:17;21351:47;21415:131;21541:4;21415:131;:::i;:::-;21407:139;;21134:419;;;:::o;21559:::-;21725:4;21763:2;21752:9;21748:18;21740:26;;21812:9;21806:4;21802:20;21798:1;21787:9;21783:17;21776:47;21840:131;21966:4;21840:131;:::i;:::-;21832:139;;21559:419;;;:::o;21984:::-;22150:4;22188:2;22177:9;22173:18;22165:26;;22237:9;22231:4;22227:20;22223:1;22212:9;22208:17;22201:47;22265:131;22391:4;22265:131;:::i;:::-;22257:139;;21984:419;;;:::o;22409:::-;22575:4;22613:2;22602:9;22598:18;22590:26;;22662:9;22656:4;22652:20;22648:1;22637:9;22633:17;22626:47;22690:131;22816:4;22690:131;:::i;:::-;22682:139;;22409:419;;;:::o;22834:::-;23000:4;23038:2;23027:9;23023:18;23015:26;;23087:9;23081:4;23077:20;23073:1;23062:9;23058:17;23051:47;23115:131;23241:4;23115:131;:::i;:::-;23107:139;;22834:419;;;:::o;23259:::-;23425:4;23463:2;23452:9;23448:18;23440:26;;23512:9;23506:4;23502:20;23498:1;23487:9;23483:17;23476:47;23540:131;23666:4;23540:131;:::i;:::-;23532:139;;23259:419;;;:::o;23684:::-;23850:4;23888:2;23877:9;23873:18;23865:26;;23937:9;23931:4;23927:20;23923:1;23912:9;23908:17;23901:47;23965:131;24091:4;23965:131;:::i;:::-;23957:139;;23684:419;;;:::o;24109:::-;24275:4;24313:2;24302:9;24298:18;24290:26;;24362:9;24356:4;24352:20;24348:1;24337:9;24333:17;24326:47;24390:131;24516:4;24390:131;:::i;:::-;24382:139;;24109:419;;;:::o;24534:::-;24700:4;24738:2;24727:9;24723:18;24715:26;;24787:9;24781:4;24777:20;24773:1;24762:9;24758:17;24751:47;24815:131;24941:4;24815:131;:::i;:::-;24807:139;;24534:419;;;:::o;24959:::-;25125:4;25163:2;25152:9;25148:18;25140:26;;25212:9;25206:4;25202:20;25198:1;25187:9;25183:17;25176:47;25240:131;25366:4;25240:131;:::i;:::-;25232:139;;24959:419;;;:::o;25384:222::-;25477:4;25515:2;25504:9;25500:18;25492:26;;25528:71;25596:1;25585:9;25581:17;25572:6;25528:71;:::i;:::-;25384:222;;;;:::o;25612:129::-;25646:6;25673:20;;:::i;:::-;25663:30;;25702:33;25730:4;25722:6;25702:33;:::i;:::-;25612:129;;;:::o;25747:75::-;25780:6;25813:2;25807:9;25797:19;;25747:75;:::o;25828:307::-;25889:4;25979:18;25971:6;25968:30;25965:56;;;26001:18;;:::i;:::-;25965:56;26039:29;26061:6;26039:29;:::i;:::-;26031:37;;26123:4;26117;26113:15;26105:23;;25828:307;;;:::o;26141:308::-;26203:4;26293:18;26285:6;26282:30;26279:56;;;26315:18;;:::i;:::-;26279:56;26353:29;26375:6;26353:29;:::i;:::-;26345:37;;26437:4;26431;26427:15;26419:23;;26141:308;;;:::o;26455:98::-;26506:6;26540:5;26534:12;26524:22;;26455:98;;;:::o;26559:99::-;26611:6;26645:5;26639:12;26629:22;;26559:99;;;:::o;26664:168::-;26747:11;26781:6;26776:3;26769:19;26821:4;26816:3;26812:14;26797:29;;26664:168;;;;:::o;26838:147::-;26939:11;26976:3;26961:18;;26838:147;;;;:::o;26991:169::-;27075:11;27109:6;27104:3;27097:19;27149:4;27144:3;27140:14;27125:29;;26991:169;;;;:::o;27166:148::-;27268:11;27305:3;27290:18;;27166:148;;;;:::o;27320:305::-;27360:3;27379:20;27397:1;27379:20;:::i;:::-;27374:25;;27413:20;27431:1;27413:20;:::i;:::-;27408:25;;27567:1;27499:66;27495:74;27492:1;27489:81;27486:107;;;27573:18;;:::i;:::-;27486:107;27617:1;27614;27610:9;27603:16;;27320:305;;;;:::o;27631:348::-;27671:7;27694:20;27712:1;27694:20;:::i;:::-;27689:25;;27728:20;27746:1;27728:20;:::i;:::-;27723:25;;27916:1;27848:66;27844:74;27841:1;27838:81;27833:1;27826:9;27819:17;27815:105;27812:131;;;27923:18;;:::i;:::-;27812:131;27971:1;27968;27964:9;27953:20;;27631:348;;;;:::o;27985:96::-;28022:7;28051:24;28069:5;28051:24;:::i;:::-;28040:35;;27985:96;;;:::o;28087:90::-;28121:7;28164:5;28157:13;28150:21;28139:32;;28087:90;;;:::o;28183:149::-;28219:7;28259:66;28252:5;28248:78;28237:89;;28183:149;;;:::o;28338:126::-;28375:7;28415:42;28408:5;28404:54;28393:65;;28338:126;;;:::o;28470:77::-;28507:7;28536:5;28525:16;;28470:77;;;:::o;28553:86::-;28588:7;28628:4;28621:5;28617:16;28606:27;;28553:86;;;:::o;28645:154::-;28729:6;28724:3;28719;28706:30;28791:1;28782:6;28777:3;28773:16;28766:27;28645:154;;;:::o;28805:307::-;28873:1;28883:113;28897:6;28894:1;28891:13;28883:113;;;28982:1;28977:3;28973:11;28967:18;28963:1;28958:3;28954:11;28947:39;28919:2;28916:1;28912:10;28907:15;;28883:113;;;29014:6;29011:1;29008:13;29005:101;;;29094:1;29085:6;29080:3;29076:16;29069:27;29005:101;28854:258;28805:307;;;:::o;29118:320::-;29162:6;29199:1;29193:4;29189:12;29179:22;;29246:1;29240:4;29236:12;29267:18;29257:81;;29323:4;29315:6;29311:17;29301:27;;29257:81;29385:2;29377:6;29374:14;29354:18;29351:38;29348:84;;;29404:18;;:::i;:::-;29348:84;29169:269;29118:320;;;:::o;29444:281::-;29527:27;29549:4;29527:27;:::i;:::-;29519:6;29515:40;29657:6;29645:10;29642:22;29621:18;29609:10;29606:34;29603:62;29600:88;;;29668:18;;:::i;:::-;29600:88;29708:10;29704:2;29697:22;29487:238;29444:281;;:::o;29731:233::-;29770:3;29793:24;29811:5;29793:24;:::i;:::-;29784:33;;29839:66;29832:5;29829:77;29826:103;;;29909:18;;:::i;:::-;29826:103;29956:1;29949:5;29945:13;29938:20;;29731:233;;;:::o;29970:180::-;30018:77;30015:1;30008:88;30115:4;30112:1;30105:15;30139:4;30136:1;30129:15;30156:180;30204:77;30201:1;30194:88;30301:4;30298:1;30291:15;30325:4;30322:1;30315:15;30342:180;30390:77;30387:1;30380:88;30487:4;30484:1;30477:15;30511:4;30508:1;30501:15;30528:180;30576:77;30573:1;30566:88;30673:4;30670:1;30663:15;30697:4;30694:1;30687:15;30714:117;30823:1;30820;30813:12;30837:117;30946:1;30943;30936:12;30960:117;31069:1;31066;31059:12;31083:117;31192:1;31189;31182:12;31206:117;31315:1;31312;31305:12;31329:117;31438:1;31435;31428:12;31452:102;31493:6;31544:2;31540:7;31535:2;31528:5;31524:14;31520:28;31510:38;;31452:102;;;:::o;31560:170::-;31700:22;31696:1;31688:6;31684:14;31677:46;31560:170;:::o;31736:225::-;31876:34;31872:1;31864:6;31860:14;31853:58;31945:8;31940:2;31932:6;31928:15;31921:33;31736:225;:::o;31967:178::-;32107:30;32103:1;32095:6;32091:14;32084:54;31967:178;:::o;32151:225::-;32291:34;32287:1;32279:6;32275:14;32268:58;32360:8;32355:2;32347:6;32343:15;32336:33;32151:225;:::o;32382:166::-;32522:18;32518:1;32510:6;32506:14;32499:42;32382:166;:::o;32554:172::-;32694:24;32690:1;32682:6;32678:14;32671:48;32554:172;:::o;32732:223::-;32872:34;32868:1;32860:6;32856:14;32849:58;32941:6;32936:2;32928:6;32924:15;32917:31;32732:223;:::o;32961:182::-;33101:34;33097:1;33089:6;33085:14;33078:58;32961:182;:::o;33149:172::-;33289:24;33285:1;33277:6;33273:14;33266:48;33149:172;:::o;33327:169::-;33467:21;33463:1;33455:6;33451:14;33444:45;33327:169;:::o;33502:227::-;33642:34;33638:1;33630:6;33626:14;33619:58;33711:10;33706:2;33698:6;33694:15;33687:35;33502:227;:::o;33735:114::-;;:::o;33855:168::-;33995:20;33991:1;33983:6;33979:14;33972:44;33855:168;:::o;34029:173::-;34169:25;34165:1;34157:6;34153:14;34146:49;34029:173;:::o;34208:177::-;34348:29;34344:1;34336:6;34332:14;34325:53;34208:177;:::o;34391:122::-;34464:24;34482:5;34464:24;:::i;:::-;34457:5;34454:35;34444:63;;34503:1;34500;34493:12;34444:63;34391:122;:::o;34519:116::-;34589:21;34604:5;34589:21;:::i;:::-;34582:5;34579:32;34569:60;;34625:1;34622;34615:12;34569:60;34519:116;:::o;34641:120::-;34713:23;34730:5;34713:23;:::i;:::-;34706:5;34703:34;34693:62;;34751:1;34748;34741:12;34693:62;34641:120;:::o;34767:122::-;34840:24;34858:5;34840:24;:::i;:::-;34833:5;34830:35;34820:63;;34879:1;34876;34869:12;34820:63;34767:122;:::o;34895:118::-;34966:22;34982:5;34966:22;:::i;:::-;34959:5;34956:33;34946:61;;35003:1;35000;34993:12;34946:61;34895:118;:::o

Swarm Source

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