ETH Price: $3,476.08 (+2.00%)
Gas: 8 Gwei

Token

The British (BRITISH)
 

Overview

Max Total Supply

10,000 BRITISH

Holders

4,261

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
firerus.eth
Balance
1 BRITISH
0xb6ed0d1b01e577a7e02f9a084e54aafc6ab38d20
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:
TheBritish

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-17
*/

/**
 *Submitted for verification at Etherscan.io on 2022-07-16
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
/**
 ___________.__             ____________________.______________.___  _________ ___ ___   
\__    ___/|  |__   ____   \______   \______   \   \__    ___/|   |/   _____//   |   \  
  |    |   |  |  \_/ __ \   |    |  _/|       _/   | |    |   |   |\_____  \/    ~    \ 
  |    |   |   Y  \  ___/   |    |   \|    |   \   | |    |   |   |/        \    Y    / 
  |____|   |___|  /\___  >  |______  /|____|_  /___| |____|   |___/_______  /\___|_  /  
                \/     \/          \/        \/                           \/       \/                                                                                                          
*/

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * 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();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of 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 through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token 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 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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 '';
    }

    /**
     * @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))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    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 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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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 {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * 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) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *   - `extraData` = `0`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *   - `extraData` = `<Extra data when token was burned>`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     *   - `extraData` = `<Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}



pragma solidity >=0.8.9 <0.9.0;

contract TheBritish is ERC721AQueryable, Ownable, ReentrancyGuard {
    using Strings for uint256;

    uint256 public maxSupply = 10000;
	uint256 public Ownermint = 5;
    uint256 public maxPerAddress = 100;
	uint256 public maxPerTX = 10;
    uint256 public cost = 0.002 ether;
	mapping(address => bool) public freeMinted; 

    bool public paused = true;

	string public uriPrefix = '';
    string public uriSuffix = '.json';
	
  constructor(string memory baseURI) ERC721A("The British", "BRITISH") {
      setUriPrefix(baseURI); 
      _safeMint(_msgSender(), Ownermint);

  }

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

  function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
  }

  function mint(uint256 _mintAmount) public payable nonReentrant callerIsUser{
        require(!paused, 'The contract is paused!');
        require(numberMinted(msg.sender) + _mintAmount <= maxPerAddress, 'PER_WALLET_LIMIT_REACHED');
        require(_mintAmount > 0 && _mintAmount <= maxPerTX, 'Invalid mint amount!');
        require(totalSupply() + _mintAmount <= (maxSupply), 'Max supply exceeded!');
	if (freeMinted[_msgSender()]){
        require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
  }
    else{
		require(msg.value >= cost * _mintAmount - cost, 'Insufficient funds!');
        freeMinted[_msgSender()] = true;
  }

    _safeMint(_msgSender(), _mintAmount);
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setPaused() public onlyOwner {
    paused = !paused;
  }

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

  function setmaxPerTX(uint256 _maxPerTX) public onlyOwner {
    maxPerTX = _maxPerTX;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }
 
  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
  }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Ownermint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTX","type":"uint256"}],"name":"setmaxPerTX","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600a556005600b556064600c55600a600d5566071afd498d0000600e556001601060006101000a81548160ff0219169083151502179055506040518060200160405280600081525060119080519060200190620000669291906200088f565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060129080519060200190620000b49291906200088f565b50348015620000c257600080fd5b5060405162004c7538038062004c758339818101604052810190620000e8919062000adc565b6040518060400160405280600b81526020017f54686520427269746973680000000000000000000000000000000000000000008152506040518060400160405280600781526020017f425249544953480000000000000000000000000000000000000000000000000081525081600290805190602001906200016c9291906200088f565b508060039080519060200190620001859291906200088f565b50620001966200020160201b60201c565b6000819055505050620001be620001b26200020a60201b60201c565b6200021260201b60201c565b6001600981905550620001d781620002d860201b60201c565b620001fa620001eb6200020a60201b60201c565b600b546200030460201b60201c565b5062000db5565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002e86200032a60201b60201c565b8060119080519060200190620003009291906200088f565b5050565b62000326828260405180602001604052806000815250620003bb60201b60201c565b5050565b6200033a6200020a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003606200046c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b09062000b8e565b60405180910390fd5b565b620003cd83836200049660201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200046757600080549050600083820390505b6200041660008683806001019450866200069560201b60201c565b6200044d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620003fb5781600054146200046457600080fd5b50505b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000504576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141562000540576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200055560008483856200080760201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620005e483620005c660008660006200080d60201b60201c565b620005d7856200083d60201b60201c565b176200084d60201b60201c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000608578060008190555050506200069060008483856200087860201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006c36200087e60201b60201c565b8786866040518563ffffffff1660e01b8152600401620006e7949392919062000c6d565b602060405180830381600087803b1580156200070257600080fd5b505af19250505080156200073657506040513d601f19601f8201168201806040525081019062000733919062000d1e565b60015b620007b4573d806000811462000769576040519150601f19603f3d011682016040523d82523d6000602084013e6200076e565b606091505b50600081511415620007ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e86200082c8686846200088660201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b8280546200089d9062000d7f565b90600052602060002090601f016020900481019282620008c157600085556200090d565b82601f10620008dc57805160ff19168380011785556200090d565b828001600101855582156200090d579182015b828111156200090c578251825591602001919060010190620008ef565b5b5090506200091c919062000920565b5090565b5b808211156200093b57600081600090555060010162000921565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620009a8826200095d565b810181811067ffffffffffffffff82111715620009ca57620009c96200096e565b5b80604052505050565b6000620009df6200093f565b9050620009ed82826200099d565b919050565b600067ffffffffffffffff82111562000a105762000a0f6200096e565b5b62000a1b826200095d565b9050602081019050919050565b60005b8381101562000a4857808201518184015260208101905062000a2b565b8381111562000a58576000848401525b50505050565b600062000a7562000a6f84620009f2565b620009d3565b90508281526020810184848401111562000a945762000a9362000958565b5b62000aa184828562000a28565b509392505050565b600082601f83011262000ac15762000ac062000953565b5b815162000ad384826020860162000a5e565b91505092915050565b60006020828403121562000af55762000af462000949565b5b600082015167ffffffffffffffff81111562000b165762000b156200094e565b5b62000b248482850162000aa9565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b7660208362000b2d565b915062000b838262000b3e565b602082019050919050565b6000602082019050818103600083015262000ba98162000b67565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bdd8262000bb0565b9050919050565b62000bef8162000bd0565b82525050565b6000819050919050565b62000c0a8162000bf5565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000c398262000c10565b62000c45818562000c1b565b935062000c5781856020860162000a28565b62000c62816200095d565b840191505092915050565b600060808201905062000c84600083018762000be4565b62000c93602083018662000be4565b62000ca2604083018562000bff565b818103606083015262000cb6818462000c2c565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000cf88162000cc1565b811462000d0457600080fd5b50565b60008151905062000d188162000ced565b92915050565b60006020828403121562000d375762000d3662000949565b5b600062000d478482850162000d07565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d9857607f821691505b6020821081141562000daf5762000dae62000d50565b5b50919050565b613eb08062000dc56000396000f3fe6080604052600436106102255760003560e01c8063639814e011610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107fa578063d5abeb0114610837578063dc33e68114610862578063e985e9c51461089f578063f2fde38b146108dc57610225565b8063a0712d6814610724578063a22cb46514610740578063a40d36cd14610769578063b88d4fde14610794578063c23dc68f146107bd57610225565b80638462151c116100f25780638462151c1461062b5780638da5cb5b1461066857806395d89b411461069357806399a2557a146106be5780639b7f13d0146106fb57610225565b8063639814e01461058357806370a08231146105ae578063715018a6146105eb5780637ec4a6591461060257610225565b806337a66d85116101b15780635503a0e8116101755780635503a0e8146104885780635bbb2177146104b35780635c975abb146104f057806362b99ad41461051b5780636352211e1461054657610225565b806337a66d85146103cb578063389fcf06146103e25780633ccfd60b1461041f57806342842e0e1461043657806344a0d68a1461045f57610225565b806313faede6116101f857806313faede6146102f857806316ba10e01461032357806318160ddd1461034c57806323b872dd1461037757806331448007146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612b1b565b610905565b60405161025e9190612b63565b60405180910390f35b34801561027357600080fd5b5061027c610997565b6040516102899190612c17565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612c6f565b610a29565b6040516102c69190612cdd565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612d24565b610aa5565b005b34801561030457600080fd5b5061030d610be6565b60405161031a9190612d73565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612ec3565b610bec565b005b34801561035857600080fd5b50610361610c0e565b60405161036e9190612d73565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612f0c565b610c25565b005b3480156103ac57600080fd5b506103b5610f4a565b6040516103c29190612d73565b60405180910390f35b3480156103d757600080fd5b506103e0610f50565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612f5f565b610f84565b6040516104169190612b63565b60405180910390f35b34801561042b57600080fd5b50610434610fa4565b005b34801561044257600080fd5b5061045d60048036038101906104589190612f0c565b610ff5565b005b34801561046b57600080fd5b5061048660048036038101906104819190612c6f565b611015565b005b34801561049457600080fd5b5061049d611027565b6040516104aa9190612c17565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613054565b6110b5565b6040516104e79190613200565b60405180910390f35b3480156104fc57600080fd5b50610505611176565b6040516105129190612b63565b60405180910390f35b34801561052757600080fd5b50610530611189565b60405161053d9190612c17565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612c6f565b611217565b60405161057a9190612cdd565b60405180910390f35b34801561058f57600080fd5b50610598611229565b6040516105a59190612d73565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612f5f565b61122f565b6040516105e29190612d73565b60405180910390f35b3480156105f757600080fd5b506106006112e8565b005b34801561060e57600080fd5b5061062960048036038101906106249190612ec3565b6112fc565b005b34801561063757600080fd5b50610652600480360381019061064d9190612f5f565b61131e565b60405161065f91906132e0565b60405180910390f35b34801561067457600080fd5b5061067d611468565b60405161068a9190612cdd565b60405180910390f35b34801561069f57600080fd5b506106a8611492565b6040516106b59190612c17565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190613302565b611524565b6040516106f291906132e0565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d9190612c6f565b611738565b005b61073e60048036038101906107399190612c6f565b61174a565b005b34801561074c57600080fd5b5061076760048036038101906107629190613381565b611add565b005b34801561077557600080fd5b5061077e611c55565b60405161078b9190612d73565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190613462565b611c5b565b005b3480156107c957600080fd5b506107e460048036038101906107df9190612c6f565b611cce565b6040516107f1919061353a565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190612c6f565b611d38565b60405161082e9190612c17565b60405180910390f35b34801561084357600080fd5b5061084c611de2565b6040516108599190612d73565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190612f5f565b611de8565b6040516108969190612d73565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613555565b611dfa565b6040516108d39190612b63565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190612f5f565b611e8e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109905750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109a6906135c4565b80601f01602080910402602001604051908101604052809291908181526020018280546109d2906135c4565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b6000610a3482611f12565b610a6a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab082611217565b90508073ffffffffffffffffffffffffffffffffffffffff16610ad1611f71565b73ffffffffffffffffffffffffffffffffffffffff1614610b3457610afd81610af8611f71565b611dfa565b610b33576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e5481565b610bf4611f79565b8060129080519060200190610c0a9291906129bd565b5050565b6000610c18611ff7565b6001546000540303905090565b6000610c3082612000565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c97576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca3846120ce565b91509150610cb98187610cb4611f71565b6120f0565b610d0557610cce86610cc9611f71565b611dfa565b610d04576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d6c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d798686866001612134565b8015610d8457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5285610e2e88888761213a565b7c020000000000000000000000000000000000000000000000000000000017612162565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610eda576000600185019050600060046000838152602001908152602001600020541415610ed8576000548114610ed7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f42868686600161218d565b505050505050565b600b5481565b610f58611f79565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915054906101000a900460ff1681565b610fac611f79565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ff2573d6000803e3d6000fd5b50565b61101083838360405180602001604052806000815250611c5b565b505050565b61101d611f79565b80600e8190555050565b60128054611034906135c4565b80601f0160208091040260200160405190810160405280929190818152602001828054611060906135c4565b80156110ad5780601f10611082576101008083540402835291602001916110ad565b820191906000526020600020905b81548152906001019060200180831161109057829003601f168201915b505050505081565b606060008251905060008167ffffffffffffffff8111156110d9576110d8612d98565b5b60405190808252806020026020018201604052801561111257816020015b6110ff612a43565b8152602001906001900390816110f75790505b50905060005b82811461116b57611142858281518110611135576111346135f6565b5b6020026020010151611cce565b828281518110611155576111546135f6565b5b6020026020010181905250806001019050611118565b508092505050919050565b601060009054906101000a900460ff1681565b60118054611196906135c4565b80601f01602080910402602001604051908101604052809291908181526020018280546111c2906135c4565b801561120f5780601f106111e45761010080835404028352916020019161120f565b820191906000526020600020905b8154815290600101906020018083116111f257829003601f168201915b505050505081565b600061122282612000565b9050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611297576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112f0611f79565b6112fa6000612193565b565b611304611f79565b806011908051906020019061131a9291906129bd565b5050565b6060600080600061132e8561122f565b905060008167ffffffffffffffff81111561134c5761134b612d98565b5b60405190808252806020026020018201604052801561137a5781602001602082028036833780820191505090505b509050611385612a43565b600061138f611ff7565b90505b83861461145a576113a281612259565b91508160400151156113b35761144f565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146113f357816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561144e5780838780600101985081518110611441576114406135f6565b5b6020026020010181815250505b5b806001019050611392565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114a1906135c4565b80601f01602080910402602001604051908101604052809291908181526020018280546114cd906135c4565b801561151a5780601f106114ef5761010080835404028352916020019161151a565b820191906000526020600020905b8154815290600101906020018083116114fd57829003601f168201915b5050505050905090565b606081831061155f576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061156a612284565b9050611574611ff7565b85101561158657611583611ff7565b94505b80841115611592578093505b600061159d8761122f565b9050848610156115c05760008686039050818110156115ba578091505b506115c5565b600090505b60008167ffffffffffffffff8111156115e1576115e0612d98565b5b60405190808252806020026020018201604052801561160f5781602001602082028036833780820191505090505b50905060008214156116275780945050505050611731565b600061163288611cce565b90506000816040015161164757816000015190505b60008990505b88811415801561165d5750848714155b156117235761166b81612259565b925082604001511561167c57611718565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146116bc57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611717578084888060010199508151811061170a576117096135f6565b5b6020026020010181815250505b5b80600101905061164d565b508583528296505050505050505b9392505050565b611740611f79565b80600d8190555050565b60026009541415611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613671565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd906136dd565b60405180910390fd5b601060009054906101000a900460ff1615611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613749565b60405180910390fd5b600c548161186333611de8565b61186d9190613798565b11156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a59061383a565b60405180910390fd5b6000811180156118c05750600d548111155b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f6906138a6565b60405180910390fd5b600a548161190b610c0e565b6119159190613798565b1115611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90613912565b60405180910390fd5b600f600061196261228d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a045780600e546119bd9190613932565b3410156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906139d8565b60405180910390fd5b611ac1565b600e5481600e54611a159190613932565b611a1f91906139f8565b341015611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a58906139d8565b60405180910390fd5b6001600f6000611a6f61228d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b611ad2611acc61228d565b82612295565b600160098190555050565b611ae5611f71565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b4a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b57611f71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c04611f71565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c499190612b63565b60405180910390a35050565b600d5481565b611c66848484610c25565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cc857611c91848484846122b3565b611cc7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611cd6612a43565b611cde612a43565b611ce6611ff7565b831080611cfa5750611cf6612284565b8310155b15611d085780915050611d33565b611d1183612259565b9050806040015115611d265780915050611d33565b611d2f83612413565b9150505b919050565b6060611d4382611f12565b611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7990613a9e565b60405180910390fd5b6000611d8c612433565b90506000815111611dac5760405180602001604052806000815250611dda565b80611db6846124c5565b6012604051602001611dca93929190613b8e565b6040516020818303038152906040525b915050919050565b600a5481565b6000611df382612626565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e96611f79565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613c31565b60405180910390fd5b611f0f81612193565b50565b600081611f1d611ff7565b11158015611f2c575060005482105b8015611f6a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611f8161228d565b73ffffffffffffffffffffffffffffffffffffffff16611f9f611468565b73ffffffffffffffffffffffffffffffffffffffff1614611ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fec90613c9d565b60405180910390fd5b565b60006001905090565b6000808290508061200f611ff7565b11612097576000548110156120965760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612094575b600081141561208a57600460008360019003935083815260200190815260200160002054905061205f565b80925050506120c9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861215186868461267d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612261612a43565b61227d6004600084815260200190815260200160002054612686565b9050919050565b60008054905090565b600033905090565b6122af82826040518060200160405280600081525061273c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122d9611f71565b8786866040518563ffffffff1660e01b81526004016122fb9493929190613d12565b602060405180830381600087803b15801561231557600080fd5b505af192505050801561234657506040513d601f19601f820116820180604052508101906123439190613d73565b60015b6123c0573d8060008114612376576040519150601f19603f3d011682016040523d82523d6000602084013e61237b565b606091505b506000815114156123b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61241b612a43565b61242c61242783612000565b612686565b9050919050565b606060118054612442906135c4565b80601f016020809104026020016040519081016040528092919081815260200182805461246e906135c4565b80156124bb5780601f10612490576101008083540402835291602001916124bb565b820191906000526020600020905b81548152906001019060200180831161249e57829003601f168201915b5050505050905090565b6060600082141561250d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612621565b600082905060005b6000821461253f57808061252890613da0565b915050600a826125389190613e18565b9150612515565b60008167ffffffffffffffff81111561255b5761255a612d98565b5b6040519080825280601f01601f19166020018201604052801561258d5781602001600182028036833780820191505090505b5090505b6000851461261a576001826125a691906139f8565b9150600a856125b59190613e49565b60306125c19190613798565b60f81b8183815181106125d7576125d66135f6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126139190613e18565b9450612591565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b61268e612a43565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b61274683836127d9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127d457600080549050600083820390505b61278660008683806001019450866122b3565b6127bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106127735781600054146127d157600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612846576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612881576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61288e6000848385612134565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612905836128f6600086600061213a565b6128ff856129ad565b17612162565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612929578060008190555050506129a8600084838561218d565b505050565b60006001821460e11b9050919050565b8280546129c9906135c4565b90600052602060002090601f0160209004810192826129eb5760008555612a32565b82601f10612a0457805160ff1916838001178555612a32565b82800160010185558215612a32579182015b82811115612a31578251825591602001919060010190612a16565b5b509050612a3f9190612a92565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612aab576000816000905550600101612a93565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612af881612ac3565b8114612b0357600080fd5b50565b600081359050612b1581612aef565b92915050565b600060208284031215612b3157612b30612ab9565b5b6000612b3f84828501612b06565b91505092915050565b60008115159050919050565b612b5d81612b48565b82525050565b6000602082019050612b786000830184612b54565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bb8578082015181840152602081019050612b9d565b83811115612bc7576000848401525b50505050565b6000601f19601f8301169050919050565b6000612be982612b7e565b612bf38185612b89565b9350612c03818560208601612b9a565b612c0c81612bcd565b840191505092915050565b60006020820190508181036000830152612c318184612bde565b905092915050565b6000819050919050565b612c4c81612c39565b8114612c5757600080fd5b50565b600081359050612c6981612c43565b92915050565b600060208284031215612c8557612c84612ab9565b5b6000612c9384828501612c5a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cc782612c9c565b9050919050565b612cd781612cbc565b82525050565b6000602082019050612cf26000830184612cce565b92915050565b612d0181612cbc565b8114612d0c57600080fd5b50565b600081359050612d1e81612cf8565b92915050565b60008060408385031215612d3b57612d3a612ab9565b5b6000612d4985828601612d0f565b9250506020612d5a85828601612c5a565b9150509250929050565b612d6d81612c39565b82525050565b6000602082019050612d886000830184612d64565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dd082612bcd565b810181811067ffffffffffffffff82111715612def57612dee612d98565b5b80604052505050565b6000612e02612aaf565b9050612e0e8282612dc7565b919050565b600067ffffffffffffffff821115612e2e57612e2d612d98565b5b612e3782612bcd565b9050602081019050919050565b82818337600083830152505050565b6000612e66612e6184612e13565b612df8565b905082815260208101848484011115612e8257612e81612d93565b5b612e8d848285612e44565b509392505050565b600082601f830112612eaa57612ea9612d8e565b5b8135612eba848260208601612e53565b91505092915050565b600060208284031215612ed957612ed8612ab9565b5b600082013567ffffffffffffffff811115612ef757612ef6612abe565b5b612f0384828501612e95565b91505092915050565b600080600060608486031215612f2557612f24612ab9565b5b6000612f3386828701612d0f565b9350506020612f4486828701612d0f565b9250506040612f5586828701612c5a565b9150509250925092565b600060208284031215612f7557612f74612ab9565b5b6000612f8384828501612d0f565b91505092915050565b600067ffffffffffffffff821115612fa757612fa6612d98565b5b602082029050602081019050919050565b600080fd5b6000612fd0612fcb84612f8c565b612df8565b90508083825260208201905060208402830185811115612ff357612ff2612fb8565b5b835b8181101561301c57806130088882612c5a565b845260208401935050602081019050612ff5565b5050509392505050565b600082601f83011261303b5761303a612d8e565b5b813561304b848260208601612fbd565b91505092915050565b60006020828403121561306a57613069612ab9565b5b600082013567ffffffffffffffff81111561308857613087612abe565b5b61309484828501613026565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130d281612cbc565b82525050565b600067ffffffffffffffff82169050919050565b6130f5816130d8565b82525050565b61310481612b48565b82525050565b600062ffffff82169050919050565b6131228161310a565b82525050565b60808201600082015161313e60008501826130c9565b50602082015161315160208501826130ec565b50604082015161316460408501826130fb565b5060608201516131776060850182613119565b50505050565b60006131898383613128565b60808301905092915050565b6000602082019050919050565b60006131ad8261309d565b6131b781856130a8565b93506131c2836130b9565b8060005b838110156131f35781516131da888261317d565b97506131e583613195565b9250506001810190506131c6565b5085935050505092915050565b6000602082019050818103600083015261321a81846131a2565b905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61325781612c39565b82525050565b6000613269838361324e565b60208301905092915050565b6000602082019050919050565b600061328d82613222565b613297818561322d565b93506132a28361323e565b8060005b838110156132d35781516132ba888261325d565b97506132c583613275565b9250506001810190506132a6565b5085935050505092915050565b600060208201905081810360008301526132fa8184613282565b905092915050565b60008060006060848603121561331b5761331a612ab9565b5b600061332986828701612d0f565b935050602061333a86828701612c5a565b925050604061334b86828701612c5a565b9150509250925092565b61335e81612b48565b811461336957600080fd5b50565b60008135905061337b81613355565b92915050565b6000806040838503121561339857613397612ab9565b5b60006133a685828601612d0f565b92505060206133b78582860161336c565b9150509250929050565b600067ffffffffffffffff8211156133dc576133db612d98565b5b6133e582612bcd565b9050602081019050919050565b6000613405613400846133c1565b612df8565b90508281526020810184848401111561342157613420612d93565b5b61342c848285612e44565b509392505050565b600082601f83011261344957613448612d8e565b5b81356134598482602086016133f2565b91505092915050565b6000806000806080858703121561347c5761347b612ab9565b5b600061348a87828801612d0f565b945050602061349b87828801612d0f565b93505060406134ac87828801612c5a565b925050606085013567ffffffffffffffff8111156134cd576134cc612abe565b5b6134d987828801613434565b91505092959194509250565b6080820160008201516134fb60008501826130c9565b50602082015161350e60208501826130ec565b50604082015161352160408501826130fb565b5060608201516135346060850182613119565b50505050565b600060808201905061354f60008301846134e5565b92915050565b6000806040838503121561356c5761356b612ab9565b5b600061357a85828601612d0f565b925050602061358b85828601612d0f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135dc57607f821691505b602082108114156135f0576135ef613595565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061365b601f83612b89565b915061366682613625565b602082019050919050565b6000602082019050818103600083015261368a8161364e565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006136c7601e83612b89565b91506136d282613691565b602082019050919050565b600060208201905081810360008301526136f6816136ba565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613733601783612b89565b915061373e826136fd565b602082019050919050565b6000602082019050818103600083015261376281613726565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137a382612c39565b91506137ae83612c39565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137e3576137e2613769565b5b828201905092915050565b7f5045525f57414c4c45545f4c494d49545f524541434845440000000000000000600082015250565b6000613824601883612b89565b915061382f826137ee565b602082019050919050565b6000602082019050818103600083015261385381613817565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613890601483612b89565b915061389b8261385a565b602082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006138fc601483612b89565b9150613907826138c6565b602082019050919050565b6000602082019050818103600083015261392b816138ef565b9050919050565b600061393d82612c39565b915061394883612c39565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561398157613980613769565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006139c2601383612b89565b91506139cd8261398c565b602082019050919050565b600060208201905081810360008301526139f1816139b5565b9050919050565b6000613a0382612c39565b9150613a0e83612c39565b925082821015613a2157613a20613769565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a88602f83612b89565b9150613a9382613a2c565b604082019050919050565b60006020820190508181036000830152613ab781613a7b565b9050919050565b600081905092915050565b6000613ad482612b7e565b613ade8185613abe565b9350613aee818560208601612b9a565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613b1c816135c4565b613b268186613abe565b94506001821660008114613b415760018114613b5257613b85565b60ff19831686528186019350613b85565b613b5b85613afa565b60005b83811015613b7d57815481890152600182019150602081019050613b5e565b838801955050505b50505092915050565b6000613b9a8286613ac9565b9150613ba68285613ac9565b9150613bb28284613b0f565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c1b602683612b89565b9150613c2682613bbf565b604082019050919050565b60006020820190508181036000830152613c4a81613c0e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c87602083612b89565b9150613c9282613c51565b602082019050919050565b60006020820190508181036000830152613cb681613c7a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ce482613cbd565b613cee8185613cc8565b9350613cfe818560208601612b9a565b613d0781612bcd565b840191505092915050565b6000608082019050613d276000830187612cce565b613d346020830186612cce565b613d416040830185612d64565b8181036060830152613d538184613cd9565b905095945050505050565b600081519050613d6d81612aef565b92915050565b600060208284031215613d8957613d88612ab9565b5b6000613d9784828501613d5e565b91505092915050565b6000613dab82612c39565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dde57613ddd613769565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e2382612c39565b9150613e2e83612c39565b925082613e3e57613e3d613de9565b5b828204905092915050565b6000613e5482612c39565b9150613e5f83612c39565b925082613e6f57613e6e613de9565b5b82820690509291505056fea26469706673582212203775a733bc77f033ea7e150ba2f3e0420daf3f7348f0b524fce4b24bc64e0b9164736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a6f396d346b4d757963437636616d58616457626a56784d6d6f6e6b4e7546526772524a4e6d464d684443552f00000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063639814e011610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107fa578063d5abeb0114610837578063dc33e68114610862578063e985e9c51461089f578063f2fde38b146108dc57610225565b8063a0712d6814610724578063a22cb46514610740578063a40d36cd14610769578063b88d4fde14610794578063c23dc68f146107bd57610225565b80638462151c116100f25780638462151c1461062b5780638da5cb5b1461066857806395d89b411461069357806399a2557a146106be5780639b7f13d0146106fb57610225565b8063639814e01461058357806370a08231146105ae578063715018a6146105eb5780637ec4a6591461060257610225565b806337a66d85116101b15780635503a0e8116101755780635503a0e8146104885780635bbb2177146104b35780635c975abb146104f057806362b99ad41461051b5780636352211e1461054657610225565b806337a66d85146103cb578063389fcf06146103e25780633ccfd60b1461041f57806342842e0e1461043657806344a0d68a1461045f57610225565b806313faede6116101f857806313faede6146102f857806316ba10e01461032357806318160ddd1461034c57806323b872dd1461037757806331448007146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612b1b565b610905565b60405161025e9190612b63565b60405180910390f35b34801561027357600080fd5b5061027c610997565b6040516102899190612c17565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612c6f565b610a29565b6040516102c69190612cdd565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612d24565b610aa5565b005b34801561030457600080fd5b5061030d610be6565b60405161031a9190612d73565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612ec3565b610bec565b005b34801561035857600080fd5b50610361610c0e565b60405161036e9190612d73565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612f0c565b610c25565b005b3480156103ac57600080fd5b506103b5610f4a565b6040516103c29190612d73565b60405180910390f35b3480156103d757600080fd5b506103e0610f50565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612f5f565b610f84565b6040516104169190612b63565b60405180910390f35b34801561042b57600080fd5b50610434610fa4565b005b34801561044257600080fd5b5061045d60048036038101906104589190612f0c565b610ff5565b005b34801561046b57600080fd5b5061048660048036038101906104819190612c6f565b611015565b005b34801561049457600080fd5b5061049d611027565b6040516104aa9190612c17565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613054565b6110b5565b6040516104e79190613200565b60405180910390f35b3480156104fc57600080fd5b50610505611176565b6040516105129190612b63565b60405180910390f35b34801561052757600080fd5b50610530611189565b60405161053d9190612c17565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612c6f565b611217565b60405161057a9190612cdd565b60405180910390f35b34801561058f57600080fd5b50610598611229565b6040516105a59190612d73565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612f5f565b61122f565b6040516105e29190612d73565b60405180910390f35b3480156105f757600080fd5b506106006112e8565b005b34801561060e57600080fd5b5061062960048036038101906106249190612ec3565b6112fc565b005b34801561063757600080fd5b50610652600480360381019061064d9190612f5f565b61131e565b60405161065f91906132e0565b60405180910390f35b34801561067457600080fd5b5061067d611468565b60405161068a9190612cdd565b60405180910390f35b34801561069f57600080fd5b506106a8611492565b6040516106b59190612c17565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190613302565b611524565b6040516106f291906132e0565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d9190612c6f565b611738565b005b61073e60048036038101906107399190612c6f565b61174a565b005b34801561074c57600080fd5b5061076760048036038101906107629190613381565b611add565b005b34801561077557600080fd5b5061077e611c55565b60405161078b9190612d73565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190613462565b611c5b565b005b3480156107c957600080fd5b506107e460048036038101906107df9190612c6f565b611cce565b6040516107f1919061353a565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190612c6f565b611d38565b60405161082e9190612c17565b60405180910390f35b34801561084357600080fd5b5061084c611de2565b6040516108599190612d73565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190612f5f565b611de8565b6040516108969190612d73565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613555565b611dfa565b6040516108d39190612b63565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190612f5f565b611e8e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109905750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109a6906135c4565b80601f01602080910402602001604051908101604052809291908181526020018280546109d2906135c4565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b6000610a3482611f12565b610a6a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab082611217565b90508073ffffffffffffffffffffffffffffffffffffffff16610ad1611f71565b73ffffffffffffffffffffffffffffffffffffffff1614610b3457610afd81610af8611f71565b611dfa565b610b33576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e5481565b610bf4611f79565b8060129080519060200190610c0a9291906129bd565b5050565b6000610c18611ff7565b6001546000540303905090565b6000610c3082612000565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c97576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca3846120ce565b91509150610cb98187610cb4611f71565b6120f0565b610d0557610cce86610cc9611f71565b611dfa565b610d04576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d6c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d798686866001612134565b8015610d8457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5285610e2e88888761213a565b7c020000000000000000000000000000000000000000000000000000000017612162565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610eda576000600185019050600060046000838152602001908152602001600020541415610ed8576000548114610ed7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f42868686600161218d565b505050505050565b600b5481565b610f58611f79565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915054906101000a900460ff1681565b610fac611f79565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ff2573d6000803e3d6000fd5b50565b61101083838360405180602001604052806000815250611c5b565b505050565b61101d611f79565b80600e8190555050565b60128054611034906135c4565b80601f0160208091040260200160405190810160405280929190818152602001828054611060906135c4565b80156110ad5780601f10611082576101008083540402835291602001916110ad565b820191906000526020600020905b81548152906001019060200180831161109057829003601f168201915b505050505081565b606060008251905060008167ffffffffffffffff8111156110d9576110d8612d98565b5b60405190808252806020026020018201604052801561111257816020015b6110ff612a43565b8152602001906001900390816110f75790505b50905060005b82811461116b57611142858281518110611135576111346135f6565b5b6020026020010151611cce565b828281518110611155576111546135f6565b5b6020026020010181905250806001019050611118565b508092505050919050565b601060009054906101000a900460ff1681565b60118054611196906135c4565b80601f01602080910402602001604051908101604052809291908181526020018280546111c2906135c4565b801561120f5780601f106111e45761010080835404028352916020019161120f565b820191906000526020600020905b8154815290600101906020018083116111f257829003601f168201915b505050505081565b600061122282612000565b9050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611297576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112f0611f79565b6112fa6000612193565b565b611304611f79565b806011908051906020019061131a9291906129bd565b5050565b6060600080600061132e8561122f565b905060008167ffffffffffffffff81111561134c5761134b612d98565b5b60405190808252806020026020018201604052801561137a5781602001602082028036833780820191505090505b509050611385612a43565b600061138f611ff7565b90505b83861461145a576113a281612259565b91508160400151156113b35761144f565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146113f357816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561144e5780838780600101985081518110611441576114406135f6565b5b6020026020010181815250505b5b806001019050611392565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114a1906135c4565b80601f01602080910402602001604051908101604052809291908181526020018280546114cd906135c4565b801561151a5780601f106114ef5761010080835404028352916020019161151a565b820191906000526020600020905b8154815290600101906020018083116114fd57829003601f168201915b5050505050905090565b606081831061155f576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061156a612284565b9050611574611ff7565b85101561158657611583611ff7565b94505b80841115611592578093505b600061159d8761122f565b9050848610156115c05760008686039050818110156115ba578091505b506115c5565b600090505b60008167ffffffffffffffff8111156115e1576115e0612d98565b5b60405190808252806020026020018201604052801561160f5781602001602082028036833780820191505090505b50905060008214156116275780945050505050611731565b600061163288611cce565b90506000816040015161164757816000015190505b60008990505b88811415801561165d5750848714155b156117235761166b81612259565b925082604001511561167c57611718565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146116bc57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611717578084888060010199508151811061170a576117096135f6565b5b6020026020010181815250505b5b80600101905061164d565b508583528296505050505050505b9392505050565b611740611f79565b80600d8190555050565b60026009541415611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613671565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd906136dd565b60405180910390fd5b601060009054906101000a900460ff1615611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613749565b60405180910390fd5b600c548161186333611de8565b61186d9190613798565b11156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a59061383a565b60405180910390fd5b6000811180156118c05750600d548111155b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f6906138a6565b60405180910390fd5b600a548161190b610c0e565b6119159190613798565b1115611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90613912565b60405180910390fd5b600f600061196261228d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a045780600e546119bd9190613932565b3410156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906139d8565b60405180910390fd5b611ac1565b600e5481600e54611a159190613932565b611a1f91906139f8565b341015611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a58906139d8565b60405180910390fd5b6001600f6000611a6f61228d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b611ad2611acc61228d565b82612295565b600160098190555050565b611ae5611f71565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b4a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b57611f71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c04611f71565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c499190612b63565b60405180910390a35050565b600d5481565b611c66848484610c25565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cc857611c91848484846122b3565b611cc7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611cd6612a43565b611cde612a43565b611ce6611ff7565b831080611cfa5750611cf6612284565b8310155b15611d085780915050611d33565b611d1183612259565b9050806040015115611d265780915050611d33565b611d2f83612413565b9150505b919050565b6060611d4382611f12565b611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7990613a9e565b60405180910390fd5b6000611d8c612433565b90506000815111611dac5760405180602001604052806000815250611dda565b80611db6846124c5565b6012604051602001611dca93929190613b8e565b6040516020818303038152906040525b915050919050565b600a5481565b6000611df382612626565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e96611f79565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613c31565b60405180910390fd5b611f0f81612193565b50565b600081611f1d611ff7565b11158015611f2c575060005482105b8015611f6a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611f8161228d565b73ffffffffffffffffffffffffffffffffffffffff16611f9f611468565b73ffffffffffffffffffffffffffffffffffffffff1614611ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fec90613c9d565b60405180910390fd5b565b60006001905090565b6000808290508061200f611ff7565b11612097576000548110156120965760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612094575b600081141561208a57600460008360019003935083815260200190815260200160002054905061205f565b80925050506120c9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861215186868461267d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612261612a43565b61227d6004600084815260200190815260200160002054612686565b9050919050565b60008054905090565b600033905090565b6122af82826040518060200160405280600081525061273c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122d9611f71565b8786866040518563ffffffff1660e01b81526004016122fb9493929190613d12565b602060405180830381600087803b15801561231557600080fd5b505af192505050801561234657506040513d601f19601f820116820180604052508101906123439190613d73565b60015b6123c0573d8060008114612376576040519150601f19603f3d011682016040523d82523d6000602084013e61237b565b606091505b506000815114156123b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61241b612a43565b61242c61242783612000565b612686565b9050919050565b606060118054612442906135c4565b80601f016020809104026020016040519081016040528092919081815260200182805461246e906135c4565b80156124bb5780601f10612490576101008083540402835291602001916124bb565b820191906000526020600020905b81548152906001019060200180831161249e57829003601f168201915b5050505050905090565b6060600082141561250d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612621565b600082905060005b6000821461253f57808061252890613da0565b915050600a826125389190613e18565b9150612515565b60008167ffffffffffffffff81111561255b5761255a612d98565b5b6040519080825280601f01601f19166020018201604052801561258d5781602001600182028036833780820191505090505b5090505b6000851461261a576001826125a691906139f8565b9150600a856125b59190613e49565b60306125c19190613798565b60f81b8183815181106125d7576125d66135f6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126139190613e18565b9450612591565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b61268e612a43565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b61274683836127d9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127d457600080549050600083820390505b61278660008683806001019450866122b3565b6127bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106127735781600054146127d157600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612846576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612881576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61288e6000848385612134565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612905836128f6600086600061213a565b6128ff856129ad565b17612162565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612929578060008190555050506129a8600084838561218d565b505050565b60006001821460e11b9050919050565b8280546129c9906135c4565b90600052602060002090601f0160209004810192826129eb5760008555612a32565b82601f10612a0457805160ff1916838001178555612a32565b82800160010185558215612a32579182015b82811115612a31578251825591602001919060010190612a16565b5b509050612a3f9190612a92565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612aab576000816000905550600101612a93565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612af881612ac3565b8114612b0357600080fd5b50565b600081359050612b1581612aef565b92915050565b600060208284031215612b3157612b30612ab9565b5b6000612b3f84828501612b06565b91505092915050565b60008115159050919050565b612b5d81612b48565b82525050565b6000602082019050612b786000830184612b54565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bb8578082015181840152602081019050612b9d565b83811115612bc7576000848401525b50505050565b6000601f19601f8301169050919050565b6000612be982612b7e565b612bf38185612b89565b9350612c03818560208601612b9a565b612c0c81612bcd565b840191505092915050565b60006020820190508181036000830152612c318184612bde565b905092915050565b6000819050919050565b612c4c81612c39565b8114612c5757600080fd5b50565b600081359050612c6981612c43565b92915050565b600060208284031215612c8557612c84612ab9565b5b6000612c9384828501612c5a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cc782612c9c565b9050919050565b612cd781612cbc565b82525050565b6000602082019050612cf26000830184612cce565b92915050565b612d0181612cbc565b8114612d0c57600080fd5b50565b600081359050612d1e81612cf8565b92915050565b60008060408385031215612d3b57612d3a612ab9565b5b6000612d4985828601612d0f565b9250506020612d5a85828601612c5a565b9150509250929050565b612d6d81612c39565b82525050565b6000602082019050612d886000830184612d64565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dd082612bcd565b810181811067ffffffffffffffff82111715612def57612dee612d98565b5b80604052505050565b6000612e02612aaf565b9050612e0e8282612dc7565b919050565b600067ffffffffffffffff821115612e2e57612e2d612d98565b5b612e3782612bcd565b9050602081019050919050565b82818337600083830152505050565b6000612e66612e6184612e13565b612df8565b905082815260208101848484011115612e8257612e81612d93565b5b612e8d848285612e44565b509392505050565b600082601f830112612eaa57612ea9612d8e565b5b8135612eba848260208601612e53565b91505092915050565b600060208284031215612ed957612ed8612ab9565b5b600082013567ffffffffffffffff811115612ef757612ef6612abe565b5b612f0384828501612e95565b91505092915050565b600080600060608486031215612f2557612f24612ab9565b5b6000612f3386828701612d0f565b9350506020612f4486828701612d0f565b9250506040612f5586828701612c5a565b9150509250925092565b600060208284031215612f7557612f74612ab9565b5b6000612f8384828501612d0f565b91505092915050565b600067ffffffffffffffff821115612fa757612fa6612d98565b5b602082029050602081019050919050565b600080fd5b6000612fd0612fcb84612f8c565b612df8565b90508083825260208201905060208402830185811115612ff357612ff2612fb8565b5b835b8181101561301c57806130088882612c5a565b845260208401935050602081019050612ff5565b5050509392505050565b600082601f83011261303b5761303a612d8e565b5b813561304b848260208601612fbd565b91505092915050565b60006020828403121561306a57613069612ab9565b5b600082013567ffffffffffffffff81111561308857613087612abe565b5b61309484828501613026565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130d281612cbc565b82525050565b600067ffffffffffffffff82169050919050565b6130f5816130d8565b82525050565b61310481612b48565b82525050565b600062ffffff82169050919050565b6131228161310a565b82525050565b60808201600082015161313e60008501826130c9565b50602082015161315160208501826130ec565b50604082015161316460408501826130fb565b5060608201516131776060850182613119565b50505050565b60006131898383613128565b60808301905092915050565b6000602082019050919050565b60006131ad8261309d565b6131b781856130a8565b93506131c2836130b9565b8060005b838110156131f35781516131da888261317d565b97506131e583613195565b9250506001810190506131c6565b5085935050505092915050565b6000602082019050818103600083015261321a81846131a2565b905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61325781612c39565b82525050565b6000613269838361324e565b60208301905092915050565b6000602082019050919050565b600061328d82613222565b613297818561322d565b93506132a28361323e565b8060005b838110156132d35781516132ba888261325d565b97506132c583613275565b9250506001810190506132a6565b5085935050505092915050565b600060208201905081810360008301526132fa8184613282565b905092915050565b60008060006060848603121561331b5761331a612ab9565b5b600061332986828701612d0f565b935050602061333a86828701612c5a565b925050604061334b86828701612c5a565b9150509250925092565b61335e81612b48565b811461336957600080fd5b50565b60008135905061337b81613355565b92915050565b6000806040838503121561339857613397612ab9565b5b60006133a685828601612d0f565b92505060206133b78582860161336c565b9150509250929050565b600067ffffffffffffffff8211156133dc576133db612d98565b5b6133e582612bcd565b9050602081019050919050565b6000613405613400846133c1565b612df8565b90508281526020810184848401111561342157613420612d93565b5b61342c848285612e44565b509392505050565b600082601f83011261344957613448612d8e565b5b81356134598482602086016133f2565b91505092915050565b6000806000806080858703121561347c5761347b612ab9565b5b600061348a87828801612d0f565b945050602061349b87828801612d0f565b93505060406134ac87828801612c5a565b925050606085013567ffffffffffffffff8111156134cd576134cc612abe565b5b6134d987828801613434565b91505092959194509250565b6080820160008201516134fb60008501826130c9565b50602082015161350e60208501826130ec565b50604082015161352160408501826130fb565b5060608201516135346060850182613119565b50505050565b600060808201905061354f60008301846134e5565b92915050565b6000806040838503121561356c5761356b612ab9565b5b600061357a85828601612d0f565b925050602061358b85828601612d0f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135dc57607f821691505b602082108114156135f0576135ef613595565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061365b601f83612b89565b915061366682613625565b602082019050919050565b6000602082019050818103600083015261368a8161364e565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006136c7601e83612b89565b91506136d282613691565b602082019050919050565b600060208201905081810360008301526136f6816136ba565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613733601783612b89565b915061373e826136fd565b602082019050919050565b6000602082019050818103600083015261376281613726565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137a382612c39565b91506137ae83612c39565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137e3576137e2613769565b5b828201905092915050565b7f5045525f57414c4c45545f4c494d49545f524541434845440000000000000000600082015250565b6000613824601883612b89565b915061382f826137ee565b602082019050919050565b6000602082019050818103600083015261385381613817565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613890601483612b89565b915061389b8261385a565b602082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006138fc601483612b89565b9150613907826138c6565b602082019050919050565b6000602082019050818103600083015261392b816138ef565b9050919050565b600061393d82612c39565b915061394883612c39565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561398157613980613769565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006139c2601383612b89565b91506139cd8261398c565b602082019050919050565b600060208201905081810360008301526139f1816139b5565b9050919050565b6000613a0382612c39565b9150613a0e83612c39565b925082821015613a2157613a20613769565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a88602f83612b89565b9150613a9382613a2c565b604082019050919050565b60006020820190508181036000830152613ab781613a7b565b9050919050565b600081905092915050565b6000613ad482612b7e565b613ade8185613abe565b9350613aee818560208601612b9a565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613b1c816135c4565b613b268186613abe565b94506001821660008114613b415760018114613b5257613b85565b60ff19831686528186019350613b85565b613b5b85613afa565b60005b83811015613b7d57815481890152600182019150602081019050613b5e565b838801955050505b50505092915050565b6000613b9a8286613ac9565b9150613ba68285613ac9565b9150613bb28284613b0f565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c1b602683612b89565b9150613c2682613bbf565b604082019050919050565b60006020820190508181036000830152613c4a81613c0e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c87602083612b89565b9150613c9282613c51565b602082019050919050565b60006020820190508181036000830152613cb681613c7a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ce482613cbd565b613cee8185613cc8565b9350613cfe818560208601612b9a565b613d0781612bcd565b840191505092915050565b6000608082019050613d276000830187612cce565b613d346020830186612cce565b613d416040830185612d64565b8181036060830152613d538184613cd9565b905095945050505050565b600081519050613d6d81612aef565b92915050565b600060208284031215613d8957613d88612ab9565b5b6000613d9784828501613d5e565b91505092915050565b6000613dab82612c39565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dde57613ddd613769565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e2382612c39565b9150613e2e83612c39565b925082613e3e57613e3d613de9565b5b828204905092915050565b6000613e5482612c39565b9150613e5f83612c39565b925082613e6f57613e6e613de9565b5b82820690509291505056fea26469706673582212203775a733bc77f033ea7e150ba2f3e0420daf3f7348f0b524fce4b24bc64e0b9164736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a6f396d346b4d757963437636616d58616457626a56784d6d6f6e6b4e7546526772524a4e6d464d684443552f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmZo9m4kMuycCv6amXadWbjVxMmonkNuFRgrRJNmFMhDCU/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5a6f396d346b4d757963437636616d58616457626a5678
Arg [3] : 4d6d6f6e6b4e7546526772524a4e6d464d684443552f00000000000000000000


Deployed Bytecode Sourcemap

63174:2712:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24198:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29845:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31791:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31339:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63425:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65459:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23252:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41056:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63317:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65103:67;;;;;;;;;;;;;:::i;:::-;;63462:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65565:107;;;;;;;;;;;;;:::i;:::-;;32681:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65176:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63580:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58424:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63514:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63545:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29634:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63352:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24877:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8789:103;;;;;;;;;;;;;:::i;:::-;;65352:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62236:892;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8141:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30014:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59282:2505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65256:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64020:700;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32067:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63390:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32937:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57845:420;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64726:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63281:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63903:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32446:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9047:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24198:615;24283:4;24598:10;24583:25;;:11;:25;;;;:102;;;;24675:10;24660:25;;:11;:25;;;;24583:102;:179;;;;24752:10;24737:25;;:11;:25;;;;24583:179;24563:199;;24198:615;;;:::o;29845:100::-;29899:13;29932:5;29925:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29845:100;:::o;31791:204::-;31859:7;31884:16;31892:7;31884;:16::i;:::-;31879:64;;31909:34;;;;;;;;;;;;;;31879:64;31963:15;:24;31979:7;31963:24;;;;;;;;;;;;;;;;;;;;;31956:31;;31791:204;;;:::o;31339:386::-;31412:13;31428:16;31436:7;31428;:16::i;:::-;31412:32;;31484:5;31461:28;;:19;:17;:19::i;:::-;:28;;;31457:175;;31509:44;31526:5;31533:19;:17;:19::i;:::-;31509:16;:44::i;:::-;31504:128;;31581:35;;;;;;;;;;;;;;31504:128;31457:175;31671:2;31644:15;:24;31660:7;31644:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31709:7;31705:2;31689:28;;31698:5;31689:28;;;;;;;;;;;;31401:324;31339:386;;:::o;63425:33::-;;;;:::o;65459:100::-;8027:13;:11;:13::i;:::-;65543:10:::1;65531:9;:22;;;;;;;;;;;;:::i;:::-;;65459:100:::0;:::o;23252:315::-;23305:7;23533:15;:13;:15::i;:::-;23518:12;;23502:13;;:28;:46;23495:53;;23252:315;:::o;41056:2800::-;41190:27;41220;41239:7;41220:18;:27::i;:::-;41190:57;;41305:4;41264:45;;41280:19;41264:45;;;41260:86;;41318:28;;;;;;;;;;;;;;41260:86;41360:27;41389:23;41416:28;41436:7;41416:19;:28::i;:::-;41359:85;;;;41544:62;41563:15;41580:4;41586:19;:17;:19::i;:::-;41544:18;:62::i;:::-;41539:174;;41626:43;41643:4;41649:19;:17;:19::i;:::-;41626:16;:43::i;:::-;41621:92;;41678:35;;;;;;;;;;;;;;41621:92;41539:174;41744:1;41730:16;;:2;:16;;;41726:52;;;41755:23;;;;;;;;;;;;;;41726:52;41791:43;41813:4;41819:2;41823:7;41832:1;41791:21;:43::i;:::-;41927:15;41924:160;;;42067:1;42046:19;42039:30;41924:160;42462:18;:24;42481:4;42462:24;;;;;;;;;;;;;;;;42460:26;;;;;;;;;;;;42531:18;:22;42550:2;42531:22;;;;;;;;;;;;;;;;42529:24;;;;;;;;;;;42853:145;42890:2;42938:45;42953:4;42959:2;42963:19;42938:14;:45::i;:::-;20480:8;42911:72;42853:18;:145::i;:::-;42824:17;:26;42842:7;42824:26;;;;;;;;;;;:174;;;;43168:1;20480:8;43118:19;:46;:51;43114:626;;;43190:19;43222:1;43212:7;:11;43190:33;;43379:1;43345:17;:30;43363:11;43345:30;;;;;;;;;;;;:35;43341:384;;;43483:13;;43468:11;:28;43464:242;;43663:19;43630:17;:30;43648:11;43630:30;;;;;;;;;;;:52;;;;43464:242;43341:384;43171:569;43114:626;43787:7;43783:2;43768:27;;43777:4;43768:27;;;;;;;;;;;;43806:42;43827:4;43833:2;43837:7;43846:1;43806:20;:42::i;:::-;41179:2677;;;41056:2800;;;:::o;63317:28::-;;;;:::o;65103:67::-;8027:13;:11;:13::i;:::-;65158:6:::1;;;;;;;;;;;65157:7;65148:6;;:16;;;;;;;;;;;;;;;;;;65103:67::o:0;63462:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;65565:107::-;8027:13;:11;:13::i;:::-;65623:10:::1;65615:28;;:51;65644:21;65615:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65565:107::o:0;32681:185::-;32819:39;32836:4;32842:2;32846:7;32819:39;;;;;;;;;;;;:16;:39::i;:::-;32681:185;;;:::o;65176:74::-;8027:13;:11;:13::i;:::-;65239:5:::1;65232:4;:12;;;;65176:74:::0;:::o;63580:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58424:468::-;58513:23;58574:22;58599:8;:15;58574:40;;58629:34;58687:14;58666:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;58629:73;;58722:9;58717:125;58738:14;58733:1;:19;58717:125;;58794:32;58814:8;58823:1;58814:11;;;;;;;;:::i;:::-;;;;;;;;58794:19;:32::i;:::-;58778:10;58789:1;58778:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;58754:3;;;;;58717:125;;;;58863:10;58856:17;;;;58424:468;;;:::o;63514:25::-;;;;;;;;;;;;;:::o;63545:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29634:144::-;29698:7;29741:27;29760:7;29741:18;:27::i;:::-;29718:52;;29634:144;;;:::o;63352:34::-;;;;:::o;24877:224::-;24941:7;24982:1;24965:19;;:5;:19;;;24961:60;;;24993:28;;;;;;;;;;;;;;24961:60;19432:13;25039:18;:25;25058:5;25039:25;;;;;;;;;;;;;;;;:54;25032:61;;24877:224;;;:::o;8789:103::-;8027:13;:11;:13::i;:::-;8854:30:::1;8881:1;8854:18;:30::i;:::-;8789:103::o:0;65352:100::-;8027:13;:11;:13::i;:::-;65436:10:::1;65424:9;:22;;;;;;;;;;;;:::i;:::-;;65352:100:::0;:::o;62236:892::-;62306:16;62360:19;62394:25;62434:22;62459:16;62469:5;62459:9;:16::i;:::-;62434:41;;62490:25;62532:14;62518:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62490:57;;62562:31;;:::i;:::-;62613:9;62625:15;:13;:15::i;:::-;62613:27;;62608:472;62657:14;62642:11;:29;62608:472;;62709:15;62722:1;62709:12;:15::i;:::-;62697:27;;62747:9;:16;;;62743:73;;;62788:8;;62743:73;62864:1;62838:28;;:9;:14;;;:28;;;62834:111;;62911:9;:14;;;62891:34;;62834:111;62988:5;62967:26;;:17;:26;;;62963:102;;;63044:1;63018:8;63027:13;;;;;;63018:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;62963:102;62608:472;62673:3;;;;;62608:472;;;;63101:8;63094:15;;;;;;;62236:892;;;:::o;8141:87::-;8187:7;8214:6;;;;;;;;;;;8207:13;;8141:87;:::o;30014:104::-;30070:13;30103:7;30096:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30014:104;:::o;59282:2505::-;59417:16;59484:4;59475:5;:13;59471:45;;59497:19;;;;;;;;;;;;;;59471:45;59531:19;59565:17;59585:14;:12;:14::i;:::-;59565:34;;59685:15;:13;:15::i;:::-;59677:5;:23;59673:87;;;59729:15;:13;:15::i;:::-;59721:23;;59673:87;59836:9;59829:4;:16;59825:73;;;59873:9;59866:16;;59825:73;59912:25;59940:16;59950:5;59940:9;:16::i;:::-;59912:44;;60134:4;60126:5;:12;60122:278;;;60159:19;60188:5;60181:4;:12;60159:34;;60230:17;60216:11;:31;60212:111;;;60292:11;60272:31;;60212:111;60140:198;60122:278;;;60383:1;60363:21;;60122:278;60414:25;60456:17;60442:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60414:60;;60514:1;60493:17;:22;60489:78;;;60543:8;60536:15;;;;;;;;60489:78;60711:31;60745:26;60765:5;60745:19;:26::i;:::-;60711:60;;60786:25;61031:9;:16;;;61026:92;;61088:9;:14;;;61068:34;;61026:92;61137:9;61149:5;61137:17;;61132:478;61161:4;61156:1;:9;;:45;;;;;61184:17;61169:11;:32;;61156:45;61132:478;;;61239:15;61252:1;61239:12;:15::i;:::-;61227:27;;61277:9;:16;;;61273:73;;;61318:8;;61273:73;61394:1;61368:28;;:9;:14;;;:28;;;61364:111;;61441:9;:14;;;61421:34;;61364:111;61518:5;61497:26;;:17;:26;;;61493:102;;;61574:1;61548:8;61557:13;;;;;;61548:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;61493:102;61132:478;61203:3;;;;;61132:478;;;;61712:11;61702:8;61695:29;61760:8;61753:15;;;;;;;;59282:2505;;;;;;:::o;65256:90::-;8027:13;:11;:13::i;:::-;65331:9:::1;65320:8;:20;;;;65256:90:::0;:::o;64020:700::-;2567:1;3165:7;;:19;;3157:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2567:1;3298:7;:18;;;;63834:10:::1;63821:23;;:9;:23;;;63813:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;64115:6:::2;;;;;;;;;;;64114:7;64106:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;64210:13;;64195:11;64168:24;64181:10;64168:12;:24::i;:::-;:38;;;;:::i;:::-;:55;;64160:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;64285:1;64271:11;:15;:42;;;;;64305:8;;64290:11;:23;;64271:42;64263:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;64389:9;;64373:11;64357:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;64349:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;64432:10;:24;64443:12;:10;:12::i;:::-;64432:24;;;;;;;;;;;;;;;;;;;;;;;;;64428:242;;;64496:11;64489:4;;:18;;;;:::i;:::-;64476:9;:31;;64468:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;64428:242;;;64594:4;;64580:11;64573:4;;:18;;;;:::i;:::-;:25;;;;:::i;:::-;64560:9;:38;;64552:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;64660:4;64633:10;:24;64644:12;:10;:12::i;:::-;64633:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;64428:242;64678:36;64688:12;:10;:12::i;:::-;64702:11;64678:9;:36::i;:::-;2523:1:::0;3477:7;:22;;;;64020:700;:::o;32067:308::-;32178:19;:17;:19::i;:::-;32166:31;;:8;:31;;;32162:61;;;32206:17;;;;;;;;;;;;;;32162:61;32288:8;32236:18;:39;32255:19;:17;:19::i;:::-;32236:39;;;;;;;;;;;;;;;:49;32276:8;32236:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32348:8;32312:55;;32327:19;:17;:19::i;:::-;32312:55;;;32358:8;32312:55;;;;;;:::i;:::-;;;;;;;;32067:308;;:::o;63390:28::-;;;;:::o;32937:399::-;33104:31;33117:4;33123:2;33127:7;33104:12;:31::i;:::-;33168:1;33150:2;:14;;;:19;33146:183;;33189:56;33220:4;33226:2;33230:7;33239:5;33189:30;:56::i;:::-;33184:145;;33273:40;;;;;;;;;;;;;;33184:145;33146:183;32937:399;;;;:::o;57845:420::-;57921:21;;:::i;:::-;57955:31;;:::i;:::-;58011:15;:13;:15::i;:::-;58001:7;:25;:54;;;;58041:14;:12;:14::i;:::-;58030:7;:25;;58001:54;57997:103;;;58079:9;58072:16;;;;;57997:103;58122:21;58135:7;58122:12;:21::i;:::-;58110:33;;58158:9;:16;;;58154:65;;;58198:9;58191:16;;;;;58154:65;58236:21;58249:7;58236:12;:21::i;:::-;58229:28;;;57845:420;;;;:::o;64726:371::-;64800:13;64830:17;64838:8;64830:7;:17::i;:::-;64822:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;64906:28;64937:10;:8;:10::i;:::-;64906:41;;64992:1;64967:14;64961:28;:32;:130;;;;;;;;;;;;;;;;;65029:14;65045:19;:8;:17;:19::i;:::-;65066:9;65012:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64961:130;64954:137;;;64726:371;;;:::o;63281:32::-;;;;:::o;63903:111::-;63961:7;63988:20;64002:5;63988:13;:20::i;:::-;63981:27;;63903:111;;;:::o;32446:164::-;32543:4;32567:18;:25;32586:5;32567:25;;;;;;;;;;;;;;;:35;32593:8;32567:35;;;;;;;;;;;;;;;;;;;;;;;;;32560:42;;32446:164;;;;:::o;9047:201::-;8027:13;:11;:13::i;:::-;9156:1:::1;9136:22;;:8;:22;;;;9128:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9212:28;9231:8;9212:18;:28::i;:::-;9047:201:::0;:::o;33591:273::-;33648:4;33704:7;33685:15;:13;:15::i;:::-;:26;;:66;;;;;33738:13;;33728:7;:23;33685:66;:152;;;;;33836:1;20202:8;33789:17;:26;33807:7;33789:26;;;;;;;;;;;;:43;:48;33685:152;33665:172;;33591:273;;;:::o;52152:105::-;52212:7;52239:10;52232:17;;52152:105;:::o;8306:132::-;8381:12;:10;:12::i;:::-;8370:23;;:7;:5;:7::i;:::-;:23;;;8362:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8306:132::o;65678:95::-;65743:7;65766:1;65759:8;;65678:95;:::o;26551:1129::-;26618:7;26638:12;26653:7;26638:22;;26721:4;26702:15;:13;:15::i;:::-;:23;26698:915;;26755:13;;26748:4;:20;26744:869;;;26793:14;26810:17;:23;26828:4;26810:23;;;;;;;;;;;;26793:40;;26926:1;20202:8;26899:6;:23;:28;26895:699;;;27418:113;27435:1;27425:6;:11;27418:113;;;27478:17;:25;27496:6;;;;;;;27478:25;;;;;;;;;;;;27469:34;;27418:113;;;27564:6;27557:13;;;;;;26895:699;26770:843;26744:869;26698:915;27641:31;;;;;;;;;;;;;;26551:1129;;;;:::o;39392:652::-;39487:27;39516:23;39557:53;39613:15;39557:71;;39799:7;39793:4;39786:21;39834:22;39828:4;39821:36;39910:4;39904;39894:21;39871:44;;40006:19;40000:26;39981:45;;39737:300;39392:652;;;:::o;40157:645::-;40299:11;40461:15;40455:4;40451:26;40443:34;;40620:15;40609:9;40605:31;40592:44;;40767:15;40756:9;40753:30;40746:4;40735:9;40732:19;40729:55;40719:65;;40157:645;;;;;:::o;50985:159::-;;;;;:::o;49297:309::-;49432:7;49452:16;20603:3;49478:19;:40;;49452:67;;20603:3;49545:31;49556:4;49562:2;49566:9;49545:10;:31::i;:::-;49537:40;;:61;;49530:68;;;49297:309;;;;;:::o;29125:447::-;29205:14;29373:15;29366:5;29362:27;29353:36;;29547:5;29533:11;29509:22;29505:40;29502:51;29495:5;29492:62;29482:72;;29125:447;;;;:::o;51803:158::-;;;;;:::o;9408:191::-;9482:16;9501:6;;;;;;;;;;;9482:25;;9527:8;9518:6;;:17;;;;;;;;;;;;;;;;;;9582:8;9551:40;;9572:8;9551:40;;;;;;;;;;;;9471:128;9408:191;:::o;28228:153::-;28288:21;;:::i;:::-;28329:44;28348:17;:24;28366:5;28348:24;;;;;;;;;;;;28329:18;:44::i;:::-;28322:51;;28228:153;;;:::o;22947:95::-;22994:7;23021:13;;23014:20;;22947:95;:::o;6692:98::-;6745:7;6772:10;6765:17;;6692:98;:::o;33948:104::-;34017:27;34027:2;34031:8;34017:27;;;;;;;;;;;;:9;:27::i;:::-;33948:104;;:::o;47807:716::-;47970:4;48016:2;47991:45;;;48037:19;:17;:19::i;:::-;48058:4;48064:7;48073:5;47991:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47987:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48291:1;48274:6;:13;:18;48270:235;;;48320:40;;;;;;;;;;;;;;48270:235;48463:6;48457:13;48448:6;48444:2;48440:15;48433:38;47987:529;48160:54;;;48150:64;;;:6;:64;;;;48143:71;;;47807:716;;;;;;:::o;28884:158::-;28946:21;;:::i;:::-;28987:47;29006:27;29025:7;29006:18;:27::i;:::-;28987:18;:47::i;:::-;28980:54;;28884:158;;;:::o;65779:104::-;65839:13;65868:9;65861:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65779:104;:::o;3944:723::-;4000:13;4230:1;4221:5;:10;4217:53;;;4248:10;;;;;;;;;;;;;;;;;;;;;4217:53;4280:12;4295:5;4280:20;;4311:14;4336:78;4351:1;4343:4;:9;4336:78;;4369:8;;;;;:::i;:::-;;;;4400:2;4392:10;;;;;:::i;:::-;;;4336:78;;;4424:19;4456:6;4446:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4424:39;;4474:154;4490:1;4481:5;:10;4474:154;;4518:1;4508:11;;;;;:::i;:::-;;;4585:2;4577:5;:10;;;;:::i;:::-;4564:2;:24;;;;:::i;:::-;4551:39;;4534:6;4541;4534:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4614:2;4605:11;;;;;:::i;:::-;;;4474:154;;;4652:6;4638:21;;;;;3944:723;;;;:::o;25183:176::-;25244:7;19432:13;19569:2;25272:18;:25;25291:5;25272:25;;;;;;;;;;;;;;;;:49;;25271:80;25264:87;;25183:176;;;:::o;50182:147::-;50319:6;50182:147;;;;;:::o;27774:363::-;27840:31;;:::i;:::-;27917:6;27884:9;:14;;:41;;;;;;;;;;;20086:3;27970:6;:32;;27936:9;:24;;:67;;;;;;;;;;;28060:1;20202:8;28033:6;:23;:28;;28014:9;:16;;:47;;;;;;;;;;;20603:3;28101:6;:27;;28072:9;:19;;:57;;;;;;;;;;;27774:363;;;:::o;34468:681::-;34591:19;34597:2;34601:8;34591:5;:19::i;:::-;34670:1;34652:2;:14;;;:19;34648:483;;34692:11;34706:13;;34692:27;;34738:13;34760:8;34754:3;:14;34738:30;;34787:233;34818:62;34857:1;34861:2;34865:7;;;;;;34874:5;34818:30;:62::i;:::-;34813:167;;34916:40;;;;;;;;;;;;;;34813:167;35015:3;35007:5;:11;34787:233;;35102:3;35085:13;;:20;35081:34;;35107:8;;;35081:34;34673:458;;34648:483;34468:681;;;:::o;35422:1529::-;35487:20;35510:13;;35487:36;;35552:1;35538:16;;:2;:16;;;35534:48;;;35563:19;;;;;;;;;;;;;;35534:48;35609:1;35597:8;:13;35593:44;;;35619:18;;;;;;;;;;;;;;35593:44;35650:61;35680:1;35684:2;35688:12;35702:8;35650:21;:61::i;:::-;36193:1;19569:2;36164:1;:25;;36163:31;36151:8;:44;36125:18;:22;36144:2;36125:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;36472:139;36509:2;36563:33;36586:1;36590:2;36594:1;36563:14;:33::i;:::-;36530:30;36551:8;36530:20;:30::i;:::-;:66;36472:18;:139::i;:::-;36438:17;:31;36456:12;36438:31;;;;;;;;;;;:173;;;;36628:15;36646:12;36628:30;;36673:11;36702:8;36687:12;:23;36673:37;;36725:101;36777:9;;;;;;36773:2;36752:35;;36769:1;36752:35;;;;;;;;;;;;36821:3;36811:7;:13;36725:101;;36858:3;36842:13;:19;;;;35899:974;;36883:60;36912:1;36916:2;36920:12;36934:8;36883:20;:60::i;:::-;35476:1475;35422:1529;;:::o;30955:322::-;31025:14;31256:1;31246:8;31243:15;31218:23;31214:45;31204:55;;30955:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:311::-;8948:4;9038:18;9030:6;9027:30;9024:56;;;9060:18;;:::i;:::-;9024:56;9110:4;9102:6;9098:17;9090:25;;9170:4;9164;9160:15;9152:23;;8871:311;;;:::o;9188:117::-;9297:1;9294;9287:12;9328:710;9424:5;9449:81;9465:64;9522:6;9465:64;:::i;:::-;9449:81;:::i;:::-;9440:90;;9550:5;9579:6;9572:5;9565:21;9613:4;9606:5;9602:16;9595:23;;9666:4;9658:6;9654:17;9646:6;9642:30;9695:3;9687:6;9684:15;9681:122;;;9714:79;;:::i;:::-;9681:122;9829:6;9812:220;9846:6;9841:3;9838:15;9812:220;;;9921:3;9950:37;9983:3;9971:10;9950:37;:::i;:::-;9945:3;9938:50;10017:4;10012:3;10008:14;10001:21;;9888:144;9872:4;9867:3;9863:14;9856:21;;9812:220;;;9816:21;9430:608;;9328:710;;;;;:::o;10061:370::-;10132:5;10181:3;10174:4;10166:6;10162:17;10158:27;10148:122;;10189:79;;:::i;:::-;10148:122;10306:6;10293:20;10331:94;10421:3;10413:6;10406:4;10398:6;10394:17;10331:94;:::i;:::-;10322:103;;10138:293;10061:370;;;;:::o;10437:539::-;10521:6;10570:2;10558:9;10549:7;10545:23;10541:32;10538:119;;;10576:79;;:::i;:::-;10538:119;10724:1;10713:9;10709:17;10696:31;10754:18;10746:6;10743:30;10740:117;;;10776:79;;:::i;:::-;10740:117;10881:78;10951:7;10942:6;10931:9;10927:22;10881:78;:::i;:::-;10871:88;;10667:302;10437:539;;;;:::o;10982:145::-;11080:6;11114:5;11108:12;11098:22;;10982:145;;;:::o;11133:215::-;11263:11;11297:6;11292:3;11285:19;11337:4;11332:3;11328:14;11313:29;;11133:215;;;;:::o;11354:163::-;11452:4;11475:3;11467:11;;11505:4;11500:3;11496:14;11488:22;;11354:163;;;:::o;11523:108::-;11600:24;11618:5;11600:24;:::i;:::-;11595:3;11588:37;11523:108;;:::o;11637:101::-;11673:7;11713:18;11706:5;11702:30;11691:41;;11637:101;;;:::o;11744:105::-;11819:23;11836:5;11819:23;:::i;:::-;11814:3;11807:36;11744:105;;:::o;11855:99::-;11926:21;11941:5;11926:21;:::i;:::-;11921:3;11914:34;11855:99;;:::o;11960:91::-;11996:7;12036:8;12029:5;12025:20;12014:31;;11960:91;;;:::o;12057:105::-;12132:23;12149:5;12132:23;:::i;:::-;12127:3;12120:36;12057:105;;:::o;12240:864::-;12389:4;12384:3;12380:14;12476:4;12469:5;12465:16;12459:23;12495:63;12552:4;12547:3;12543:14;12529:12;12495:63;:::i;:::-;12404:164;12660:4;12653:5;12649:16;12643:23;12679:61;12734:4;12729:3;12725:14;12711:12;12679:61;:::i;:::-;12578:172;12834:4;12827:5;12823:16;12817:23;12853:57;12904:4;12899:3;12895:14;12881:12;12853:57;:::i;:::-;12760:160;13007:4;13000:5;12996:16;12990:23;13026:61;13081:4;13076:3;13072:14;13058:12;13026:61;:::i;:::-;12930:167;12358:746;12240:864;;:::o;13110:303::-;13241:10;13262:108;13366:3;13358:6;13262:108;:::i;:::-;13402:4;13397:3;13393:14;13379:28;;13110:303;;;;:::o;13419:144::-;13520:4;13552;13547:3;13543:14;13535:22;;13419:144;;;:::o;13645:980::-;13826:3;13855:85;13934:5;13855:85;:::i;:::-;13956:117;14066:6;14061:3;13956:117;:::i;:::-;13949:124;;14097:87;14178:5;14097:87;:::i;:::-;14207:7;14238:1;14223:377;14248:6;14245:1;14242:13;14223:377;;;14324:6;14318:13;14351:125;14472:3;14457:13;14351:125;:::i;:::-;14344:132;;14499:91;14583:6;14499:91;:::i;:::-;14489:101;;14283:317;14270:1;14267;14263:9;14258:14;;14223:377;;;14227:14;14616:3;14609:10;;13831:794;;;13645:980;;;;:::o;14631:497::-;14836:4;14874:2;14863:9;14859:18;14851:26;;14923:9;14917:4;14913:20;14909:1;14898:9;14894:17;14887:47;14951:170;15116:4;15107:6;14951:170;:::i;:::-;14943:178;;14631:497;;;;:::o;15134:114::-;15201:6;15235:5;15229:12;15219:22;;15134:114;;;:::o;15254:184::-;15353:11;15387:6;15382:3;15375:19;15427:4;15422:3;15418:14;15403:29;;15254:184;;;;:::o;15444:132::-;15511:4;15534:3;15526:11;;15564:4;15559:3;15555:14;15547:22;;15444:132;;;:::o;15582:108::-;15659:24;15677:5;15659:24;:::i;:::-;15654:3;15647:37;15582:108;;:::o;15696:179::-;15765:10;15786:46;15828:3;15820:6;15786:46;:::i;:::-;15864:4;15859:3;15855:14;15841:28;;15696:179;;;;:::o;15881:113::-;15951:4;15983;15978:3;15974:14;15966:22;;15881:113;;;:::o;16030:732::-;16149:3;16178:54;16226:5;16178:54;:::i;:::-;16248:86;16327:6;16322:3;16248:86;:::i;:::-;16241:93;;16358:56;16408:5;16358:56;:::i;:::-;16437:7;16468:1;16453:284;16478:6;16475:1;16472:13;16453:284;;;16554:6;16548:13;16581:63;16640:3;16625:13;16581:63;:::i;:::-;16574:70;;16667:60;16720:6;16667:60;:::i;:::-;16657:70;;16513:224;16500:1;16497;16493:9;16488:14;;16453:284;;;16457:14;16753:3;16746:10;;16154:608;;;16030:732;;;;:::o;16768:373::-;16911:4;16949:2;16938:9;16934:18;16926:26;;16998:9;16992:4;16988:20;16984:1;16973:9;16969:17;16962:47;17026:108;17129:4;17120:6;17026:108;:::i;:::-;17018:116;;16768:373;;;;:::o;17147:619::-;17224:6;17232;17240;17289:2;17277:9;17268:7;17264:23;17260:32;17257:119;;;17295:79;;:::i;:::-;17257:119;17415:1;17440:53;17485:7;17476:6;17465:9;17461:22;17440:53;:::i;:::-;17430:63;;17386:117;17542:2;17568:53;17613:7;17604:6;17593:9;17589:22;17568:53;:::i;:::-;17558:63;;17513:118;17670:2;17696:53;17741:7;17732:6;17721:9;17717:22;17696:53;:::i;:::-;17686:63;;17641:118;17147:619;;;;;:::o;17772:116::-;17842:21;17857:5;17842:21;:::i;:::-;17835:5;17832:32;17822:60;;17878:1;17875;17868:12;17822:60;17772:116;:::o;17894:133::-;17937:5;17975:6;17962:20;17953:29;;17991:30;18015:5;17991:30;:::i;:::-;17894:133;;;;:::o;18033:468::-;18098:6;18106;18155:2;18143:9;18134:7;18130:23;18126:32;18123:119;;;18161:79;;:::i;:::-;18123:119;18281:1;18306:53;18351:7;18342:6;18331:9;18327:22;18306:53;:::i;:::-;18296:63;;18252:117;18408:2;18434:50;18476:7;18467:6;18456:9;18452:22;18434:50;:::i;:::-;18424:60;;18379:115;18033:468;;;;;:::o;18507:307::-;18568:4;18658:18;18650:6;18647:30;18644:56;;;18680:18;;:::i;:::-;18644:56;18718:29;18740:6;18718:29;:::i;:::-;18710:37;;18802:4;18796;18792:15;18784:23;;18507:307;;;:::o;18820:410::-;18897:5;18922:65;18938:48;18979:6;18938:48;:::i;:::-;18922:65;:::i;:::-;18913:74;;19010:6;19003:5;18996:21;19048:4;19041:5;19037:16;19086:3;19077:6;19072:3;19068:16;19065:25;19062:112;;;19093:79;;:::i;:::-;19062:112;19183:41;19217:6;19212:3;19207;19183:41;:::i;:::-;18903:327;18820:410;;;;;:::o;19249:338::-;19304:5;19353:3;19346:4;19338:6;19334:17;19330:27;19320:122;;19361:79;;:::i;:::-;19320:122;19478:6;19465:20;19503:78;19577:3;19569:6;19562:4;19554:6;19550:17;19503:78;:::i;:::-;19494:87;;19310:277;19249:338;;;;:::o;19593:943::-;19688:6;19696;19704;19712;19761:3;19749:9;19740:7;19736:23;19732:33;19729:120;;;19768:79;;:::i;:::-;19729:120;19888:1;19913:53;19958:7;19949:6;19938:9;19934:22;19913:53;:::i;:::-;19903:63;;19859:117;20015:2;20041:53;20086:7;20077:6;20066:9;20062:22;20041:53;:::i;:::-;20031:63;;19986:118;20143:2;20169:53;20214:7;20205:6;20194:9;20190:22;20169:53;:::i;:::-;20159:63;;20114:118;20299:2;20288:9;20284:18;20271:32;20330:18;20322:6;20319:30;20316:117;;;20352:79;;:::i;:::-;20316:117;20457:62;20511:7;20502:6;20491:9;20487:22;20457:62;:::i;:::-;20447:72;;20242:287;19593:943;;;;;;;:::o;20614:874::-;20773:4;20768:3;20764:14;20860:4;20853:5;20849:16;20843:23;20879:63;20936:4;20931:3;20927:14;20913:12;20879:63;:::i;:::-;20788:164;21044:4;21037:5;21033:16;21027:23;21063:61;21118:4;21113:3;21109:14;21095:12;21063:61;:::i;:::-;20962:172;21218:4;21211:5;21207:16;21201:23;21237:57;21288:4;21283:3;21279:14;21265:12;21237:57;:::i;:::-;21144:160;21391:4;21384:5;21380:16;21374:23;21410:61;21465:4;21460:3;21456:14;21442:12;21410:61;:::i;:::-;21314:167;20742:746;20614:874;;:::o;21494:347::-;21649:4;21687:3;21676:9;21672:19;21664:27;;21701:133;21831:1;21820:9;21816:17;21807:6;21701:133;:::i;:::-;21494:347;;;;:::o;21847:474::-;21915:6;21923;21972:2;21960:9;21951:7;21947:23;21943:32;21940:119;;;21978:79;;:::i;:::-;21940:119;22098:1;22123:53;22168:7;22159:6;22148:9;22144:22;22123:53;:::i;:::-;22113:63;;22069:117;22225:2;22251:53;22296:7;22287:6;22276:9;22272:22;22251:53;:::i;:::-;22241:63;;22196:118;21847:474;;;;;:::o;22327:180::-;22375:77;22372:1;22365:88;22472:4;22469:1;22462:15;22496:4;22493:1;22486:15;22513:320;22557:6;22594:1;22588:4;22584:12;22574:22;;22641:1;22635:4;22631:12;22662:18;22652:81;;22718:4;22710:6;22706:17;22696:27;;22652:81;22780:2;22772:6;22769:14;22749:18;22746:38;22743:84;;;22799:18;;:::i;:::-;22743:84;22564:269;22513:320;;;:::o;22839:180::-;22887:77;22884:1;22877:88;22984:4;22981:1;22974:15;23008:4;23005:1;22998:15;23025:181;23165:33;23161:1;23153:6;23149:14;23142:57;23025:181;:::o;23212:366::-;23354:3;23375:67;23439:2;23434:3;23375:67;:::i;:::-;23368:74;;23451:93;23540:3;23451:93;:::i;:::-;23569:2;23564:3;23560:12;23553:19;;23212:366;;;:::o;23584:419::-;23750:4;23788:2;23777:9;23773:18;23765:26;;23837:9;23831:4;23827:20;23823:1;23812:9;23808:17;23801:47;23865:131;23991:4;23865:131;:::i;:::-;23857:139;;23584:419;;;:::o;24009:180::-;24149:32;24145:1;24137:6;24133:14;24126:56;24009:180;:::o;24195:366::-;24337:3;24358:67;24422:2;24417:3;24358:67;:::i;:::-;24351:74;;24434:93;24523:3;24434:93;:::i;:::-;24552:2;24547:3;24543:12;24536:19;;24195:366;;;:::o;24567:419::-;24733:4;24771:2;24760:9;24756:18;24748:26;;24820:9;24814:4;24810:20;24806:1;24795:9;24791:17;24784:47;24848:131;24974:4;24848:131;:::i;:::-;24840:139;;24567:419;;;:::o;24992:173::-;25132:25;25128:1;25120:6;25116:14;25109:49;24992:173;:::o;25171:366::-;25313:3;25334:67;25398:2;25393:3;25334:67;:::i;:::-;25327:74;;25410:93;25499:3;25410:93;:::i;:::-;25528:2;25523:3;25519:12;25512:19;;25171:366;;;:::o;25543:419::-;25709:4;25747:2;25736:9;25732:18;25724:26;;25796:9;25790:4;25786:20;25782:1;25771:9;25767:17;25760:47;25824:131;25950:4;25824:131;:::i;:::-;25816:139;;25543:419;;;:::o;25968:180::-;26016:77;26013:1;26006:88;26113:4;26110:1;26103:15;26137:4;26134:1;26127:15;26154:305;26194:3;26213:20;26231:1;26213:20;:::i;:::-;26208:25;;26247:20;26265:1;26247:20;:::i;:::-;26242:25;;26401:1;26333:66;26329:74;26326:1;26323:81;26320:107;;;26407:18;;:::i;:::-;26320:107;26451:1;26448;26444:9;26437:16;;26154:305;;;;:::o;26465:174::-;26605:26;26601:1;26593:6;26589:14;26582:50;26465:174;:::o;26645:366::-;26787:3;26808:67;26872:2;26867:3;26808:67;:::i;:::-;26801:74;;26884:93;26973:3;26884:93;:::i;:::-;27002:2;26997:3;26993:12;26986:19;;26645:366;;;:::o;27017:419::-;27183:4;27221:2;27210:9;27206:18;27198:26;;27270:9;27264:4;27260:20;27256:1;27245:9;27241:17;27234:47;27298:131;27424:4;27298:131;:::i;:::-;27290:139;;27017:419;;;:::o;27442:170::-;27582:22;27578:1;27570:6;27566:14;27559:46;27442:170;:::o;27618:366::-;27760:3;27781:67;27845:2;27840:3;27781:67;:::i;:::-;27774:74;;27857:93;27946:3;27857:93;:::i;:::-;27975:2;27970:3;27966:12;27959:19;;27618:366;;;:::o;27990:419::-;28156:4;28194:2;28183:9;28179:18;28171:26;;28243:9;28237:4;28233:20;28229:1;28218:9;28214:17;28207:47;28271:131;28397:4;28271:131;:::i;:::-;28263:139;;27990:419;;;:::o;28415:170::-;28555:22;28551:1;28543:6;28539:14;28532:46;28415:170;:::o;28591:366::-;28733:3;28754:67;28818:2;28813:3;28754:67;:::i;:::-;28747:74;;28830:93;28919:3;28830:93;:::i;:::-;28948:2;28943:3;28939:12;28932:19;;28591:366;;;:::o;28963:419::-;29129:4;29167:2;29156:9;29152:18;29144:26;;29216:9;29210:4;29206:20;29202:1;29191:9;29187:17;29180:47;29244:131;29370:4;29244:131;:::i;:::-;29236:139;;28963:419;;;:::o;29388:348::-;29428:7;29451:20;29469:1;29451:20;:::i;:::-;29446:25;;29485:20;29503:1;29485:20;:::i;:::-;29480:25;;29673:1;29605:66;29601:74;29598:1;29595:81;29590:1;29583:9;29576:17;29572:105;29569:131;;;29680:18;;:::i;:::-;29569:131;29728:1;29725;29721:9;29710:20;;29388:348;;;;:::o;29742:169::-;29882:21;29878:1;29870:6;29866:14;29859:45;29742:169;:::o;29917:366::-;30059:3;30080:67;30144:2;30139:3;30080:67;:::i;:::-;30073:74;;30156:93;30245:3;30156:93;:::i;:::-;30274:2;30269:3;30265:12;30258:19;;29917:366;;;:::o;30289:419::-;30455:4;30493:2;30482:9;30478:18;30470:26;;30542:9;30536:4;30532:20;30528:1;30517:9;30513:17;30506:47;30570:131;30696:4;30570:131;:::i;:::-;30562:139;;30289:419;;;:::o;30714:191::-;30754:4;30774:20;30792:1;30774:20;:::i;:::-;30769:25;;30808:20;30826:1;30808:20;:::i;:::-;30803:25;;30847:1;30844;30841:8;30838:34;;;30852:18;;:::i;:::-;30838:34;30897:1;30894;30890:9;30882:17;;30714:191;;;;:::o;30911:234::-;31051:34;31047:1;31039:6;31035:14;31028:58;31120:17;31115:2;31107:6;31103:15;31096:42;30911:234;:::o;31151:366::-;31293:3;31314:67;31378:2;31373:3;31314:67;:::i;:::-;31307:74;;31390:93;31479:3;31390:93;:::i;:::-;31508:2;31503:3;31499:12;31492:19;;31151:366;;;:::o;31523:419::-;31689:4;31727:2;31716:9;31712:18;31704:26;;31776:9;31770:4;31766:20;31762:1;31751:9;31747:17;31740:47;31804:131;31930:4;31804:131;:::i;:::-;31796:139;;31523:419;;;:::o;31948:148::-;32050:11;32087:3;32072:18;;31948:148;;;;:::o;32102:377::-;32208:3;32236:39;32269:5;32236:39;:::i;:::-;32291:89;32373:6;32368:3;32291:89;:::i;:::-;32284:96;;32389:52;32434:6;32429:3;32422:4;32415:5;32411:16;32389:52;:::i;:::-;32466:6;32461:3;32457:16;32450:23;;32212:267;32102:377;;;;:::o;32485:141::-;32534:4;32557:3;32549:11;;32580:3;32577:1;32570:14;32614:4;32611:1;32601:18;32593:26;;32485:141;;;:::o;32656:845::-;32759:3;32796:5;32790:12;32825:36;32851:9;32825:36;:::i;:::-;32877:89;32959:6;32954:3;32877:89;:::i;:::-;32870:96;;32997:1;32986:9;32982:17;33013:1;33008:137;;;;33159:1;33154:341;;;;32975:520;;33008:137;33092:4;33088:9;33077;33073:25;33068:3;33061:38;33128:6;33123:3;33119:16;33112:23;;33008:137;;33154:341;33221:38;33253:5;33221:38;:::i;:::-;33281:1;33295:154;33309:6;33306:1;33303:13;33295:154;;;33383:7;33377:14;33373:1;33368:3;33364:11;33357:35;33433:1;33424:7;33420:15;33409:26;;33331:4;33328:1;33324:12;33319:17;;33295:154;;;33478:6;33473:3;33469:16;33462:23;;33161:334;;32975:520;;32763:738;;32656:845;;;;:::o;33507:589::-;33732:3;33754:95;33845:3;33836:6;33754:95;:::i;:::-;33747:102;;33866:95;33957:3;33948:6;33866:95;:::i;:::-;33859:102;;33978:92;34066:3;34057:6;33978:92;:::i;:::-;33971:99;;34087:3;34080:10;;33507:589;;;;;;:::o;34102:225::-;34242:34;34238:1;34230:6;34226:14;34219:58;34311:8;34306:2;34298:6;34294:15;34287:33;34102:225;:::o;34333:366::-;34475:3;34496:67;34560:2;34555:3;34496:67;:::i;:::-;34489:74;;34572:93;34661:3;34572:93;:::i;:::-;34690:2;34685:3;34681:12;34674:19;;34333:366;;;:::o;34705:419::-;34871:4;34909:2;34898:9;34894:18;34886:26;;34958:9;34952:4;34948:20;34944:1;34933:9;34929:17;34922:47;34986:131;35112:4;34986:131;:::i;:::-;34978:139;;34705:419;;;:::o;35130:182::-;35270:34;35266:1;35258:6;35254:14;35247:58;35130:182;:::o;35318:366::-;35460:3;35481:67;35545:2;35540:3;35481:67;:::i;:::-;35474:74;;35557:93;35646:3;35557:93;:::i;:::-;35675:2;35670:3;35666:12;35659:19;;35318:366;;;:::o;35690:419::-;35856:4;35894:2;35883:9;35879:18;35871:26;;35943:9;35937:4;35933:20;35929:1;35918:9;35914:17;35907:47;35971:131;36097:4;35971:131;:::i;:::-;35963:139;;35690:419;;;:::o;36115:98::-;36166:6;36200:5;36194:12;36184:22;;36115:98;;;:::o;36219:168::-;36302:11;36336:6;36331:3;36324:19;36376:4;36371:3;36367:14;36352:29;;36219:168;;;;:::o;36393:360::-;36479:3;36507:38;36539:5;36507:38;:::i;:::-;36561:70;36624:6;36619:3;36561:70;:::i;:::-;36554:77;;36640:52;36685:6;36680:3;36673:4;36666:5;36662:16;36640:52;:::i;:::-;36717:29;36739:6;36717:29;:::i;:::-;36712:3;36708:39;36701:46;;36483:270;36393:360;;;;:::o;36759:640::-;36954:4;36992:3;36981:9;36977:19;36969:27;;37006:71;37074:1;37063:9;37059:17;37050:6;37006:71;:::i;:::-;37087:72;37155:2;37144:9;37140:18;37131:6;37087:72;:::i;:::-;37169;37237:2;37226:9;37222:18;37213:6;37169:72;:::i;:::-;37288:9;37282:4;37278:20;37273:2;37262:9;37258:18;37251:48;37316:76;37387:4;37378:6;37316:76;:::i;:::-;37308:84;;36759:640;;;;;;;:::o;37405:141::-;37461:5;37492:6;37486:13;37477:22;;37508:32;37534:5;37508:32;:::i;:::-;37405:141;;;;:::o;37552:349::-;37621:6;37670:2;37658:9;37649:7;37645:23;37641:32;37638:119;;;37676:79;;:::i;:::-;37638:119;37796:1;37821:63;37876:7;37867:6;37856:9;37852:22;37821:63;:::i;:::-;37811:73;;37767:127;37552:349;;;;:::o;37907:233::-;37946:3;37969:24;37987:5;37969:24;:::i;:::-;37960:33;;38015:66;38008:5;38005:77;38002:103;;;38085:18;;:::i;:::-;38002:103;38132:1;38125:5;38121:13;38114:20;;37907:233;;;:::o;38146:180::-;38194:77;38191:1;38184:88;38291:4;38288:1;38281:15;38315:4;38312:1;38305:15;38332:185;38372:1;38389:20;38407:1;38389:20;:::i;:::-;38384:25;;38423:20;38441:1;38423:20;:::i;:::-;38418:25;;38462:1;38452:35;;38467:18;;:::i;:::-;38452:35;38509:1;38506;38502:9;38497:14;;38332:185;;;;:::o;38523:176::-;38555:1;38572:20;38590:1;38572:20;:::i;:::-;38567:25;;38606:20;38624:1;38606:20;:::i;:::-;38601:25;;38645:1;38635:35;;38650:18;;:::i;:::-;38635:35;38691:1;38688;38684:9;38679:14;;38523:176;;;;:::o

Swarm Source

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