ETH Price: $3,351.25 (+0.14%)
 

Overview

Max Total Supply

1,000 RAXxAlex

Holders

997

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
888dw.eth
Balance
1 RAXxAlex
0x4fd787803db60816f16b121cc7c5637263f1736f
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:
Rax

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-26
*/

// SPDX-License-Identifier: UNLICENSED
// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File src/IERC721A.sol

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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;

    /**
     * @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;

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

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

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

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

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

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

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

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

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

// File src/ERC721A.sol

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) public 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 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 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 virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File src/Rax.sol

pragma solidity ^0.8.4;

// ERC721A so we can make approve function virtual

error CallerNotOwner();
error OwnerAlreadySet();
error MaxMintPerTx();
error MaxSupplyReached();
error TransferWhilePaused();
error UnauthorisedOperator();

contract Rax is ERC721A {
    address private _owner;

    // baseURI with trailing slash.
    string public baseURI =
        'https://ipfs.filebase.io/ipfs/Qmdm4ruyfrjL7c3LLQX2oSBJHF9xGdr7R7cMEDjP9wJ9Xz/';

    // MAX NUMBER OF NFTs PER TRANSACTION
    uint8 MAX_MINT_PER_TRANSACTION = 100;

    // MAX NFTs available
    uint16 MAX_NFTs = 1000;

    // pauses transfers and sales
    // minting and burning are always allowed
    bool private _paused = true;

    // authorised Operators list
    address[] private authorisedOperators;

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

    constructor() ERC721A('RAX x Alex Midler', 'RAXxAlex') {
        _owner = msg.sender;

        emit OwnershipTransferred(address(0), _owner);
    }

    modifier onlyOwner() {
        if (msg.sender != _owner) revert CallerNotOwner();
        _;
    }

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

    function batchMint(address[] memory receivers) external onlyOwner {
        if (totalSupply() + receivers.length > MAX_NFTs)
            revert MaxSupplyReached();
        if (receivers.length > MAX_MINT_PER_TRANSACTION) revert MaxMintPerTx();

        for (uint8 i = 0; i < receivers.length; i++) {
            _safeMint(receivers[i], 1);
        }
    }

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

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

    function transferOwnership(address to) external onlyOwner {
        if (_owner == to) revert OwnerAlreadySet();
        address oldOwner = _owner;
        _owner = to;
        emit OwnershipTransferred(oldOwner, to);
    }

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

    function setPaused(bool paused) external onlyOwner {
        _paused = paused;
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);

        if (from != address(0) && to != address(0)) {
            if (_paused) revert TransferWhilePaused();
        }
    }

    function addAuthorisedOperator(address[] calldata operators)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < operators.length; i++) {
            authorisedOperators.push(operators[i]);
        }
    }

    function removeOperator(address operator) external onlyOwner {
        address[] memory filteredOperators;
        uint256 count = 0;

        for (uint256 i = 0; i < authorisedOperators.length; i++) {
            if (authorisedOperators[i] != operator) {
                filteredOperators[count] = authorisedOperators[i];
                count++;
            }
        }

        authorisedOperators = filteredOperators;
    }

    function isAuthorisedOperator(address operator)
        public
        view
        onlyOwner
        returns (bool)
    {
        for (uint256 i = 0; i < authorisedOperators.length; i++) {
            if (operator == authorisedOperators[i]) {
                return true;
            }
        }

        return false;
    }

    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        if (approved) {
            if (!isAuthorisedOperator(operator)) revert UnauthorisedOperator();
        }
        super.setApprovalForAll(operator, approved);
    }

    function approve(address to, uint256 tokenId) public override {
        if (to != address(0)) {
            if (!isAuthorisedOperator(to)) revert UnauthorisedOperator();
        }
        super.approve(to, tokenId);
    }

    function burn(uint256 tokenId) public virtual {
        _burn(tokenId, true);
    }
}

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":"CallerNotOwner","type":"error"},{"inputs":[],"name":"MaxMintPerTx","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerAlreadySet","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":"TransferWhilePaused","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"UnauthorisedOperator","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"operators","type":"address[]"}],"name":"addAuthorisedOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","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":"receivers","type":"address[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":[{"internalType":"address","name":"operator","type":"address"}],"name":"isAuthorisedOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"removeOperator","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":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setPaused","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280604d815260200162003391604d913960099080519060200190620000359291906200021d565b506064600a60006101000a81548160ff021916908360ff1602179055506103e8600a60016101000a81548161ffff021916908361ffff1602179055506001600a60036101000a81548160ff0219169083151502179055503480156200009957600080fd5b506040518060400160405280601181526020017f524158207820416c6578204d69646c65720000000000000000000000000000008152506040518060400160405280600881526020017f52415878416c657800000000000000000000000000000000000000000000000081525081600290805190602001906200011e9291906200021d565b508060039080519060200190620001379291906200021d565b50620001486200021460201b60201c565b600081905550505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a362000332565b60006001905090565b8280546200022b90620002cd565b90600052602060002090601f0160209004810192826200024f57600085556200029b565b82601f106200026a57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029a5782518255916020019190600101906200027d565b5b509050620002aa9190620002ae565b5090565b5b80821115620002c9576000816000905550600101620002af565b5090565b60006002820490506001821680620002e657607f821691505b60208210811415620002fd57620002fc62000303565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61304f80620003426000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063bc30d7641161007c578063bc30d764146103af578063c87b56dd146103df578063d67b06c11461040f578063df0b66371461042b578063e985e9c514610447578063f2fde38b1461047757610158565b806370a08231146102ef57806395d89b411461031f578063a22cb4651461033d578063ac8a584a14610359578063b187bd2614610375578063b88d4fde1461039357610158565b806323b872dd1161011557806323b872dd1461023157806342842e0e1461024d57806342966c681461026957806355f804b3146102855780636352211e146102a15780636c0360eb146102d157610158565b806301ffc9a71461015d57806306fdde031461018d578063081812fc146101ab578063095ea7b3146101db57806316c38b3c146101f757806318160ddd14610213575b600080fd5b610177600480360381019061017291906129cb565b610493565b6040516101849190612be2565b60405180910390f35b610195610525565b6040516101a29190612bfd565b60405180910390f35b6101c560048036038101906101c09190612a5e565b6105b7565b6040516101d29190612b7b565b60405180910390f35b6101f560048036038101906101f091906128e0565b610636565b005b610211600480360381019061020c91906129a2565b6106b8565b005b61021b61075c565b6040516102289190612c1f565b60405180910390f35b61024b600480360381019061024691906127da565b610773565b005b610267600480360381019061026291906127da565b610a98565b005b610283600480360381019061027e9190612a5e565b610ab8565b005b61029f600480360381019061029a9190612a1d565b610ac6565b005b6102bb60048036038101906102b69190612a5e565b610b67565b6040516102c89190612b7b565b60405180910390f35b6102d9610b79565b6040516102e69190612bfd565b60405180910390f35b61030960048036038101906103049190612775565b610c07565b6040516103169190612c1f565b60405180910390f35b610327610cc0565b6040516103349190612bfd565b60405180910390f35b610357600480360381019061035291906128a4565b610d52565b005b610373600480360381019061036e9190612775565b610da6565b005b61037d610fee565b60405161038a9190612be2565b60405180910390f35b6103ad60048036038101906103a89190612829565b611005565b005b6103c960048036038101906103c49190612775565b611078565b6040516103d69190612be2565b60405180910390f35b6103f960048036038101906103f49190612a5e565b6111d1565b6040516104069190612bfd565b60405180910390f35b61042960048036038101906104249190612961565b611270565b005b6104456004803603810190610440919061291c565b611419565b005b610461600480360381019061045c919061279e565b611576565b60405161046e9190612be2565b60405180910390f35b610491600480360381019061048c9190612775565b61160a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ee57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061051e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461053490612e49565b80601f016020809104026020016040519081016040528092919081815260200182805461056090612e49565b80156105ad5780601f10610582576101008083540402835291602001916105ad565b820191906000526020600020905b81548152906001019060200180831161059057829003601f168201915b5050505050905090565b60006105c2826117df565b6105f8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146106aa5761067382611078565b6106a9576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6106b4828261183e565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461073f576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60036101000a81548160ff02191690831515021790555050565b6000610766611982565b6001546000540303905090565b600061077e8261198b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107e5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806107f184611a59565b915091506108078187610802611a80565b611a88565b6108535761081c86610817611a80565b611576565b610852576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156108ba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108c78686866001611acc565b80156108d257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506109a08561097c888887611b95565b7c020000000000000000000000000000000000000000000000000000000017611bbd565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610a28576000600185019050600060046000838152602001908152602001600020541415610a26576000548114610a25578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a908686866001611be8565b505050505050565b610ab383838360405180602001604052806000815250611005565b505050565b610ac3816001611bee565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b4d576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060099080519060200190610b6392919061242f565b5050565b6000610b728261198b565b9050919050565b60098054610b8690612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb290612e49565b8015610bff5780601f10610bd457610100808354040283529160200191610bff565b820191906000526020600020905b815481529060010190602001808311610be257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c6f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610ccf90612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfb90612e49565b8015610d485780601f10610d1d57610100808354040283529160200191610d48565b820191906000526020600020905b815481529060010190602001808311610d2b57829003601f168201915b5050505050905090565b8015610d9857610d6182611078565b610d97576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610da28282611e42565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e2d576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60606000805b600b80549050811015610fd1578373ffffffffffffffffffffffffffffffffffffffff16600b8281548110610e91577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fbe57600b8181548110610f11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838381518110610f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508180610fba90612eac565b9250505b8080610fc990612eac565b915050610e33565b5081600b9080519060200190610fe89291906124b5565b50505050565b6000600a60039054906101000a900460ff16905090565b611010848484610773565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110725761103b84848484611f4d565b611071576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611101576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b600b805490508110156111c657600b818154811061114b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111b35760019150506111cc565b80806111be90612eac565b915050611104565b50600090505b919050565b60606111dc826117df565b611212576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061121c6120ad565b905060008151141561123d5760405180602001604052806000815250611268565b806112478461213f565b604051602001611258929190612b57565b6040516020818303038152906040525b915050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60019054906101000a900461ffff1661ffff16815161131661075c565b6113209190612d30565b1115611358576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60009054906101000a900460ff1660ff16815111156113a5576040517f823903a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81518160ff16101561141557611402828260ff16815181106113f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001612198565b808061140d90612ef5565b9150506113a8565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a0576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8282905081101561157157600b8383838181106114e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906114fe9190612775565b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808061156990612eac565b9150506114a3565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611691576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611719576040517fcf04b1bb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000816117ea611982565b111580156117f9575060005482105b8015611837575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061184982610b67565b90508073ffffffffffffffffffffffffffffffffffffffff1661186a611a80565b73ffffffffffffffffffffffffffffffffffffffff16146118cd5761189681611891611a80565b611576565b6118cc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000808290508061199a611982565b11611a2257600054811015611a215760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a1f575b6000811415611a155760046000836001900393508381526020019081526020016000205490506119ea565b8092505050611a54565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b611ad8848484846121b6565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611b425750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611b8f57600a60039054906101000a900460ff1615611b8e576040517f6c24c30100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60008060e883901c905060e8611bac8686846121bc565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611bf98361198b565b90506000819050600080611c0c86611a59565b915091508415611c7557611c288184611c23611a80565b611a88565b611c7457611c3d83611c38611a80565b611576565b611c73576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611c83836000886001611acc565b8015611c8e57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d3683611cf385600088611b95565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611bbd565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415611dbe576000600187019050600060046000838152602001908152602001600020541415611dbc576000548114611dbb578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e28836000886001611be8565b600160008154809291906001019190505550505050505050565b8060076000611e4f611a80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611efc611a80565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f419190612be2565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f73611a80565b8786866040518563ffffffff1660e01b8152600401611f959493929190612b96565b602060405180830381600087803b158015611faf57600080fd5b505af1925050508015611fe057506040513d601f19601f82011682018060405250810190611fdd91906129f4565b60015b61205a573d8060008114612010576040519150601f19603f3d011682016040523d82523d6000602084013e612015565b606091505b50600081511415612052576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546120bc90612e49565b80601f01602080910402602001604051908101604052809291908181526020018280546120e890612e49565b80156121355780601f1061210a57610100808354040283529160200191612135565b820191906000526020600020905b81548152906001019060200180831161211857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561218357600184039350600a81066030018453600a810490508061217e57612183565b612158565b50828103602084039350808452505050919050565b6121b28282604051806020016040528060008152506121c5565b5050565b50505050565b60009392505050565b6121cf8383612262565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461225d57600080549050600083820390505b61220f6000868380600101945086611f4d565b612245576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121fc57816000541461225a57600080fd5b50505b505050565b60008054905060008214156122a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b06000848385611acc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612327836123186000866000611b95565b6123218561241f565b17611bbd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123c857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061238d565b506000821415612404576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061241a6000848385611be8565b505050565b60006001821460e11b9050919050565b82805461243b90612e49565b90600052602060002090601f01602090048101928261245d57600085556124a4565b82601f1061247657805160ff19168380011785556124a4565b828001600101855582156124a4579182015b828111156124a3578251825591602001919060010190612488565b5b5090506124b1919061253f565b5090565b82805482825590600052602060002090810192821561252e579160200282015b8281111561252d5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906124d5565b5b50905061253b919061253f565b5090565b5b80821115612558576000816000905550600101612540565b5090565b600061256f61256a84612c5f565b612c3a565b9050808382526020820190508285602086028201111561258e57600080fd5b60005b858110156125be57816125a48882612644565b845260208401935060208301925050600181019050612591565b5050509392505050565b60006125db6125d684612c8b565b612c3a565b9050828152602081018484840111156125f357600080fd5b6125fe848285612e07565b509392505050565b600061261961261484612cbc565b612c3a565b90508281526020810184848401111561263157600080fd5b61263c848285612e07565b509392505050565b60008135905061265381612fbd565b92915050565b60008083601f84011261266b57600080fd5b8235905067ffffffffffffffff81111561268457600080fd5b60208301915083602082028301111561269c57600080fd5b9250929050565b600082601f8301126126b457600080fd5b81356126c484826020860161255c565b91505092915050565b6000813590506126dc81612fd4565b92915050565b6000813590506126f181612feb565b92915050565b60008151905061270681612feb565b92915050565b600082601f83011261271d57600080fd5b813561272d8482602086016125c8565b91505092915050565b600082601f83011261274757600080fd5b8135612757848260208601612606565b91505092915050565b60008135905061276f81613002565b92915050565b60006020828403121561278757600080fd5b600061279584828501612644565b91505092915050565b600080604083850312156127b157600080fd5b60006127bf85828601612644565b92505060206127d085828601612644565b9150509250929050565b6000806000606084860312156127ef57600080fd5b60006127fd86828701612644565b935050602061280e86828701612644565b925050604061281f86828701612760565b9150509250925092565b6000806000806080858703121561283f57600080fd5b600061284d87828801612644565b945050602061285e87828801612644565b935050604061286f87828801612760565b925050606085013567ffffffffffffffff81111561288c57600080fd5b6128988782880161270c565b91505092959194509250565b600080604083850312156128b757600080fd5b60006128c585828601612644565b92505060206128d6858286016126cd565b9150509250929050565b600080604083850312156128f357600080fd5b600061290185828601612644565b925050602061291285828601612760565b9150509250929050565b6000806020838503121561292f57600080fd5b600083013567ffffffffffffffff81111561294957600080fd5b61295585828601612659565b92509250509250929050565b60006020828403121561297357600080fd5b600082013567ffffffffffffffff81111561298d57600080fd5b612999848285016126a3565b91505092915050565b6000602082840312156129b457600080fd5b60006129c2848285016126cd565b91505092915050565b6000602082840312156129dd57600080fd5b60006129eb848285016126e2565b91505092915050565b600060208284031215612a0657600080fd5b6000612a14848285016126f7565b91505092915050565b600060208284031215612a2f57600080fd5b600082013567ffffffffffffffff811115612a4957600080fd5b612a5584828501612736565b91505092915050565b600060208284031215612a7057600080fd5b6000612a7e84828501612760565b91505092915050565b612a9081612d86565b82525050565b612a9f81612d98565b82525050565b6000612ab082612ced565b612aba8185612d03565b9350612aca818560208601612e16565b612ad381612fac565b840191505092915050565b6000612ae982612cf8565b612af38185612d14565b9350612b03818560208601612e16565b612b0c81612fac565b840191505092915050565b6000612b2282612cf8565b612b2c8185612d25565b9350612b3c818560208601612e16565b80840191505092915050565b612b5181612df0565b82525050565b6000612b638285612b17565b9150612b6f8284612b17565b91508190509392505050565b6000602082019050612b906000830184612a87565b92915050565b6000608082019050612bab6000830187612a87565b612bb86020830186612a87565b612bc56040830185612b48565b8181036060830152612bd78184612aa5565b905095945050505050565b6000602082019050612bf76000830184612a96565b92915050565b60006020820190508181036000830152612c178184612ade565b905092915050565b6000602082019050612c346000830184612b48565b92915050565b6000612c44612c55565b9050612c508282612e7b565b919050565b6000604051905090565b600067ffffffffffffffff821115612c7a57612c79612f7d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612ca657612ca5612f7d565b5b612caf82612fac565b9050602081019050919050565b600067ffffffffffffffff821115612cd757612cd6612f7d565b5b612ce082612fac565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d3b82612df0565b9150612d4683612df0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7b57612d7a612f1f565b5b828201905092915050565b6000612d9182612dd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612e34578082015181840152602081019050612e19565b83811115612e43576000848401525b50505050565b60006002820490506001821680612e6157607f821691505b60208210811415612e7557612e74612f4e565b5b50919050565b612e8482612fac565b810181811067ffffffffffffffff82111715612ea357612ea2612f7d565b5b80604052505050565b6000612eb782612df0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612eea57612ee9612f1f565b5b600182019050919050565b6000612f0082612dfa565b915060ff821415612f1457612f13612f1f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b612fc681612d86565b8114612fd157600080fd5b50565b612fdd81612d98565b8114612fe857600080fd5b50565b612ff481612da4565b8114612fff57600080fd5b50565b61300b81612df0565b811461301657600080fd5b5056fea2646970667358221220bc5c2336e7f7a2375af6c81f6a06d7032e2545f24850fbd0e3d33351a2c88fc364736f6c6343000804003368747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d646d3472757966726a4c3763334c4c5158326f53424a48463978476472375237634d45446a5039774a39587a2f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063bc30d7641161007c578063bc30d764146103af578063c87b56dd146103df578063d67b06c11461040f578063df0b66371461042b578063e985e9c514610447578063f2fde38b1461047757610158565b806370a08231146102ef57806395d89b411461031f578063a22cb4651461033d578063ac8a584a14610359578063b187bd2614610375578063b88d4fde1461039357610158565b806323b872dd1161011557806323b872dd1461023157806342842e0e1461024d57806342966c681461026957806355f804b3146102855780636352211e146102a15780636c0360eb146102d157610158565b806301ffc9a71461015d57806306fdde031461018d578063081812fc146101ab578063095ea7b3146101db57806316c38b3c146101f757806318160ddd14610213575b600080fd5b610177600480360381019061017291906129cb565b610493565b6040516101849190612be2565b60405180910390f35b610195610525565b6040516101a29190612bfd565b60405180910390f35b6101c560048036038101906101c09190612a5e565b6105b7565b6040516101d29190612b7b565b60405180910390f35b6101f560048036038101906101f091906128e0565b610636565b005b610211600480360381019061020c91906129a2565b6106b8565b005b61021b61075c565b6040516102289190612c1f565b60405180910390f35b61024b600480360381019061024691906127da565b610773565b005b610267600480360381019061026291906127da565b610a98565b005b610283600480360381019061027e9190612a5e565b610ab8565b005b61029f600480360381019061029a9190612a1d565b610ac6565b005b6102bb60048036038101906102b69190612a5e565b610b67565b6040516102c89190612b7b565b60405180910390f35b6102d9610b79565b6040516102e69190612bfd565b60405180910390f35b61030960048036038101906103049190612775565b610c07565b6040516103169190612c1f565b60405180910390f35b610327610cc0565b6040516103349190612bfd565b60405180910390f35b610357600480360381019061035291906128a4565b610d52565b005b610373600480360381019061036e9190612775565b610da6565b005b61037d610fee565b60405161038a9190612be2565b60405180910390f35b6103ad60048036038101906103a89190612829565b611005565b005b6103c960048036038101906103c49190612775565b611078565b6040516103d69190612be2565b60405180910390f35b6103f960048036038101906103f49190612a5e565b6111d1565b6040516104069190612bfd565b60405180910390f35b61042960048036038101906104249190612961565b611270565b005b6104456004803603810190610440919061291c565b611419565b005b610461600480360381019061045c919061279e565b611576565b60405161046e9190612be2565b60405180910390f35b610491600480360381019061048c9190612775565b61160a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ee57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061051e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461053490612e49565b80601f016020809104026020016040519081016040528092919081815260200182805461056090612e49565b80156105ad5780601f10610582576101008083540402835291602001916105ad565b820191906000526020600020905b81548152906001019060200180831161059057829003601f168201915b5050505050905090565b60006105c2826117df565b6105f8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146106aa5761067382611078565b6106a9576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6106b4828261183e565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461073f576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60036101000a81548160ff02191690831515021790555050565b6000610766611982565b6001546000540303905090565b600061077e8261198b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146107e5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806107f184611a59565b915091506108078187610802611a80565b611a88565b6108535761081c86610817611a80565b611576565b610852576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156108ba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108c78686866001611acc565b80156108d257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506109a08561097c888887611b95565b7c020000000000000000000000000000000000000000000000000000000017611bbd565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610a28576000600185019050600060046000838152602001908152602001600020541415610a26576000548114610a25578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a908686866001611be8565b505050505050565b610ab383838360405180602001604052806000815250611005565b505050565b610ac3816001611bee565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b4d576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060099080519060200190610b6392919061242f565b5050565b6000610b728261198b565b9050919050565b60098054610b8690612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb290612e49565b8015610bff5780601f10610bd457610100808354040283529160200191610bff565b820191906000526020600020905b815481529060010190602001808311610be257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c6f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610ccf90612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfb90612e49565b8015610d485780601f10610d1d57610100808354040283529160200191610d48565b820191906000526020600020905b815481529060010190602001808311610d2b57829003601f168201915b5050505050905090565b8015610d9857610d6182611078565b610d97576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610da28282611e42565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e2d576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60606000805b600b80549050811015610fd1578373ffffffffffffffffffffffffffffffffffffffff16600b8281548110610e91577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fbe57600b8181548110610f11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838381518110610f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508180610fba90612eac565b9250505b8080610fc990612eac565b915050610e33565b5081600b9080519060200190610fe89291906124b5565b50505050565b6000600a60039054906101000a900460ff16905090565b611010848484610773565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110725761103b84848484611f4d565b611071576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611101576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b600b805490508110156111c657600b818154811061114b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111b35760019150506111cc565b80806111be90612eac565b915050611104565b50600090505b919050565b60606111dc826117df565b611212576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061121c6120ad565b905060008151141561123d5760405180602001604052806000815250611268565b806112478461213f565b604051602001611258929190612b57565b6040516020818303038152906040525b915050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60019054906101000a900461ffff1661ffff16815161131661075c565b6113209190612d30565b1115611358576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60009054906101000a900460ff1660ff16815111156113a5576040517f823903a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81518160ff16101561141557611402828260ff16815181106113f3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001612198565b808061140d90612ef5565b9150506113a8565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a0576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8282905081101561157157600b8383838181106114e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906114fe9190612775565b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808061156990612eac565b9150506114a3565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611691576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611719576040517fcf04b1bb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000816117ea611982565b111580156117f9575060005482105b8015611837575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061184982610b67565b90508073ffffffffffffffffffffffffffffffffffffffff1661186a611a80565b73ffffffffffffffffffffffffffffffffffffffff16146118cd5761189681611891611a80565b611576565b6118cc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000808290508061199a611982565b11611a2257600054811015611a215760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a1f575b6000811415611a155760046000836001900393508381526020019081526020016000205490506119ea565b8092505050611a54565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b611ad8848484846121b6565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611b425750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611b8f57600a60039054906101000a900460ff1615611b8e576040517f6c24c30100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60008060e883901c905060e8611bac8686846121bc565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611bf98361198b565b90506000819050600080611c0c86611a59565b915091508415611c7557611c288184611c23611a80565b611a88565b611c7457611c3d83611c38611a80565b611576565b611c73576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611c83836000886001611acc565b8015611c8e57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d3683611cf385600088611b95565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611bbd565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415611dbe576000600187019050600060046000838152602001908152602001600020541415611dbc576000548114611dbb578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e28836000886001611be8565b600160008154809291906001019190505550505050505050565b8060076000611e4f611a80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611efc611a80565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f419190612be2565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f73611a80565b8786866040518563ffffffff1660e01b8152600401611f959493929190612b96565b602060405180830381600087803b158015611faf57600080fd5b505af1925050508015611fe057506040513d601f19601f82011682018060405250810190611fdd91906129f4565b60015b61205a573d8060008114612010576040519150601f19603f3d011682016040523d82523d6000602084013e612015565b606091505b50600081511415612052576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546120bc90612e49565b80601f01602080910402602001604051908101604052809291908181526020018280546120e890612e49565b80156121355780601f1061210a57610100808354040283529160200191612135565b820191906000526020600020905b81548152906001019060200180831161211857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561218357600184039350600a81066030018453600a810490508061217e57612183565b612158565b50828103602084039350808452505050919050565b6121b28282604051806020016040528060008152506121c5565b5050565b50505050565b60009392505050565b6121cf8383612262565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461225d57600080549050600083820390505b61220f6000868380600101945086611f4d565b612245576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121fc57816000541461225a57600080fd5b50505b505050565b60008054905060008214156122a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b06000848385611acc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612327836123186000866000611b95565b6123218561241f565b17611bbd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123c857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061238d565b506000821415612404576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061241a6000848385611be8565b505050565b60006001821460e11b9050919050565b82805461243b90612e49565b90600052602060002090601f01602090048101928261245d57600085556124a4565b82601f1061247657805160ff19168380011785556124a4565b828001600101855582156124a4579182015b828111156124a3578251825591602001919060010190612488565b5b5090506124b1919061253f565b5090565b82805482825590600052602060002090810192821561252e579160200282015b8281111561252d5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906124d5565b5b50905061253b919061253f565b5090565b5b80821115612558576000816000905550600101612540565b5090565b600061256f61256a84612c5f565b612c3a565b9050808382526020820190508285602086028201111561258e57600080fd5b60005b858110156125be57816125a48882612644565b845260208401935060208301925050600181019050612591565b5050509392505050565b60006125db6125d684612c8b565b612c3a565b9050828152602081018484840111156125f357600080fd5b6125fe848285612e07565b509392505050565b600061261961261484612cbc565b612c3a565b90508281526020810184848401111561263157600080fd5b61263c848285612e07565b509392505050565b60008135905061265381612fbd565b92915050565b60008083601f84011261266b57600080fd5b8235905067ffffffffffffffff81111561268457600080fd5b60208301915083602082028301111561269c57600080fd5b9250929050565b600082601f8301126126b457600080fd5b81356126c484826020860161255c565b91505092915050565b6000813590506126dc81612fd4565b92915050565b6000813590506126f181612feb565b92915050565b60008151905061270681612feb565b92915050565b600082601f83011261271d57600080fd5b813561272d8482602086016125c8565b91505092915050565b600082601f83011261274757600080fd5b8135612757848260208601612606565b91505092915050565b60008135905061276f81613002565b92915050565b60006020828403121561278757600080fd5b600061279584828501612644565b91505092915050565b600080604083850312156127b157600080fd5b60006127bf85828601612644565b92505060206127d085828601612644565b9150509250929050565b6000806000606084860312156127ef57600080fd5b60006127fd86828701612644565b935050602061280e86828701612644565b925050604061281f86828701612760565b9150509250925092565b6000806000806080858703121561283f57600080fd5b600061284d87828801612644565b945050602061285e87828801612644565b935050604061286f87828801612760565b925050606085013567ffffffffffffffff81111561288c57600080fd5b6128988782880161270c565b91505092959194509250565b600080604083850312156128b757600080fd5b60006128c585828601612644565b92505060206128d6858286016126cd565b9150509250929050565b600080604083850312156128f357600080fd5b600061290185828601612644565b925050602061291285828601612760565b9150509250929050565b6000806020838503121561292f57600080fd5b600083013567ffffffffffffffff81111561294957600080fd5b61295585828601612659565b92509250509250929050565b60006020828403121561297357600080fd5b600082013567ffffffffffffffff81111561298d57600080fd5b612999848285016126a3565b91505092915050565b6000602082840312156129b457600080fd5b60006129c2848285016126cd565b91505092915050565b6000602082840312156129dd57600080fd5b60006129eb848285016126e2565b91505092915050565b600060208284031215612a0657600080fd5b6000612a14848285016126f7565b91505092915050565b600060208284031215612a2f57600080fd5b600082013567ffffffffffffffff811115612a4957600080fd5b612a5584828501612736565b91505092915050565b600060208284031215612a7057600080fd5b6000612a7e84828501612760565b91505092915050565b612a9081612d86565b82525050565b612a9f81612d98565b82525050565b6000612ab082612ced565b612aba8185612d03565b9350612aca818560208601612e16565b612ad381612fac565b840191505092915050565b6000612ae982612cf8565b612af38185612d14565b9350612b03818560208601612e16565b612b0c81612fac565b840191505092915050565b6000612b2282612cf8565b612b2c8185612d25565b9350612b3c818560208601612e16565b80840191505092915050565b612b5181612df0565b82525050565b6000612b638285612b17565b9150612b6f8284612b17565b91508190509392505050565b6000602082019050612b906000830184612a87565b92915050565b6000608082019050612bab6000830187612a87565b612bb86020830186612a87565b612bc56040830185612b48565b8181036060830152612bd78184612aa5565b905095945050505050565b6000602082019050612bf76000830184612a96565b92915050565b60006020820190508181036000830152612c178184612ade565b905092915050565b6000602082019050612c346000830184612b48565b92915050565b6000612c44612c55565b9050612c508282612e7b565b919050565b6000604051905090565b600067ffffffffffffffff821115612c7a57612c79612f7d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612ca657612ca5612f7d565b5b612caf82612fac565b9050602081019050919050565b600067ffffffffffffffff821115612cd757612cd6612f7d565b5b612ce082612fac565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d3b82612df0565b9150612d4683612df0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7b57612d7a612f1f565b5b828201905092915050565b6000612d9182612dd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612e34578082015181840152602081019050612e19565b83811115612e43576000848401525b50505050565b60006002820490506001821680612e6157607f821691505b60208210811415612e7557612e74612f4e565b5b50919050565b612e8482612fac565b810181811067ffffffffffffffff82111715612ea357612ea2612f7d565b5b80604052505050565b6000612eb782612df0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612eea57612ee9612f1f565b5b600182019050919050565b6000612f0082612dfa565b915060ff821415612f1457612f13612f1f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b612fc681612d86565b8114612fd157600080fd5b50565b612fdd81612d98565b8114612fe857600080fd5b50565b612ff481612da4565b8114612fff57600080fd5b50565b61300b81612df0565b811461301657600080fd5b5056fea2646970667358221220bc5c2336e7f7a2375af6c81f6a06d7032e2545f24850fbd0e3d33351a2c88fc364736f6c63430008040033

Deployed Bytecode Sourcemap

53572:4205:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18767:689;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19719:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26608:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57455:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55646:86;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15292:323;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30379:2995;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33470:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57689:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55109:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21209:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53671:112;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16476:283;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19895:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57152:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56359:439;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55550:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34253:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56806:338;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20105:415;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54630:363;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56118:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27639:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55223:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18767:689;18897:4;19241:10;19226:25;;:11;:25;;;;:102;;;;19318:10;19303:25;;:11;:25;;;;19226:102;:179;;;;19395:10;19380:25;;:11;:25;;;;19226:179;19206:199;;18767:689;;;:::o;19719:100::-;19773:13;19806:5;19799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19719:100;:::o;26608:268::-;26729:7;26759:16;26767:7;26759;:16::i;:::-;26754:64;;26784:34;;;;;;;;;;;;;;26754:64;26838:15;:24;26854:7;26838:24;;;;;;;;;;;:30;;;;;;;;;;;;26831:37;;26608:268;;;:::o;57455:226::-;57546:1;57532:16;;:2;:16;;;57528:109;;57570:24;57591:2;57570:20;:24::i;:::-;57565:60;;57603:22;;;;;;;;;;;;;;57565:60;57528:109;57647:26;57661:2;57665:7;57647:13;:26::i;:::-;57455:226;;:::o;55646:86::-;54462:6;;;;;;;;;;;54448:20;;:10;:20;;;54444:49;;54477:16;;;;;;;;;;;;;;54444:49;55718:6:::1;55708:7;;:16;;;;;;;;;;;;;;;;;;55646:86:::0;:::o;15292:323::-;15353:7;15581:15;:13;:15::i;:::-;15566:12;;15550:13;;:28;:46;15543:53;;15292:323;:::o;30379:2995::-;30513:27;30543;30562:7;30543:18;:27::i;:::-;30513:57;;30628:4;30587:45;;30603:19;30587:45;;;30583:99;;30654:28;;;;;;;;;;;;;;30583:99;30710:27;30752:23;30789:35;30816:7;30789:26;:35::i;:::-;30695:129;;;;30938:134;30981:15;31015:4;31038:19;:17;:19::i;:::-;30938:24;:134::i;:::-;30919:287;;31102:43;31119:4;31125:19;:17;:19::i;:::-;31102:16;:43::i;:::-;31097:109;;31171:35;;;;;;;;;;;;;;31097:109;30919:287;31237:1;31223:16;;:2;:16;;;31219:52;;;31248:23;;;;;;;;;;;;;;31219:52;31284:43;31306:4;31312:2;31316:7;31325:1;31284:21;:43::i;:::-;31420:15;31417:2;;;31560:1;31539:19;31532:30;31417:2;31957:18;:24;31976:4;31957:24;;;;;;;;;;;;;;;;31955:26;;;;;;;;;;;;32026:18;:22;32045:2;32026:22;;;;;;;;;;;;;;;;32024:24;;;;;;;;;;;32348:167;32385:2;32455:45;32470:4;32476:2;32480:19;32455:14;:45::i;:::-;11691:8;32406:94;32348:18;:167::i;:::-;32319:17;:26;32337:7;32319:26;;;;;;;;;;;:196;;;;32686:1;11691:8;32635:19;:47;:52;32631:627;;;32708:19;32740:1;32730:7;:11;32708:33;;32897:1;32863:17;:30;32881:11;32863:30;;;;;;;;;;;;:35;32859:384;;;33001:13;;32986:11;:28;32982:242;;33181:19;33148:17;:30;33166:11;33148:30;;;;;;;;;;;:52;;;;32982:242;32859:384;32631:627;;33305:7;33301:2;33286:27;;33295:4;33286:27;;;;;;;;;;;;33324:42;33345:4;33351:2;33355:7;33364:1;33324:20;:42::i;:::-;30379:2995;;;;;;:::o;33470:185::-;33608:39;33625:4;33631:2;33635:7;33608:39;;;;;;;;;;;;:16;:39::i;:::-;33470:185;;;:::o;57689:85::-;57746:20;57752:7;57761:4;57746:5;:20::i;:::-;57689:85;:::o;55109:106::-;54462:6;;;;;;;;;;;54448:20;;:10;:20;;;54444:49;;54477:16;;;;;;;;;;;;;;54444:49;55196:11:::1;55186:7;:21;;;;;;;;;;;;:::i;:::-;;55109:106:::0;:::o;21209:202::-;21326:7;21374:27;21393:7;21374:18;:27::i;:::-;21351:52;;21209:202;;;:::o;53671:112::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16476:283::-;16593:7;16639:1;16622:19;;:5;:19;;;16618:60;;;16650:28;;;;;;;;;;;;;;16618:60;10635:13;16696:18;:25;16715:5;16696:25;;;;;;;;;;;;;;;;:55;16689:62;;16476:283;;;:::o;19895:104::-;19951:13;19984:7;19977:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19895:104;:::o;57152:295::-;57283:8;57279:107;;;57313:30;57334:8;57313:20;:30::i;:::-;57308:66;;57352:22;;;;;;;;;;;;;;57308:66;57279:107;57396:43;57420:8;57430;57396:23;:43::i;:::-;57152:295;;:::o;56359:439::-;54462:6;;;;;;;;;;;54448:20;;:10;:20;;;54444:49;;54477:16;;;;;;;;;;;;;;54444:49;56431:34:::1;56476:13;56511:9:::0;56506:233:::1;56530:19;:26;;;;56526:1;:30;56506:233;;;56608:8;56582:34;;:19;56602:1;56582:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;56578:150;;56664:19;56684:1;56664:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56637:17;56655:5;56637:24;;;;;;;;;;;;;;;;;;;;;:49;;;;;;;;;::::0;::::1;56705:7;;;;;:::i;:::-;;;;56578:150;56558:3;;;;;:::i;:::-;;;;56506:233;;;;56773:17;56751:19;:39;;;;;;;;;;;;:::i;:::-;;54504:1;;56359:439:::0;:::o;55550:88::-;55599:4;55623:7;;;;;;;;;;;55616:14;;55550:88;:::o;34253:399::-;34420:31;34433:4;34439:2;34443:7;34420:12;:31::i;:::-;34484:1;34466:2;:14;;;:19;34462:183;;34505:56;34536:4;34542:2;34546:7;34555:5;34505:30;:56::i;:::-;34500:145;;34589:40;;;;;;;;;;;;;;34500:145;34462:183;34253:399;;;;:::o;56806:338::-;56921:4;54462:6;;;;;;;;;;;54448:20;;:10;:20;;;54444:49;;54477:16;;;;;;;;;;;;;;54444:49;56948:9:::1;56943:169;56967:19;:26;;;;56963:1;:30;56943:169;;;57031:19;57051:1;57031:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57019:34;;:8;:34;;;57015:86;;;57081:4;57074:11;;;;;57015:86;56995:3;;;;;:::i;:::-;;;;56943:169;;;;57131:5;57124:12;;54504:1;56806:338:::0;;;:::o;20105:415::-;20223:13;20259:16;20267:7;20259;:16::i;:::-;20254:59;;20284:29;;;;;;;;;;;;;;20254:59;20326:21;20350:10;:8;:10::i;:::-;20326:34;;20416:1;20397:7;20391:21;:26;;:121;;;;;;;;;;;;;;;;;20461:7;20470:18;20480:7;20470:9;:18::i;:::-;20444:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20391:121;20371:141;;;20105:415;;;:::o;54630:363::-;54462:6;;;;;;;;;;;54448:20;;:10;:20;;;54444:49;;54477:16;;;;;;;;;;;;;;54444:49;54746:8:::1;;;;;;;;;;;54711:43;;54727:9;:16;54711:13;:11;:13::i;:::-;:32;;;;:::i;:::-;:43;54707:87;;;54776:18;;;;;;;;;;;;;;54707:87;54828:24;;;;;;;;;;;54809:43;;:9;:16;:43;54805:70;;;54861:14;;;;;;;;;;;;;;54805:70;54893:7;54888:98;54910:9;:16;54906:1;:20;;;54888:98;;;54948:26;54958:9;54968:1;54958:12;;;;;;;;;;;;;;;;;;;;;;;;54972:1;54948:9;:26::i;:::-;54928:3;;;;;:::i;:::-;;;;54888:98;;;;54630:363:::0;:::o;56118:233::-;54462:6;;;;;;;;;;;54448:20;;:10;:20;;;54444:49;;54477:16;;;;;;;;;;;;;;54444:49;56237:9:::1;56232:112;56256:9;;:16;;56252:1;:20;56232:112;;;56294:19;56319:9;;56329:1;56319:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56294:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56274:3;;;;;:::i;:::-;;;;56232:112;;;;56118:233:::0;;:::o;27639:214::-;27781:4;27810:18;:25;27829:5;27810:25;;;;;;;;;;;;;;;:35;27836:8;27810:35;;;;;;;;;;;;;;;;;;;;;;;;;27803:42;;27639:214;;;;:::o;55223:227::-;54462:6;;;;;;;;;;;54448:20;;:10;:20;;;54444:49;;54477:16;;;;;;;;;;;;;;54444:49;55306:2:::1;55296:12;;:6;;;;;;;;;;;:12;;;55292:42;;;55317:17;;;;;;;;;;;;;;55292:42;55345:16;55364:6;;;;;;;;;;;55345:25;;55390:2;55381:6;;:11;;;;;;;;;;;;;;;;;;55439:2;55408:34;;55429:8;55408:34;;;;;;;;;;;;54504:1;55223:227:::0;:::o;28111:282::-;28176:4;28232:7;28213:15;:13;:15::i;:::-;:26;;:66;;;;;28266:13;;28256:7;:23;28213:66;:153;;;;;28365:1;11411:8;28317:17;:26;28335:7;28317:26;;;;;;;;;;;;:44;:49;28213:153;28193:173;;28111:282;;;:::o;26049:400::-;26130:13;26146:16;26154:7;26146;:16::i;:::-;26130:32;;26202:5;26179:28;;:19;:17;:19::i;:::-;:28;;;26175:175;;26227:44;26244:5;26251:19;:17;:19::i;:::-;26227:16;:44::i;:::-;26222:128;;26299:35;;;;;;;;;;;;;;26222:128;26175:175;26395:2;26362:15;:24;26378:7;26362:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26433:7;26429:2;26413:28;;26422:5;26413:28;;;;;;;;;;;;26049:400;;;:::o;54521:101::-;54586:7;54613:1;54606:8;;54521:101;:::o;22496:1307::-;22590:7;22615:12;22630:7;22615:22;;22698:4;22679:15;:13;:15::i;:::-;:23;22675:1061;;22732:13;;22725:4;:20;22721:1015;;;22770:14;22787:17;:23;22805:4;22787:23;;;;;;;;;;;;22770:40;;22904:1;11411:8;22876:6;:24;:29;22872:845;;;23541:113;23558:1;23548:6;:11;23541:113;;;23601:17;:25;23619:6;;;;;;;23601:25;;;;;;;;;;;;23592:34;;23541:113;;;23687:6;23680:13;;;;;;22872:845;22721:1015;;22675:1061;23764:31;;;;;;;;;;;;;;22496:1307;;;;:::o;29274:485::-;29376:27;29405:23;29446:38;29487:15;:24;29503:7;29487:24;;;;;;;;;;;29446:65;;29664:18;29641:41;;29721:19;29715:26;29696:45;;29626:126;;;;:::o;51304:105::-;51364:7;51391:10;51384:17;;51304:105;:::o;28502:659::-;28651:11;28816:16;28809:5;28805:28;28796:37;;28976:16;28965:9;28961:32;28948:45;;29126:15;29115:9;29112:30;29104:5;29093:9;29090:20;29087:56;29077:66;;28684:470;;;;;:::o;55740:370::-;55917:61;55945:4;55951:2;55955:12;55969:8;55917:27;:61::i;:::-;56011:1;55995:18;;:4;:18;;;;:38;;;;;56031:1;56017:16;;:2;:16;;;;55995:38;55991:112;;;56054:7;;;;;;;;;;;56050:41;;;56070:21;;;;;;;;;;;;;;56050:41;55991:112;55740:370;;;;:::o;50613:311::-;50748:7;50768:16;11815:3;50794:19;:41;;50768:68;;11815:3;50862:31;50873:4;50879:2;50883:9;50862:10;:31::i;:::-;50854:40;;:62;;50847:69;;;50613:311;;;;;:::o;24383:531::-;24490:14;24663:16;24656:5;24652:28;24643:37;;24875:5;24861:11;24836:23;24832:41;24829:52;24805:5;24784:112;24774:122;;24531:376;;;;:::o;36138:158::-;;;;;:::o;45614:3274::-;45694:27;45724;45743:7;45724:18;:27::i;:::-;45694:57;;45764:12;45795:19;45764:52;;45844:27;45886:23;45923:35;45950:7;45923:26;:35::i;:::-;45829:129;;;;45975:13;45971:451;;;46114:150;46161:15;46199:4;46226:19;:17;:19::i;:::-;46114:24;:150::i;:::-;46091:319;;46302:43;46319:4;46325:19;:17;:19::i;:::-;46302:16;:43::i;:::-;46297:113;;46375:35;;;;;;;;;;;;;;46297:113;46091:319;45971:451;46434:51;46456:4;46470:1;46474:7;46483:1;46434:21;:51::i;:::-;46578:15;46575:2;;;46718:1;46697:19;46690:30;46575:2;47396:1;10900:3;47366:1;:26;;47365:32;47337:18;:24;47356:4;47337:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;47664:197;47701:4;47793:53;47808:4;47822:1;47826:19;47793:14;:53::i;:::-;11691:8;11411;47725:43;47724:122;47664:18;:197::i;:::-;47635:17;:26;47653:7;47635:26;;;;;;;;;;;:226;;;;48032:1;11691:8;47981:19;:47;:52;47977:627;;;48054:19;48086:1;48076:7;:11;48054:33;;48243:1;48209:17;:30;48227:11;48209:30;;;;;;;;;;;;:35;48205:384;;;48347:13;;48332:11;:28;48328:242;;48527:19;48494:17;:30;48512:11;48494:30;;;;;;;;;;;:52;;;;48328:242;48205:384;47977:627;;48659:7;48655:1;48632:35;;48641:4;48632:35;;;;;;;;;;;;48678:50;48699:4;48713:1;48717:7;48726:1;48678:20;:50::i;:::-;48855:12;;:14;;;;;;;;;;;;;45614:3274;;;;;;:::o;27216:266::-;27395:8;27343:18;:39;27362:19;:17;:19::i;:::-;27343:39;;;;;;;;;;;;;;;:49;27383:8;27343:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27455:8;27419:55;;27434:19;:17;:19::i;:::-;27419:55;;;27465:8;27419:55;;;;;;:::i;:::-;;;;;;;;27216:266;;:::o;36736:831::-;36899:4;36958:2;36933:45;;;36997:19;:17;:19::i;:::-;37035:4;37058:7;37084:5;36933:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36916:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37335:1;37318:6;:13;:18;37314:235;;;37364:40;;;;;;;;;;;;;;37314:235;37507:6;37501:13;37492:6;37488:2;37484:15;37477:38;36916:644;37204:54;;;37177:81;;;:6;:81;;;;37153:105;;;36736:831;;;;;;:::o;55001:100::-;55053:13;55086:7;55079:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55001:100;:::o;51511:1786::-;51612:17;52051:4;52044;52038:11;52034:22;52143:1;52137:4;52130:15;52218:4;52215:1;52211:12;52204:19;;52300:1;52295:3;52288:14;52404:3;52643:5;52625:428;52651:1;52625:428;;;52691:1;52686:3;52682:11;52675:18;;52862:2;52856:4;52852:13;52848:2;52844:22;52839:3;52831:36;52956:2;52950:4;52946:13;52938:21;;53023:4;53013:2;;53031:5;;53013:2;52625:428;;;52629:21;53092:3;53087;53083:13;53207:4;53202:3;53198:14;53191:21;;53272:6;53267:3;53260:19;51656:1634;;;;;;:::o;44917:112::-;44994:27;45004:2;45008:8;44994:27;;;;;;;;;;;;:9;:27::i;:::-;44917:112;;:::o;35314:159::-;;;;;:::o;50314:147::-;50451:6;50314:147;;;;;:::o;43953:880::-;44084:19;44090:2;44094:8;44084:5;:19::i;:::-;44163:1;44145:2;:14;;;:19;44141:674;;44185:11;44199:13;;44185:27;;44231:13;44253:8;44247:3;:14;44231:30;;44280:424;44337:205;44406:1;44439:2;44472:7;;;;;;44510:5;44337:30;:205::i;:::-;44306:358;;44600:40;;;;;;;;;;;;;;44306:358;44699:3;44691:5;:11;44280:424;;44786:3;44769:13;;:20;44765:34;;44791:8;;;44765:34;44141:674;;;43953:880;;;:::o;38029:3021::-;38102:20;38125:13;;38102:36;;38165:1;38153:8;:13;38149:44;;;38175:18;;;;;;;;;;;;;;38149:44;38206:61;38236:1;38240:2;38244:12;38258:8;38206:21;:61::i;:::-;38784:1;10773:2;38754:1;:26;;38753:32;38724:8;:62;38681:18;:22;38700:2;38681:22;;;;;;;;;;;;;;;;:105;;;;;;;;;;;39063:160;39100:2;39175:33;39198:1;39202:2;39206:1;39175:14;:33::i;:::-;39121:30;39142:8;39121:20;:30::i;:::-;:87;39063:18;:160::i;:::-;39029:17;:31;39047:12;39029:31;;;;;;;;;;;:194;;;;39240:16;39271:11;39300:8;39285:12;:23;39271:37;;39821:16;39817:2;39813:25;39801:37;;40193:12;40153:8;40112:1;40050:25;39991:1;39930;39903:335;40564:1;40550:12;40546:20;40504:346;40605:3;40596:7;40593:16;40504:346;;40823:7;40813:8;40810:1;40783:25;40780:1;40777;40772:59;40658:1;40649:7;40645:15;40634:26;;40504:346;;;40508:77;40895:1;40883:8;:13;40879:45;;;40905:19;;;;;;;;;;;;;;40879:45;40957:3;40941:13;:19;;;;38029:3021;;40982:60;41011:1;41015:2;41019:12;41033:8;40982:20;:60::i;:::-;38029:3021;;;:::o;25016:356::-;25113:14;25351:1;25341:8;25338:15;25312:24;25308:46;25298:56;;25220:145;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:345::-;1112:5;1137:66;1153:49;1195:6;1153:49;:::i;:::-;1137:66;:::i;:::-;1128:75;;1226:6;1219:5;1212:21;1264:4;1257:5;1253:16;1302:3;1293:6;1288:3;1284:16;1281:25;1278:2;;;1319:1;1316;1309:12;1278:2;1332:41;1366:6;1361:3;1356;1332:41;:::i;:::-;1118:261;;;;;;:::o;1385:139::-;1431:5;1469:6;1456:20;1447:29;;1485:33;1512:5;1485:33;:::i;:::-;1437:87;;;;:::o;1547:367::-;1620:8;1630:6;1680:3;1673:4;1665:6;1661:17;1657:27;1647:2;;1698:1;1695;1688:12;1647:2;1734:6;1721:20;1711:30;;1764:18;1756:6;1753:30;1750:2;;;1796:1;1793;1786:12;1750:2;1833:4;1825:6;1821:17;1809:29;;1887:3;1879:4;1871:6;1867:17;1857:8;1853:32;1850:41;1847:2;;;1904:1;1901;1894:12;1847:2;1637:277;;;;;:::o;1937:303::-;2008:5;2057:3;2050:4;2042:6;2038:17;2034:27;2024:2;;2075:1;2072;2065:12;2024:2;2115:6;2102:20;2140:94;2230:3;2222:6;2215:4;2207:6;2203:17;2140:94;:::i;:::-;2131:103;;2014:226;;;;;:::o;2246:133::-;2289:5;2327:6;2314:20;2305:29;;2343:30;2367:5;2343:30;:::i;:::-;2295:84;;;;:::o;2385:137::-;2430:5;2468:6;2455:20;2446:29;;2484:32;2510:5;2484:32;:::i;:::-;2436:86;;;;:::o;2528:141::-;2584:5;2615:6;2609:13;2600:22;;2631:32;2657:5;2631:32;:::i;:::-;2590:79;;;;:::o;2688:271::-;2743:5;2792:3;2785:4;2777:6;2773:17;2769:27;2759:2;;2810:1;2807;2800:12;2759:2;2850:6;2837:20;2875:78;2949:3;2941:6;2934:4;2926:6;2922:17;2875:78;:::i;:::-;2866:87;;2749:210;;;;;:::o;2979:273::-;3035:5;3084:3;3077:4;3069:6;3065:17;3061:27;3051:2;;3102:1;3099;3092:12;3051:2;3142:6;3129:20;3167:79;3242:3;3234:6;3227:4;3219:6;3215:17;3167:79;:::i;:::-;3158:88;;3041:211;;;;;:::o;3258:139::-;3304:5;3342:6;3329:20;3320:29;;3358:33;3385:5;3358:33;:::i;:::-;3310:87;;;;:::o;3403:262::-;3462:6;3511:2;3499:9;3490:7;3486:23;3482:32;3479:2;;;3527:1;3524;3517:12;3479:2;3570:1;3595:53;3640:7;3631:6;3620:9;3616:22;3595:53;:::i;:::-;3585:63;;3541:117;3469:196;;;;:::o;3671:407::-;3739:6;3747;3796:2;3784:9;3775:7;3771:23;3767:32;3764:2;;;3812:1;3809;3802:12;3764:2;3855:1;3880:53;3925:7;3916:6;3905:9;3901:22;3880:53;:::i;:::-;3870:63;;3826:117;3982:2;4008:53;4053:7;4044:6;4033:9;4029:22;4008:53;:::i;:::-;3998:63;;3953:118;3754:324;;;;;:::o;4084:552::-;4161:6;4169;4177;4226:2;4214:9;4205:7;4201:23;4197:32;4194:2;;;4242:1;4239;4232:12;4194:2;4285:1;4310:53;4355:7;4346:6;4335:9;4331:22;4310:53;:::i;:::-;4300:63;;4256:117;4412:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4383:118;4540:2;4566:53;4611:7;4602:6;4591:9;4587:22;4566:53;:::i;:::-;4556:63;;4511:118;4184:452;;;;;:::o;4642:809::-;4737:6;4745;4753;4761;4810:3;4798:9;4789:7;4785:23;4781:33;4778:2;;;4827:1;4824;4817:12;4778:2;4870:1;4895:53;4940:7;4931:6;4920:9;4916:22;4895:53;:::i;:::-;4885:63;;4841:117;4997:2;5023:53;5068:7;5059:6;5048:9;5044:22;5023:53;:::i;:::-;5013:63;;4968:118;5125:2;5151:53;5196:7;5187:6;5176:9;5172:22;5151:53;:::i;:::-;5141:63;;5096:118;5281:2;5270:9;5266:18;5253:32;5312:18;5304:6;5301:30;5298:2;;;5344:1;5341;5334:12;5298:2;5372:62;5426:7;5417:6;5406:9;5402:22;5372:62;:::i;:::-;5362:72;;5224:220;4768:683;;;;;;;:::o;5457:401::-;5522:6;5530;5579:2;5567:9;5558:7;5554:23;5550:32;5547:2;;;5595:1;5592;5585:12;5547:2;5638:1;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5609:117;5765:2;5791:50;5833:7;5824:6;5813:9;5809:22;5791:50;:::i;:::-;5781:60;;5736:115;5537:321;;;;;:::o;5864:407::-;5932:6;5940;5989:2;5977:9;5968:7;5964:23;5960:32;5957:2;;;6005:1;6002;5995:12;5957:2;6048:1;6073:53;6118:7;6109:6;6098:9;6094:22;6073:53;:::i;:::-;6063:63;;6019:117;6175:2;6201:53;6246:7;6237:6;6226:9;6222:22;6201:53;:::i;:::-;6191:63;;6146:118;5947:324;;;;;:::o;6277:425::-;6363:6;6371;6420:2;6408:9;6399:7;6395:23;6391:32;6388:2;;;6436:1;6433;6426:12;6388:2;6507:1;6496:9;6492:17;6479:31;6537:18;6529:6;6526:30;6523:2;;;6569:1;6566;6559:12;6523:2;6605:80;6677:7;6668:6;6657:9;6653:22;6605:80;:::i;:::-;6587:98;;;;6450:245;6378:324;;;;;:::o;6708:405::-;6792:6;6841:2;6829:9;6820:7;6816:23;6812:32;6809:2;;;6857:1;6854;6847:12;6809:2;6928:1;6917:9;6913:17;6900:31;6958:18;6950:6;6947:30;6944:2;;;6990:1;6987;6980:12;6944:2;7018:78;7088:7;7079:6;7068:9;7064:22;7018:78;:::i;:::-;7008:88;;6871:235;6799:314;;;;:::o;7119:256::-;7175:6;7224:2;7212:9;7203:7;7199:23;7195:32;7192:2;;;7240:1;7237;7230:12;7192:2;7283:1;7308:50;7350:7;7341:6;7330:9;7326:22;7308:50;:::i;:::-;7298:60;;7254:114;7182:193;;;;:::o;7381:260::-;7439:6;7488:2;7476:9;7467:7;7463:23;7459:32;7456:2;;;7504:1;7501;7494:12;7456:2;7547:1;7572:52;7616:7;7607:6;7596:9;7592:22;7572:52;:::i;:::-;7562:62;;7518:116;7446:195;;;;:::o;7647:282::-;7716:6;7765:2;7753:9;7744:7;7740:23;7736:32;7733:2;;;7781:1;7778;7771:12;7733:2;7824:1;7849:63;7904:7;7895:6;7884:9;7880:22;7849:63;:::i;:::-;7839:73;;7795:127;7723:206;;;;:::o;7935:375::-;8004:6;8053:2;8041:9;8032:7;8028:23;8024:32;8021:2;;;8069:1;8066;8059:12;8021:2;8140:1;8129:9;8125:17;8112:31;8170:18;8162:6;8159:30;8156:2;;;8202:1;8199;8192:12;8156:2;8230:63;8285:7;8276:6;8265:9;8261:22;8230:63;:::i;:::-;8220:73;;8083:220;8011:299;;;;:::o;8316:262::-;8375:6;8424:2;8412:9;8403:7;8399:23;8395:32;8392:2;;;8440:1;8437;8430:12;8392:2;8483:1;8508:53;8553:7;8544:6;8533:9;8529:22;8508:53;:::i;:::-;8498:63;;8454:117;8382:196;;;;:::o;8584:118::-;8671:24;8689:5;8671:24;:::i;:::-;8666:3;8659:37;8649:53;;:::o;8708:109::-;8789:21;8804:5;8789:21;:::i;:::-;8784:3;8777:34;8767:50;;:::o;8823:360::-;8909:3;8937:38;8969:5;8937:38;:::i;:::-;8991:70;9054:6;9049:3;8991:70;:::i;:::-;8984:77;;9070:52;9115:6;9110:3;9103:4;9096:5;9092:16;9070:52;:::i;:::-;9147:29;9169:6;9147:29;:::i;:::-;9142:3;9138:39;9131:46;;8913:270;;;;;:::o;9189:364::-;9277:3;9305:39;9338:5;9305:39;:::i;:::-;9360:71;9424:6;9419:3;9360:71;:::i;:::-;9353:78;;9440:52;9485:6;9480:3;9473:4;9466:5;9462:16;9440:52;:::i;:::-;9517:29;9539:6;9517:29;:::i;:::-;9512:3;9508:39;9501:46;;9281:272;;;;;:::o;9559:377::-;9665:3;9693:39;9726:5;9693:39;:::i;:::-;9748:89;9830:6;9825:3;9748:89;:::i;:::-;9741:96;;9846:52;9891:6;9886:3;9879:4;9872:5;9868:16;9846:52;:::i;:::-;9923:6;9918:3;9914:16;9907:23;;9669:267;;;;;:::o;9942:118::-;10029:24;10047:5;10029:24;:::i;:::-;10024:3;10017:37;10007:53;;:::o;10066:435::-;10246:3;10268:95;10359:3;10350:6;10268:95;:::i;:::-;10261:102;;10380:95;10471:3;10462:6;10380:95;:::i;:::-;10373:102;;10492:3;10485:10;;10250:251;;;;;:::o;10507:222::-;10600:4;10638:2;10627:9;10623:18;10615:26;;10651:71;10719:1;10708:9;10704:17;10695:6;10651:71;:::i;:::-;10605:124;;;;:::o;10735:640::-;10930:4;10968:3;10957:9;10953:19;10945:27;;10982:71;11050:1;11039:9;11035:17;11026:6;10982:71;:::i;:::-;11063:72;11131:2;11120:9;11116:18;11107:6;11063:72;:::i;:::-;11145;11213:2;11202:9;11198:18;11189:6;11145:72;:::i;:::-;11264:9;11258:4;11254:20;11249:2;11238:9;11234:18;11227:48;11292:76;11363:4;11354:6;11292:76;:::i;:::-;11284:84;;10935:440;;;;;;;:::o;11381:210::-;11468:4;11506:2;11495:9;11491:18;11483:26;;11519:65;11581:1;11570:9;11566:17;11557:6;11519:65;:::i;:::-;11473:118;;;;:::o;11597:313::-;11710:4;11748:2;11737:9;11733:18;11725:26;;11797:9;11791:4;11787:20;11783:1;11772:9;11768:17;11761:47;11825:78;11898:4;11889:6;11825:78;:::i;:::-;11817:86;;11715:195;;;;:::o;11916:222::-;12009:4;12047:2;12036:9;12032:18;12024:26;;12060:71;12128:1;12117:9;12113:17;12104:6;12060:71;:::i;:::-;12014:124;;;;:::o;12144:129::-;12178:6;12205:20;;:::i;:::-;12195:30;;12234:33;12262:4;12254:6;12234:33;:::i;:::-;12185:88;;;:::o;12279:75::-;12312:6;12345:2;12339:9;12329:19;;12319:35;:::o;12360:311::-;12437:4;12527:18;12519:6;12516:30;12513:2;;;12549:18;;:::i;:::-;12513:2;12599:4;12591:6;12587:17;12579:25;;12659:4;12653;12649:15;12641:23;;12442:229;;;:::o;12677:307::-;12738:4;12828:18;12820:6;12817:30;12814:2;;;12850:18;;:::i;:::-;12814:2;12888:29;12910:6;12888:29;:::i;:::-;12880:37;;12972:4;12966;12962:15;12954:23;;12743:241;;;:::o;12990:308::-;13052:4;13142:18;13134:6;13131:30;13128:2;;;13164:18;;:::i;:::-;13128:2;13202:29;13224:6;13202:29;:::i;:::-;13194:37;;13286:4;13280;13276:15;13268:23;;13057:241;;;:::o;13304:98::-;13355:6;13389:5;13383:12;13373:22;;13362:40;;;:::o;13408:99::-;13460:6;13494:5;13488:12;13478:22;;13467:40;;;:::o;13513:168::-;13596:11;13630:6;13625:3;13618:19;13670:4;13665:3;13661:14;13646:29;;13608:73;;;;:::o;13687:169::-;13771:11;13805:6;13800:3;13793:19;13845:4;13840:3;13836:14;13821:29;;13783:73;;;;:::o;13862:148::-;13964:11;14001:3;13986:18;;13976:34;;;;:::o;14016:305::-;14056:3;14075:20;14093:1;14075:20;:::i;:::-;14070:25;;14109:20;14127:1;14109:20;:::i;:::-;14104:25;;14263:1;14195:66;14191:74;14188:1;14185:81;14182:2;;;14269:18;;:::i;:::-;14182:2;14313:1;14310;14306:9;14299:16;;14060:261;;;;:::o;14327:96::-;14364:7;14393:24;14411:5;14393:24;:::i;:::-;14382:35;;14372:51;;;:::o;14429:90::-;14463:7;14506:5;14499:13;14492:21;14481:32;;14471:48;;;:::o;14525:149::-;14561:7;14601:66;14594:5;14590:78;14579:89;;14569:105;;;:::o;14680:126::-;14717:7;14757:42;14750:5;14746:54;14735:65;;14725:81;;;:::o;14812:77::-;14849:7;14878:5;14867:16;;14857:32;;;:::o;14895:86::-;14930:7;14970:4;14963:5;14959:16;14948:27;;14938:43;;;:::o;14987:154::-;15071:6;15066:3;15061;15048:30;15133:1;15124:6;15119:3;15115:16;15108:27;15038:103;;;:::o;15147:307::-;15215:1;15225:113;15239:6;15236:1;15233:13;15225:113;;;15324:1;15319:3;15315:11;15309:18;15305:1;15300:3;15296:11;15289:39;15261:2;15258:1;15254:10;15249:15;;15225:113;;;15356:6;15353:1;15350:13;15347:2;;;15436:1;15427:6;15422:3;15418:16;15411:27;15347:2;15196:258;;;;:::o;15460:320::-;15504:6;15541:1;15535:4;15531:12;15521:22;;15588:1;15582:4;15578:12;15609:18;15599:2;;15665:4;15657:6;15653:17;15643:27;;15599:2;15727;15719:6;15716:14;15696:18;15693:38;15690:2;;;15746:18;;:::i;:::-;15690:2;15511:269;;;;:::o;15786:281::-;15869:27;15891:4;15869:27;:::i;:::-;15861:6;15857:40;15999:6;15987:10;15984:22;15963:18;15951:10;15948:34;15945:62;15942:2;;;16010:18;;:::i;:::-;15942:2;16050:10;16046:2;16039:22;15829:238;;;:::o;16073:233::-;16112:3;16135:24;16153:5;16135:24;:::i;:::-;16126:33;;16181:66;16174:5;16171:77;16168:2;;;16251:18;;:::i;:::-;16168:2;16298:1;16291:5;16287:13;16280:20;;16116:190;;;:::o;16312:167::-;16349:3;16372:22;16388:5;16372:22;:::i;:::-;16363:31;;16416:4;16409:5;16406:15;16403:2;;;16424:18;;:::i;:::-;16403:2;16471:1;16464:5;16460:13;16453:20;;16353:126;;;:::o;16485:180::-;16533:77;16530:1;16523:88;16630:4;16627:1;16620:15;16654:4;16651:1;16644:15;16671:180;16719:77;16716:1;16709:88;16816:4;16813:1;16806:15;16840:4;16837:1;16830:15;16857:180;16905:77;16902:1;16895:88;17002:4;16999:1;16992:15;17026:4;17023:1;17016:15;17043:102;17084:6;17135:2;17131:7;17126:2;17119:5;17115:14;17111:28;17101:38;;17091:54;;;:::o;17151:122::-;17224:24;17242:5;17224:24;:::i;:::-;17217:5;17214:35;17204:2;;17263:1;17260;17253:12;17204:2;17194:79;:::o;17279:116::-;17349:21;17364:5;17349:21;:::i;:::-;17342:5;17339:32;17329:2;;17385:1;17382;17375:12;17329:2;17319:76;:::o;17401:120::-;17473:23;17490:5;17473:23;:::i;:::-;17466:5;17463:34;17453:2;;17511:1;17508;17501:12;17453:2;17443:78;:::o;17527:122::-;17600:24;17618:5;17600:24;:::i;:::-;17593:5;17590:35;17580:2;;17639:1;17636;17629:12;17580:2;17570:79;:::o

Swarm Source

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