ETH Price: $2,528.86 (+3.59%)
Gas: 1.19 Gwei

Token

Rektland (Rektland)
 

Overview

Max Total Supply

285 Rektland

Holders

257

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
liuleoliu.eth
Balance
1 Rektland
0x7db3d080de992b1e2d6dbb4517362c26979a2770
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:
Rektland

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 12 : Rektland.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;

import { IERC721A } from "erc721a/contracts/IERC721A.sol";
import { ERC721A } from "erc721a/contracts/ERC721A.sol";
import { ERC721AQueryable } from "erc721a/contracts/extensions/ERC721AQueryable.sol";
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { Strings } from "@openzeppelin/contracts/utils/Strings.sol";
import { OperatorFilterer } from "./OperatorFilterer.sol";

contract Rektland is ERC721A, ERC721AQueryable,OperatorFilterer(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6, true), Ownable {
    
    bool public Minting  = false;
    uint256 public MintPrice = 0.0069 ether;
    string public baseURI;  
    uint256 public maxPerTx = 20;  
    uint256 public maxSupply = 2222;
    uint256 public freeMint = 1;
    mapping (address => uint256) public minted;
    bool public operatorFilteringEnabled = true;

    constructor() ERC721A("Rektland", "Rektland"){}

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

    function mint(uint256 qty) external payable
    {
        require(Minting , "Rektland Minting Close !");
        require(qty <= maxPerTx, "Rektland Max Per Tx !");
        require(totalSupply() + qty <= maxSupply,"Rektland Soldout !");
        _mint(qty);
    }

    function _mint(uint256 qty) internal  {
        if(minted[msg.sender] < freeMint) 
        {
            if(qty < freeMint) qty = freeMint;
            require(msg.value >= (qty - freeMint) * MintPrice,"Rektland Insufficient Funds !");
            minted[msg.sender] += qty;
            _safeMint(msg.sender, qty);
        }
        else
        {
            require(msg.value >= qty * MintPrice,"Rektland Insufficient Funds !");
            minted[msg.sender] += qty;
            _safeMint(msg.sender, qty);
        }
    }
    
    function setOperatorFilteringEnabled(bool _enabled) external onlyOwner {
        operatorFilteringEnabled = _enabled;
    }

    function setOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe) external onlyOwner{
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

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

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

    function airdrop(address[] calldata listedAirdrop ,uint256 qty) external onlyOwner {
        for (uint256 i = 0; i < listedAirdrop.length; i++) {
           _safeMint(listedAirdrop[i], qty);
        }
    }

    function OwnerBatchMint(uint256 qty) external onlyOwner
    {
        _safeMint(msg.sender, qty);
    }

    function setMintingIsLive() external onlyOwner {
        Minting  = !Minting ;
    }
    
    function setBaseURI(string calldata baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        MintPrice = price_;
    }

    function setmaxPerTx(uint256 maxPerTx_) external onlyOwner {
        maxPerTx = maxPerTx_;
    }
    
    function setFreeClaim(uint256 freeMint_) external onlyOwner {
        freeMint = freeMint_;
    }

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

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

    function approve(address to, uint256 tokenId) public payable virtual override(ERC721A, IERC721A) onlyAllowedOperatorApproval(to, operatorFilteringEnabled) {
        super.approve(to, tokenId);
    }

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

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

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

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

File 2 of 12 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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

File 3 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _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);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 4 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 5 of 12 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721AQueryable.
 *
 * @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 virtual 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[] calldata tokenIds)
        external
        view
        virtual
        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 virtual 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 collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual 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;
        }
    }
}

File 6 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 12 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 12 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of ERC721AQueryable.
 */
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`
     * - `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) 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 collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 9 of 12 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

File 10 of 12 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 11 of 12 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 12 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Minting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"OwnerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"listedAirdrop","type":"address[]"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMint_","type":"uint256"}],"name":"setFreeClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMintingIsLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"subscriptionOrRegistrantToCopy","type":"address"},{"internalType":"bool","name":"subscribe","type":"bool"}],"name":"setOperatorFiltering","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860146101000a81548160ff0219169083151502179055506618838370f340006009556014600b556108ae600c556001600d556001600f60006101000a81548160ff0219169083151502179055503480156200006257600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f52656b746c616e640000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f52656b746c616e640000000000000000000000000000000000000000000000008152508160029081620000f7919062000690565b50806003908162000109919062000690565b506200011a6200033f60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000317578015620001dd576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001a3929190620007bc565b600060405180830381600087803b158015620001be57600080fd5b505af1158015620001d3573d6000803e3d6000fd5b5050505062000316565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000297576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200025d929190620007bc565b600060405180830381600087803b1580156200027857600080fd5b505af11580156200028d573d6000803e3d6000fd5b5050505062000315565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002e09190620007e9565b600060405180830381600087803b158015620002fb57600080fd5b505af115801562000310573d6000803e3d6000fd5b505050505b5b5b5050620003396200032d6200034860201b60201c565b6200035060201b60201c565b62000806565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200049857607f821691505b602082108103620004ae57620004ad62000450565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005187fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004d9565b620005248683620004d9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005716200056b62000565846200053c565b62000546565b6200053c565b9050919050565b6000819050919050565b6200058d8362000550565b620005a56200059c8262000578565b848454620004e6565b825550505050565b600090565b620005bc620005ad565b620005c981848462000582565b505050565b5b81811015620005f157620005e5600082620005b2565b600181019050620005cf565b5050565b601f82111562000640576200060a81620004b4565b6200061584620004c9565b8101602085101562000625578190505b6200063d6200063485620004c9565b830182620005ce565b50505b505050565b600082821c905092915050565b6000620006656000198460080262000645565b1980831691505092915050565b600062000680838362000652565b9150826002028217905092915050565b6200069b8262000416565b67ffffffffffffffff811115620006b757620006b662000421565b5b620006c382546200047f565b620006d0828285620005f5565b600060209050601f831160018114620007085760008415620006f3578287015190505b620006ff858262000672565b8655506200076f565b601f1984166200071886620004b4565b60005b8281101562000742578489015182556001820191506020850194506020810190506200071b565b868310156200076257848901516200075e601f89168262000652565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007a48262000777565b9050919050565b620007b68162000797565b82525050565b6000604082019050620007d36000830185620007ab565b620007e26020830184620007ab565b9392505050565b6000602082019050620008006000830184620007ab565b92915050565b61459580620008166000396000f3fe60806040526004361061025c5760003560e01c8063805dcae511610144578063b88d4fde116100b6578063dc33e6811161007a578063dc33e681146108b1578063e985e9c5146108ee578063f2fde38b1461092b578063f968adbe14610954578063fb796e6c1461097f578063fdbf9ef2146109aa5761025c565b8063b88d4fde146107c7578063c204642c146107e3578063c23dc68f1461080c578063c87b56dd14610849578063d5abeb01146108865761025c565b806391b7f5ed1161010857806391b7f5ed146106c857806395d89b41146106f157806399a2557a1461071c578063a0712d6814610759578063a22cb46514610775578063b7c0b8e81461079e5761025c565b8063805dcae5146105e357806380c90d301461060c5780638171609b146106375780638462151c146106605780638da5cb5b1461069d5761025c565b806341f43434116101dd5780635e7360bf116101a15780635e7360bf146104d55780636352211e146104fe5780636c0360eb1461053b5780636f8b44b01461056657806370a082311461058f578063715018a6146105cc5761025c565b806341f43434146103fd57806342842e0e1461042857806355f804b3146104445780635b70ea9f1461046d5780635bbb2177146104985761025c565b80631e7269c5116102245780631e7269c51461034d5780631fbdbfa71461038a57806323b872dd146103a15780633bc7f39d146103bd5780633ccfd60b146103e65761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd14610322575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613170565b6109d5565b60405161029591906131b8565b60405180910390f35b3480156102aa57600080fd5b506102b3610a67565b6040516102c0919061326c565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906132c4565b610af9565b6040516102fd9190613332565b60405180910390f35b610320600480360381019061031b9190613379565b610b78565b005b34801561032e57600080fd5b50610337610c9c565b60405161034491906133c8565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906133e3565b610cb3565b60405161038191906133c8565b60405180910390f35b34801561039657600080fd5b5061039f610ccb565b005b6103bb60048036038101906103b69190613410565b610cff565b005b3480156103c957600080fd5b506103e460048036038101906103df91906132c4565b610e69565b005b3480156103f257600080fd5b506103fb610e7b565b005b34801561040957600080fd5b50610412610ee3565b60405161041f91906134c2565b60405180910390f35b610442600480360381019061043d9190613410565b610ef5565b005b34801561045057600080fd5b5061046b60048036038101906104669190613542565b61105f565b005b34801561047957600080fd5b5061048261107d565b60405161048f91906133c8565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba91906135e5565b611083565b6040516104cc9190613795565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f791906137e3565b611146565b005b34801561050a57600080fd5b50610525600480360381019061052091906132c4565b611336565b6040516105329190613332565b60405180910390f35b34801561054757600080fd5b50610550611348565b60405161055d919061326c565b60405180910390f35b34801561057257600080fd5b5061058d600480360381019061058891906132c4565b6113d6565b005b34801561059b57600080fd5b506105b660048036038101906105b191906133e3565b6113e8565b6040516105c391906133c8565b60405180910390f35b3480156105d857600080fd5b506105e16114a0565b005b3480156105ef57600080fd5b5061060a600480360381019061060591906132c4565b6114b4565b005b34801561061857600080fd5b506106216114c6565b60405161062e91906131b8565b60405180910390f35b34801561064357600080fd5b5061065e600480360381019061065991906132c4565b6114d9565b005b34801561066c57600080fd5b50610687600480360381019061068291906133e3565b6114ee565b60405161069491906138e1565b60405180910390f35b3480156106a957600080fd5b506106b2611631565b6040516106bf9190613332565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea91906132c4565b61165b565b005b3480156106fd57600080fd5b5061070661166d565b604051610713919061326c565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190613903565b6116ff565b60405161075091906138e1565b60405180910390f35b610773600480360381019061076e91906132c4565b61190b565b005b34801561078157600080fd5b5061079c600480360381019061079791906137e3565b611a02565b005b3480156107aa57600080fd5b506107c560048036038101906107c09190613956565b611b26565b005b6107e160048036038101906107dc9190613ab3565b611b4b565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613b8c565b611cb8565b005b34801561081857600080fd5b50610833600480360381019061082e91906132c4565b611d18565b6040516108409190613c41565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b91906132c4565b611d82565b60405161087d919061326c565b60405180910390f35b34801561089257600080fd5b5061089b611e20565b6040516108a891906133c8565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d391906133e3565b611e26565b6040516108e591906133c8565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613c5c565b611e38565b60405161092291906131b8565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d91906133e3565b611ecc565b005b34801561096057600080fd5b50610969611f4f565b60405161097691906133c8565b60405180910390f35b34801561098b57600080fd5b50610994611f55565b6040516109a191906131b8565b60405180910390f35b3480156109b657600080fd5b506109bf611f68565b6040516109cc91906133c8565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a605750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a7690613ccb565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa290613ccb565b8015610aef5780601f10610ac457610100808354040283529160200191610aef565b820191906000526020600020905b815481529060010190602001808311610ad257829003601f168201915b5050505050905090565b6000610b0482611f6e565b610b3a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81600f60009054906101000a900460ff16808015610bbb575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15610c8c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b8152600401610c09929190613cfc565b602060405180830381865afa158015610c26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4a9190613d3a565b610c8b57816040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c829190613332565b60405180910390fd5b5b610c968484611fcd565b50505050565b6000610ca6612111565b6001546000540303905090565b600e6020528060005260406000206000915090505481565b610cd361211a565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b82600f60009054906101000a900460ff16808015610d42575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15610e56573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d8a57610d85858585612198565b610e62565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dd3929190613cfc565b602060405180830381865afa158015610df0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e149190613d3a565b610e5557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e4c9190613332565b60405180910390fd5b5b610e61858585612198565b5b5050505050565b610e7161211a565b80600d8190555050565b610e8361211a565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610ee0573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b82600f60009054906101000a900460ff16808015610f38575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b1561104c573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f8057610f7b8585856124ba565b611058565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610fc9929190613cfc565b602060405180830381865afa158015610fe6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100a9190613d3a565b61104b57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110429190613332565b60405180910390fd5b5b6110578585856124ba565b5b5050505050565b61106761211a565b8181600a9182611078929190613f14565b505050565b600d5481565b6060600083839050905060008167ffffffffffffffff8111156110a9576110a8613988565b5b6040519080825280602002602001820160405280156110e257816020015b6110cf6130b5565b8152602001906001900390816110c75790505b50905060005b82811461113a5761111186868381811061110557611104613fe4565b5b90506020020135611d18565b82828151811061112457611123613fe4565b5b60200260200101819052508060010190506110e8565b50809250505092915050565b61114e61211a565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611332578015611202576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016111cb929190613cfc565b600060405180830381600087803b1580156111e557600080fd5b505af11580156111f9573d6000803e3d6000fd5b50505050611331565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146112b6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040161127f929190613cfc565b600060405180830381600087803b15801561129957600080fd5b505af11580156112ad573d6000803e3d6000fd5b50505050611330565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016112fd9190613332565b600060405180830381600087803b15801561131757600080fd5b505af115801561132b573d6000803e3d6000fd5b505050505b5b5b5050565b6000611341826124da565b9050919050565b600a805461135590613ccb565b80601f016020809104026020016040519081016040528092919081815260200182805461138190613ccb565b80156113ce5780601f106113a3576101008083540402835291602001916113ce565b820191906000526020600020905b8154815290600101906020018083116113b157829003601f168201915b505050505081565b6113de61211a565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361144f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114a861211a565b6114b260006125a6565b565b6114bc61211a565b80600b8190555050565b600860149054906101000a900460ff1681565b6114e161211a565b6114eb338261266c565b50565b606060008060006114fe856113e8565b905060008167ffffffffffffffff81111561151c5761151b613988565b5b60405190808252806020026020018201604052801561154a5781602001602082028036833780820191505090505b5090506115556130b5565b600061155f612111565b90505b838614611623576115728161268a565b9150816040015161161857600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115bd57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611617578083878060010198508151811061160a57611609613fe4565b5b6020026020010181815250505b5b806001019050611562565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61166361211a565b8060098190555050565b60606003805461167c90613ccb565b80601f01602080910402602001604051908101604052809291908181526020018280546116a890613ccb565b80156116f55780601f106116ca576101008083540402835291602001916116f5565b820191906000526020600020905b8154815290600101906020018083116116d857829003601f168201915b5050505050905090565b606081831061173a576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117456126b5565b905061174f612111565b8510156117615761175e612111565b94505b8084111561176d578093505b6000611778876113e8565b90508486101561179b576000868603905081811015611795578091505b506117a0565b600090505b60008167ffffffffffffffff8111156117bc576117bb613988565b5b6040519080825280602002602001820160405280156117ea5781602001602082028036833780820191505090505b509050600082036118015780945050505050611904565b600061180c88611d18565b90506000816040015161182157816000015190505b60008990505b8881141580156118375750848714155b156118f6576118458161268a565b925082604001516118eb57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461189057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ea57808488806001019950815181106118dd576118dc613fe4565b5b6020026020010181815250505b5b806001019050611827565b508583528296505050505050505b9392505050565b600860149054906101000a900460ff1661195a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119519061405f565b60405180910390fd5b600b5481111561199f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611996906140cb565b60405180910390fd5b600c54816119ab610c9c565b6119b5919061411a565b11156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed906141bc565b60405180910390fd5b6119ff816126be565b50565b81600f60009054906101000a900460ff16808015611a45575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611b16576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b8152600401611a93929190613cfc565b602060405180830381865afa158015611ab0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad49190613d3a565b611b1557816040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611b0c9190613332565b60405180910390fd5b5b611b20848461288d565b50505050565b611b2e61211a565b80600f60006101000a81548160ff02191690831515021790555050565b83600f60009054906101000a900460ff16808015611b8e575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611ca3573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd757611bd286868686612998565b611cb0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611c20929190613cfc565b602060405180830381865afa158015611c3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c619190613d3a565b611ca257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c999190613332565b60405180910390fd5b5b611caf86868686612998565b5b505050505050565b611cc061211a565b60005b83839050811015611d1257611cff848483818110611ce457611ce3613fe4565b5b9050602002016020810190611cf991906133e3565b8361266c565b8080611d0a906141dc565b915050611cc3565b50505050565b611d206130b5565b611d286130b5565b611d30612111565b831080611d445750611d406126b5565b8310155b15611d525780915050611d7d565b611d5b8361268a565b9050806040015115611d705780915050611d7d565b611d7983612a0b565b9150505b919050565b6060611d8d82611f6e565b611dc3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611dcd612a2b565b90506000815103611ded5760405180602001604052806000815250611e18565b80611df784612abd565b604051602001611e08929190614260565b6040516020818303038152906040525b915050919050565b600c5481565b6000611e3182612b0d565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ed461211a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a906142f6565b60405180910390fd5b611f4c816125a6565b50565b600b5481565b600f60009054906101000a900460ff1681565b60095481565b600081611f79612111565b11158015611f88575060005482105b8015611fc6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000611fd882611336565b90508073ffffffffffffffffffffffffffffffffffffffff16611ff9612b64565b73ffffffffffffffffffffffffffffffffffffffff161461205c5761202581612020612b64565b611e38565b61205b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b612122612b6c565b73ffffffffffffffffffffffffffffffffffffffff16612140611631565b73ffffffffffffffffffffffffffffffffffffffff1614612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d90614362565b60405180910390fd5b565b60006121a3826124da565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461220a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061221684612b74565b9150915061222c8187612227612b64565b612b9b565b612278576122418661223c612b64565b611e38565b612277576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036122de576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122eb8686866001612bdf565b80156122f657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506123c4856123a0888887612be5565b7c020000000000000000000000000000000000000000000000000000000017612c0d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361244a5760006001850190506000600460008381526020019081526020016000205403612448576000548114612447578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b28686866001612c38565b505050505050565b6124d583838360405180602001604052806000815250611b4b565b505050565b600080829050806124e9612111565b1161256f5760005481101561256e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361256c575b60008103612562576004600083600190039350838152602001908152602001600020549050612538565b80925050506125a1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612686828260405180602001604052806000815250612c3e565b5050565b6126926130b5565b6126ae6004600084815260200190815260200160002054612cdb565b9050919050565b60008054905090565b600d54600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156127d957600d5481101561271757600d5490505b600954600d54826127289190614382565b61273291906143b6565b341015612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b9061445c565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127c3919061411a565b925050819055506127d4338261266c565b61288a565b600954816127e791906143b6565b341015612829576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128209061445c565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612878919061411a565b92505081905550612889338261266c565b5b50565b806007600061289a612b64565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612947612b64565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161298c91906131b8565b60405180910390a35050565b6129a3848484610cff565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a05576129ce84848484612d91565b612a04576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612a136130b5565b612a24612a1f836124da565b612cdb565b9050919050565b6060600a8054612a3a90613ccb565b80601f0160208091040260200160405190810160405280929190818152602001828054612a6690613ccb565b8015612ab35780601f10612a8857610100808354040283529160200191612ab3565b820191906000526020600020905b815481529060010190602001808311612a9657829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612af857600184039350600a81066030018453600a8104905080612ad6575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612bfc868684612ee1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612c488383612eea565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612cd657600080549050600083820390505b612c886000868380600101945086612d91565b612cbe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612c75578160005414612cd357600080fd5b50505b505050565b612ce36130b5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612db7612b64565b8786866040518563ffffffff1660e01b8152600401612dd994939291906144d1565b6020604051808303816000875af1925050508015612e1557506040513d601f19601f82011682018060405250810190612e129190614532565b60015b612e8e573d8060008114612e45576040519150601f19603f3d011682016040523d82523d6000602084013e612e4a565b606091505b506000815103612e86576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612f2a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f376000848385612bdf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612fae83612f9f6000866000612be5565b612fa8856130a5565b17612c0d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461304f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613014565b506000820361308a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506130a06000848385612c38565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61314d81613118565b811461315857600080fd5b50565b60008135905061316a81613144565b92915050565b6000602082840312156131865761318561310e565b5b60006131948482850161315b565b91505092915050565b60008115159050919050565b6131b28161319d565b82525050565b60006020820190506131cd60008301846131a9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561320d5780820151818401526020810190506131f2565b8381111561321c576000848401525b50505050565b6000601f19601f8301169050919050565b600061323e826131d3565b61324881856131de565b93506132588185602086016131ef565b61326181613222565b840191505092915050565b600060208201905081810360008301526132868184613233565b905092915050565b6000819050919050565b6132a18161328e565b81146132ac57600080fd5b50565b6000813590506132be81613298565b92915050565b6000602082840312156132da576132d961310e565b5b60006132e8848285016132af565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061331c826132f1565b9050919050565b61332c81613311565b82525050565b60006020820190506133476000830184613323565b92915050565b61335681613311565b811461336157600080fd5b50565b6000813590506133738161334d565b92915050565b600080604083850312156133905761338f61310e565b5b600061339e85828601613364565b92505060206133af858286016132af565b9150509250929050565b6133c28161328e565b82525050565b60006020820190506133dd60008301846133b9565b92915050565b6000602082840312156133f9576133f861310e565b5b600061340784828501613364565b91505092915050565b6000806000606084860312156134295761342861310e565b5b600061343786828701613364565b935050602061344886828701613364565b9250506040613459868287016132af565b9150509250925092565b6000819050919050565b600061348861348361347e846132f1565b613463565b6132f1565b9050919050565b600061349a8261346d565b9050919050565b60006134ac8261348f565b9050919050565b6134bc816134a1565b82525050565b60006020820190506134d760008301846134b3565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613502576135016134dd565b5b8235905067ffffffffffffffff81111561351f5761351e6134e2565b5b60208301915083600182028301111561353b5761353a6134e7565b5b9250929050565b600080602083850312156135595761355861310e565b5b600083013567ffffffffffffffff81111561357757613576613113565b5b613583858286016134ec565b92509250509250929050565b60008083601f8401126135a5576135a46134dd565b5b8235905067ffffffffffffffff8111156135c2576135c16134e2565b5b6020830191508360208202830111156135de576135dd6134e7565b5b9250929050565b600080602083850312156135fc576135fb61310e565b5b600083013567ffffffffffffffff81111561361a57613619613113565b5b6136268582860161358f565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61366781613311565b82525050565b600067ffffffffffffffff82169050919050565b61368a8161366d565b82525050565b6136998161319d565b82525050565b600062ffffff82169050919050565b6136b78161369f565b82525050565b6080820160008201516136d3600085018261365e565b5060208201516136e66020850182613681565b5060408201516136f96040850182613690565b50606082015161370c60608501826136ae565b50505050565b600061371e83836136bd565b60808301905092915050565b6000602082019050919050565b600061374282613632565b61374c818561363d565b93506137578361364e565b8060005b8381101561378857815161376f8882613712565b975061377a8361372a565b92505060018101905061375b565b5085935050505092915050565b600060208201905081810360008301526137af8184613737565b905092915050565b6137c08161319d565b81146137cb57600080fd5b50565b6000813590506137dd816137b7565b92915050565b600080604083850312156137fa576137f961310e565b5b600061380885828601613364565b9250506020613819858286016137ce565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138588161328e565b82525050565b600061386a838361384f565b60208301905092915050565b6000602082019050919050565b600061388e82613823565b613898818561382e565b93506138a38361383f565b8060005b838110156138d45781516138bb888261385e565b97506138c683613876565b9250506001810190506138a7565b5085935050505092915050565b600060208201905081810360008301526138fb8184613883565b905092915050565b60008060006060848603121561391c5761391b61310e565b5b600061392a86828701613364565b935050602061393b868287016132af565b925050604061394c868287016132af565b9150509250925092565b60006020828403121561396c5761396b61310e565b5b600061397a848285016137ce565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139c082613222565b810181811067ffffffffffffffff821117156139df576139de613988565b5b80604052505050565b60006139f2613104565b90506139fe82826139b7565b919050565b600067ffffffffffffffff821115613a1e57613a1d613988565b5b613a2782613222565b9050602081019050919050565b82818337600083830152505050565b6000613a56613a5184613a03565b6139e8565b905082815260208101848484011115613a7257613a71613983565b5b613a7d848285613a34565b509392505050565b600082601f830112613a9a57613a996134dd565b5b8135613aaa848260208601613a43565b91505092915050565b60008060008060808587031215613acd57613acc61310e565b5b6000613adb87828801613364565b9450506020613aec87828801613364565b9350506040613afd878288016132af565b925050606085013567ffffffffffffffff811115613b1e57613b1d613113565b5b613b2a87828801613a85565b91505092959194509250565b60008083601f840112613b4c57613b4b6134dd565b5b8235905067ffffffffffffffff811115613b6957613b686134e2565b5b602083019150836020820283011115613b8557613b846134e7565b5b9250929050565b600080600060408486031215613ba557613ba461310e565b5b600084013567ffffffffffffffff811115613bc357613bc2613113565b5b613bcf86828701613b36565b93509350506020613be2868287016132af565b9150509250925092565b608082016000820151613c02600085018261365e565b506020820151613c156020850182613681565b506040820151613c286040850182613690565b506060820151613c3b60608501826136ae565b50505050565b6000608082019050613c566000830184613bec565b92915050565b60008060408385031215613c7357613c7261310e565b5b6000613c8185828601613364565b9250506020613c9285828601613364565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ce357607f821691505b602082108103613cf657613cf5613c9c565b5b50919050565b6000604082019050613d116000830185613323565b613d1e6020830184613323565b9392505050565b600081519050613d34816137b7565b92915050565b600060208284031215613d5057613d4f61310e565b5b6000613d5e84828501613d25565b91505092915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613dd47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613d97565b613dde8683613d97565b95508019841693508086168417925050509392505050565b6000613e11613e0c613e078461328e565b613463565b61328e565b9050919050565b6000819050919050565b613e2b83613df6565b613e3f613e3782613e18565b848454613da4565b825550505050565b600090565b613e54613e47565b613e5f818484613e22565b505050565b5b81811015613e8357613e78600082613e4c565b600181019050613e65565b5050565b601f821115613ec857613e9981613d72565b613ea284613d87565b81016020851015613eb1578190505b613ec5613ebd85613d87565b830182613e64565b50505b505050565b600082821c905092915050565b6000613eeb60001984600802613ecd565b1980831691505092915050565b6000613f048383613eda565b9150826002028217905092915050565b613f1e8383613d67565b67ffffffffffffffff811115613f3757613f36613988565b5b613f418254613ccb565b613f4c828285613e87565b6000601f831160018114613f7b5760008415613f69578287013590505b613f738582613ef8565b865550613fdb565b601f198416613f8986613d72565b60005b82811015613fb157848901358255600182019150602085019450602081019050613f8c565b86831015613fce5784890135613fca601f891682613eda565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f52656b746c616e64204d696e74696e6720436c6f736520210000000000000000600082015250565b60006140496018836131de565b915061405482614013565b602082019050919050565b600060208201905081810360008301526140788161403c565b9050919050565b7f52656b746c616e64204d61782050657220547820210000000000000000000000600082015250565b60006140b56015836131de565b91506140c08261407f565b602082019050919050565b600060208201905081810360008301526140e4816140a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141258261328e565b91506141308361328e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614165576141646140eb565b5b828201905092915050565b7f52656b746c616e6420536f6c646f757420210000000000000000000000000000600082015250565b60006141a66012836131de565b91506141b182614170565b602082019050919050565b600060208201905081810360008301526141d581614199565b9050919050565b60006141e78261328e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614219576142186140eb565b5b600182019050919050565b600081905092915050565b600061423a826131d3565b6142448185614224565b93506142548185602086016131ef565b80840191505092915050565b600061426c828561422f565b9150614278828461422f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142e06026836131de565b91506142eb82614284565b604082019050919050565b6000602082019050818103600083015261430f816142d3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061434c6020836131de565b915061435782614316565b602082019050919050565b6000602082019050818103600083015261437b8161433f565b9050919050565b600061438d8261328e565b91506143988361328e565b9250828210156143ab576143aa6140eb565b5b828203905092915050565b60006143c18261328e565b91506143cc8361328e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614405576144046140eb565b5b828202905092915050565b7f52656b746c616e6420496e73756666696369656e742046756e64732021000000600082015250565b6000614446601d836131de565b915061445182614410565b602082019050919050565b6000602082019050818103600083015261447581614439565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006144a38261447c565b6144ad8185614487565b93506144bd8185602086016131ef565b6144c681613222565b840191505092915050565b60006080820190506144e66000830187613323565b6144f36020830186613323565b61450060408301856133b9565b81810360608301526145128184614498565b905095945050505050565b60008151905061452c81613144565b92915050565b6000602082840312156145485761454761310e565b5b60006145568482850161451d565b9150509291505056fea26469706673582212205531694d4c73ee346516850c53052f79eb6fa7069c8e022bc8d9e9e380fbdf8d64736f6c634300080f0033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063805dcae511610144578063b88d4fde116100b6578063dc33e6811161007a578063dc33e681146108b1578063e985e9c5146108ee578063f2fde38b1461092b578063f968adbe14610954578063fb796e6c1461097f578063fdbf9ef2146109aa5761025c565b8063b88d4fde146107c7578063c204642c146107e3578063c23dc68f1461080c578063c87b56dd14610849578063d5abeb01146108865761025c565b806391b7f5ed1161010857806391b7f5ed146106c857806395d89b41146106f157806399a2557a1461071c578063a0712d6814610759578063a22cb46514610775578063b7c0b8e81461079e5761025c565b8063805dcae5146105e357806380c90d301461060c5780638171609b146106375780638462151c146106605780638da5cb5b1461069d5761025c565b806341f43434116101dd5780635e7360bf116101a15780635e7360bf146104d55780636352211e146104fe5780636c0360eb1461053b5780636f8b44b01461056657806370a082311461058f578063715018a6146105cc5761025c565b806341f43434146103fd57806342842e0e1461042857806355f804b3146104445780635b70ea9f1461046d5780635bbb2177146104985761025c565b80631e7269c5116102245780631e7269c51461034d5780631fbdbfa71461038a57806323b872dd146103a15780633bc7f39d146103bd5780633ccfd60b146103e65761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd14610322575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613170565b6109d5565b60405161029591906131b8565b60405180910390f35b3480156102aa57600080fd5b506102b3610a67565b6040516102c0919061326c565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906132c4565b610af9565b6040516102fd9190613332565b60405180910390f35b610320600480360381019061031b9190613379565b610b78565b005b34801561032e57600080fd5b50610337610c9c565b60405161034491906133c8565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906133e3565b610cb3565b60405161038191906133c8565b60405180910390f35b34801561039657600080fd5b5061039f610ccb565b005b6103bb60048036038101906103b69190613410565b610cff565b005b3480156103c957600080fd5b506103e460048036038101906103df91906132c4565b610e69565b005b3480156103f257600080fd5b506103fb610e7b565b005b34801561040957600080fd5b50610412610ee3565b60405161041f91906134c2565b60405180910390f35b610442600480360381019061043d9190613410565b610ef5565b005b34801561045057600080fd5b5061046b60048036038101906104669190613542565b61105f565b005b34801561047957600080fd5b5061048261107d565b60405161048f91906133c8565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba91906135e5565b611083565b6040516104cc9190613795565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f791906137e3565b611146565b005b34801561050a57600080fd5b50610525600480360381019061052091906132c4565b611336565b6040516105329190613332565b60405180910390f35b34801561054757600080fd5b50610550611348565b60405161055d919061326c565b60405180910390f35b34801561057257600080fd5b5061058d600480360381019061058891906132c4565b6113d6565b005b34801561059b57600080fd5b506105b660048036038101906105b191906133e3565b6113e8565b6040516105c391906133c8565b60405180910390f35b3480156105d857600080fd5b506105e16114a0565b005b3480156105ef57600080fd5b5061060a600480360381019061060591906132c4565b6114b4565b005b34801561061857600080fd5b506106216114c6565b60405161062e91906131b8565b60405180910390f35b34801561064357600080fd5b5061065e600480360381019061065991906132c4565b6114d9565b005b34801561066c57600080fd5b50610687600480360381019061068291906133e3565b6114ee565b60405161069491906138e1565b60405180910390f35b3480156106a957600080fd5b506106b2611631565b6040516106bf9190613332565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea91906132c4565b61165b565b005b3480156106fd57600080fd5b5061070661166d565b604051610713919061326c565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190613903565b6116ff565b60405161075091906138e1565b60405180910390f35b610773600480360381019061076e91906132c4565b61190b565b005b34801561078157600080fd5b5061079c600480360381019061079791906137e3565b611a02565b005b3480156107aa57600080fd5b506107c560048036038101906107c09190613956565b611b26565b005b6107e160048036038101906107dc9190613ab3565b611b4b565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613b8c565b611cb8565b005b34801561081857600080fd5b50610833600480360381019061082e91906132c4565b611d18565b6040516108409190613c41565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b91906132c4565b611d82565b60405161087d919061326c565b60405180910390f35b34801561089257600080fd5b5061089b611e20565b6040516108a891906133c8565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d391906133e3565b611e26565b6040516108e591906133c8565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613c5c565b611e38565b60405161092291906131b8565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d91906133e3565b611ecc565b005b34801561096057600080fd5b50610969611f4f565b60405161097691906133c8565b60405180910390f35b34801561098b57600080fd5b50610994611f55565b6040516109a191906131b8565b60405180910390f35b3480156109b657600080fd5b506109bf611f68565b6040516109cc91906133c8565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a605750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a7690613ccb565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa290613ccb565b8015610aef5780601f10610ac457610100808354040283529160200191610aef565b820191906000526020600020905b815481529060010190602001808311610ad257829003601f168201915b5050505050905090565b6000610b0482611f6e565b610b3a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81600f60009054906101000a900460ff16808015610bbb575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15610c8c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b8152600401610c09929190613cfc565b602060405180830381865afa158015610c26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4a9190613d3a565b610c8b57816040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c829190613332565b60405180910390fd5b5b610c968484611fcd565b50505050565b6000610ca6612111565b6001546000540303905090565b600e6020528060005260406000206000915090505481565b610cd361211a565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b82600f60009054906101000a900460ff16808015610d42575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15610e56573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d8a57610d85858585612198565b610e62565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dd3929190613cfc565b602060405180830381865afa158015610df0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e149190613d3a565b610e5557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e4c9190613332565b60405180910390fd5b5b610e61858585612198565b5b5050505050565b610e7161211a565b80600d8190555050565b610e8361211a565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610ee0573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b82600f60009054906101000a900460ff16808015610f38575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b1561104c573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f8057610f7b8585856124ba565b611058565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610fc9929190613cfc565b602060405180830381865afa158015610fe6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100a9190613d3a565b61104b57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110429190613332565b60405180910390fd5b5b6110578585856124ba565b5b5050505050565b61106761211a565b8181600a9182611078929190613f14565b505050565b600d5481565b6060600083839050905060008167ffffffffffffffff8111156110a9576110a8613988565b5b6040519080825280602002602001820160405280156110e257816020015b6110cf6130b5565b8152602001906001900390816110c75790505b50905060005b82811461113a5761111186868381811061110557611104613fe4565b5b90506020020135611d18565b82828151811061112457611123613fe4565b5b60200260200101819052508060010190506110e8565b50809250505092915050565b61114e61211a565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611332578015611202576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016111cb929190613cfc565b600060405180830381600087803b1580156111e557600080fd5b505af11580156111f9573d6000803e3d6000fd5b50505050611331565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146112b6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040161127f929190613cfc565b600060405180830381600087803b15801561129957600080fd5b505af11580156112ad573d6000803e3d6000fd5b50505050611330565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016112fd9190613332565b600060405180830381600087803b15801561131757600080fd5b505af115801561132b573d6000803e3d6000fd5b505050505b5b5b5050565b6000611341826124da565b9050919050565b600a805461135590613ccb565b80601f016020809104026020016040519081016040528092919081815260200182805461138190613ccb565b80156113ce5780601f106113a3576101008083540402835291602001916113ce565b820191906000526020600020905b8154815290600101906020018083116113b157829003601f168201915b505050505081565b6113de61211a565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361144f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114a861211a565b6114b260006125a6565b565b6114bc61211a565b80600b8190555050565b600860149054906101000a900460ff1681565b6114e161211a565b6114eb338261266c565b50565b606060008060006114fe856113e8565b905060008167ffffffffffffffff81111561151c5761151b613988565b5b60405190808252806020026020018201604052801561154a5781602001602082028036833780820191505090505b5090506115556130b5565b600061155f612111565b90505b838614611623576115728161268a565b9150816040015161161857600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115bd57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611617578083878060010198508151811061160a57611609613fe4565b5b6020026020010181815250505b5b806001019050611562565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61166361211a565b8060098190555050565b60606003805461167c90613ccb565b80601f01602080910402602001604051908101604052809291908181526020018280546116a890613ccb565b80156116f55780601f106116ca576101008083540402835291602001916116f5565b820191906000526020600020905b8154815290600101906020018083116116d857829003601f168201915b5050505050905090565b606081831061173a576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117456126b5565b905061174f612111565b8510156117615761175e612111565b94505b8084111561176d578093505b6000611778876113e8565b90508486101561179b576000868603905081811015611795578091505b506117a0565b600090505b60008167ffffffffffffffff8111156117bc576117bb613988565b5b6040519080825280602002602001820160405280156117ea5781602001602082028036833780820191505090505b509050600082036118015780945050505050611904565b600061180c88611d18565b90506000816040015161182157816000015190505b60008990505b8881141580156118375750848714155b156118f6576118458161268a565b925082604001516118eb57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461189057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ea57808488806001019950815181106118dd576118dc613fe4565b5b6020026020010181815250505b5b806001019050611827565b508583528296505050505050505b9392505050565b600860149054906101000a900460ff1661195a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119519061405f565b60405180910390fd5b600b5481111561199f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611996906140cb565b60405180910390fd5b600c54816119ab610c9c565b6119b5919061411a565b11156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed906141bc565b60405180910390fd5b6119ff816126be565b50565b81600f60009054906101000a900460ff16808015611a45575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611b16576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b8152600401611a93929190613cfc565b602060405180830381865afa158015611ab0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad49190613d3a565b611b1557816040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611b0c9190613332565b60405180910390fd5b5b611b20848461288d565b50505050565b611b2e61211a565b80600f60006101000a81548160ff02191690831515021790555050565b83600f60009054906101000a900460ff16808015611b8e575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611ca3573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bd757611bd286868686612998565b611cb0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611c20929190613cfc565b602060405180830381865afa158015611c3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c619190613d3a565b611ca257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c999190613332565b60405180910390fd5b5b611caf86868686612998565b5b505050505050565b611cc061211a565b60005b83839050811015611d1257611cff848483818110611ce457611ce3613fe4565b5b9050602002016020810190611cf991906133e3565b8361266c565b8080611d0a906141dc565b915050611cc3565b50505050565b611d206130b5565b611d286130b5565b611d30612111565b831080611d445750611d406126b5565b8310155b15611d525780915050611d7d565b611d5b8361268a565b9050806040015115611d705780915050611d7d565b611d7983612a0b565b9150505b919050565b6060611d8d82611f6e565b611dc3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611dcd612a2b565b90506000815103611ded5760405180602001604052806000815250611e18565b80611df784612abd565b604051602001611e08929190614260565b6040516020818303038152906040525b915050919050565b600c5481565b6000611e3182612b0d565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ed461211a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a906142f6565b60405180910390fd5b611f4c816125a6565b50565b600b5481565b600f60009054906101000a900460ff1681565b60095481565b600081611f79612111565b11158015611f88575060005482105b8015611fc6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000611fd882611336565b90508073ffffffffffffffffffffffffffffffffffffffff16611ff9612b64565b73ffffffffffffffffffffffffffffffffffffffff161461205c5761202581612020612b64565b611e38565b61205b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b612122612b6c565b73ffffffffffffffffffffffffffffffffffffffff16612140611631565b73ffffffffffffffffffffffffffffffffffffffff1614612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d90614362565b60405180910390fd5b565b60006121a3826124da565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461220a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061221684612b74565b9150915061222c8187612227612b64565b612b9b565b612278576122418661223c612b64565b611e38565b612277576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036122de576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122eb8686866001612bdf565b80156122f657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506123c4856123a0888887612be5565b7c020000000000000000000000000000000000000000000000000000000017612c0d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361244a5760006001850190506000600460008381526020019081526020016000205403612448576000548114612447578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b28686866001612c38565b505050505050565b6124d583838360405180602001604052806000815250611b4b565b505050565b600080829050806124e9612111565b1161256f5760005481101561256e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361256c575b60008103612562576004600083600190039350838152602001908152602001600020549050612538565b80925050506125a1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612686828260405180602001604052806000815250612c3e565b5050565b6126926130b5565b6126ae6004600084815260200190815260200160002054612cdb565b9050919050565b60008054905090565b600d54600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156127d957600d5481101561271757600d5490505b600954600d54826127289190614382565b61273291906143b6565b341015612774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276b9061445c565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127c3919061411a565b925050819055506127d4338261266c565b61288a565b600954816127e791906143b6565b341015612829576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128209061445c565b60405180910390fd5b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612878919061411a565b92505081905550612889338261266c565b5b50565b806007600061289a612b64565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612947612b64565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161298c91906131b8565b60405180910390a35050565b6129a3848484610cff565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a05576129ce84848484612d91565b612a04576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612a136130b5565b612a24612a1f836124da565b612cdb565b9050919050565b6060600a8054612a3a90613ccb565b80601f0160208091040260200160405190810160405280929190818152602001828054612a6690613ccb565b8015612ab35780601f10612a8857610100808354040283529160200191612ab3565b820191906000526020600020905b815481529060010190602001808311612a9657829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612af857600184039350600a81066030018453600a8104905080612ad6575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612bfc868684612ee1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612c488383612eea565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612cd657600080549050600083820390505b612c886000868380600101945086612d91565b612cbe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612c75578160005414612cd357600080fd5b50505b505050565b612ce36130b5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612db7612b64565b8786866040518563ffffffff1660e01b8152600401612dd994939291906144d1565b6020604051808303816000875af1925050508015612e1557506040513d601f19601f82011682018060405250810190612e129190614532565b60015b612e8e573d8060008114612e45576040519150601f19603f3d011682016040523d82523d6000602084013e612e4a565b606091505b506000815103612e86576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203612f2a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f376000848385612bdf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612fae83612f9f6000866000612be5565b612fa8856130a5565b17612c0d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461304f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613014565b506000820361308a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506130a06000848385612c38565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61314d81613118565b811461315857600080fd5b50565b60008135905061316a81613144565b92915050565b6000602082840312156131865761318561310e565b5b60006131948482850161315b565b91505092915050565b60008115159050919050565b6131b28161319d565b82525050565b60006020820190506131cd60008301846131a9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561320d5780820151818401526020810190506131f2565b8381111561321c576000848401525b50505050565b6000601f19601f8301169050919050565b600061323e826131d3565b61324881856131de565b93506132588185602086016131ef565b61326181613222565b840191505092915050565b600060208201905081810360008301526132868184613233565b905092915050565b6000819050919050565b6132a18161328e565b81146132ac57600080fd5b50565b6000813590506132be81613298565b92915050565b6000602082840312156132da576132d961310e565b5b60006132e8848285016132af565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061331c826132f1565b9050919050565b61332c81613311565b82525050565b60006020820190506133476000830184613323565b92915050565b61335681613311565b811461336157600080fd5b50565b6000813590506133738161334d565b92915050565b600080604083850312156133905761338f61310e565b5b600061339e85828601613364565b92505060206133af858286016132af565b9150509250929050565b6133c28161328e565b82525050565b60006020820190506133dd60008301846133b9565b92915050565b6000602082840312156133f9576133f861310e565b5b600061340784828501613364565b91505092915050565b6000806000606084860312156134295761342861310e565b5b600061343786828701613364565b935050602061344886828701613364565b9250506040613459868287016132af565b9150509250925092565b6000819050919050565b600061348861348361347e846132f1565b613463565b6132f1565b9050919050565b600061349a8261346d565b9050919050565b60006134ac8261348f565b9050919050565b6134bc816134a1565b82525050565b60006020820190506134d760008301846134b3565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613502576135016134dd565b5b8235905067ffffffffffffffff81111561351f5761351e6134e2565b5b60208301915083600182028301111561353b5761353a6134e7565b5b9250929050565b600080602083850312156135595761355861310e565b5b600083013567ffffffffffffffff81111561357757613576613113565b5b613583858286016134ec565b92509250509250929050565b60008083601f8401126135a5576135a46134dd565b5b8235905067ffffffffffffffff8111156135c2576135c16134e2565b5b6020830191508360208202830111156135de576135dd6134e7565b5b9250929050565b600080602083850312156135fc576135fb61310e565b5b600083013567ffffffffffffffff81111561361a57613619613113565b5b6136268582860161358f565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61366781613311565b82525050565b600067ffffffffffffffff82169050919050565b61368a8161366d565b82525050565b6136998161319d565b82525050565b600062ffffff82169050919050565b6136b78161369f565b82525050565b6080820160008201516136d3600085018261365e565b5060208201516136e66020850182613681565b5060408201516136f96040850182613690565b50606082015161370c60608501826136ae565b50505050565b600061371e83836136bd565b60808301905092915050565b6000602082019050919050565b600061374282613632565b61374c818561363d565b93506137578361364e565b8060005b8381101561378857815161376f8882613712565b975061377a8361372a565b92505060018101905061375b565b5085935050505092915050565b600060208201905081810360008301526137af8184613737565b905092915050565b6137c08161319d565b81146137cb57600080fd5b50565b6000813590506137dd816137b7565b92915050565b600080604083850312156137fa576137f961310e565b5b600061380885828601613364565b9250506020613819858286016137ce565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138588161328e565b82525050565b600061386a838361384f565b60208301905092915050565b6000602082019050919050565b600061388e82613823565b613898818561382e565b93506138a38361383f565b8060005b838110156138d45781516138bb888261385e565b97506138c683613876565b9250506001810190506138a7565b5085935050505092915050565b600060208201905081810360008301526138fb8184613883565b905092915050565b60008060006060848603121561391c5761391b61310e565b5b600061392a86828701613364565b935050602061393b868287016132af565b925050604061394c868287016132af565b9150509250925092565b60006020828403121561396c5761396b61310e565b5b600061397a848285016137ce565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139c082613222565b810181811067ffffffffffffffff821117156139df576139de613988565b5b80604052505050565b60006139f2613104565b90506139fe82826139b7565b919050565b600067ffffffffffffffff821115613a1e57613a1d613988565b5b613a2782613222565b9050602081019050919050565b82818337600083830152505050565b6000613a56613a5184613a03565b6139e8565b905082815260208101848484011115613a7257613a71613983565b5b613a7d848285613a34565b509392505050565b600082601f830112613a9a57613a996134dd565b5b8135613aaa848260208601613a43565b91505092915050565b60008060008060808587031215613acd57613acc61310e565b5b6000613adb87828801613364565b9450506020613aec87828801613364565b9350506040613afd878288016132af565b925050606085013567ffffffffffffffff811115613b1e57613b1d613113565b5b613b2a87828801613a85565b91505092959194509250565b60008083601f840112613b4c57613b4b6134dd565b5b8235905067ffffffffffffffff811115613b6957613b686134e2565b5b602083019150836020820283011115613b8557613b846134e7565b5b9250929050565b600080600060408486031215613ba557613ba461310e565b5b600084013567ffffffffffffffff811115613bc357613bc2613113565b5b613bcf86828701613b36565b93509350506020613be2868287016132af565b9150509250925092565b608082016000820151613c02600085018261365e565b506020820151613c156020850182613681565b506040820151613c286040850182613690565b506060820151613c3b60608501826136ae565b50505050565b6000608082019050613c566000830184613bec565b92915050565b60008060408385031215613c7357613c7261310e565b5b6000613c8185828601613364565b9250506020613c9285828601613364565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ce357607f821691505b602082108103613cf657613cf5613c9c565b5b50919050565b6000604082019050613d116000830185613323565b613d1e6020830184613323565b9392505050565b600081519050613d34816137b7565b92915050565b600060208284031215613d5057613d4f61310e565b5b6000613d5e84828501613d25565b91505092915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613dd47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613d97565b613dde8683613d97565b95508019841693508086168417925050509392505050565b6000613e11613e0c613e078461328e565b613463565b61328e565b9050919050565b6000819050919050565b613e2b83613df6565b613e3f613e3782613e18565b848454613da4565b825550505050565b600090565b613e54613e47565b613e5f818484613e22565b505050565b5b81811015613e8357613e78600082613e4c565b600181019050613e65565b5050565b601f821115613ec857613e9981613d72565b613ea284613d87565b81016020851015613eb1578190505b613ec5613ebd85613d87565b830182613e64565b50505b505050565b600082821c905092915050565b6000613eeb60001984600802613ecd565b1980831691505092915050565b6000613f048383613eda565b9150826002028217905092915050565b613f1e8383613d67565b67ffffffffffffffff811115613f3757613f36613988565b5b613f418254613ccb565b613f4c828285613e87565b6000601f831160018114613f7b5760008415613f69578287013590505b613f738582613ef8565b865550613fdb565b601f198416613f8986613d72565b60005b82811015613fb157848901358255600182019150602085019450602081019050613f8c565b86831015613fce5784890135613fca601f891682613eda565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f52656b746c616e64204d696e74696e6720436c6f736520210000000000000000600082015250565b60006140496018836131de565b915061405482614013565b602082019050919050565b600060208201905081810360008301526140788161403c565b9050919050565b7f52656b746c616e64204d61782050657220547820210000000000000000000000600082015250565b60006140b56015836131de565b91506140c08261407f565b602082019050919050565b600060208201905081810360008301526140e4816140a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141258261328e565b91506141308361328e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614165576141646140eb565b5b828201905092915050565b7f52656b746c616e6420536f6c646f757420210000000000000000000000000000600082015250565b60006141a66012836131de565b91506141b182614170565b602082019050919050565b600060208201905081810360008301526141d581614199565b9050919050565b60006141e78261328e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614219576142186140eb565b5b600182019050919050565b600081905092915050565b600061423a826131d3565b6142448185614224565b93506142548185602086016131ef565b80840191505092915050565b600061426c828561422f565b9150614278828461422f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142e06026836131de565b91506142eb82614284565b604082019050919050565b6000602082019050818103600083015261430f816142d3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061434c6020836131de565b915061435782614316565b602082019050919050565b6000602082019050818103600083015261437b8161433f565b9050919050565b600061438d8261328e565b91506143988361328e565b9250828210156143ab576143aa6140eb565b5b828203905092915050565b60006143c18261328e565b91506143cc8361328e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614405576144046140eb565b5b828202905092915050565b7f52656b746c616e6420496e73756666696369656e742046756e64732021000000600082015250565b6000614446601d836131de565b915061445182614410565b602082019050919050565b6000602082019050818103600083015261447581614439565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006144a38261447c565b6144ad8185614487565b93506144bd8185602086016131ef565b6144c681613222565b840191505092915050565b60006080820190506144e66000830187613323565b6144f36020830186613323565b61450060408301856133b9565b81810360608301526145128184614498565b905095945050505050565b60008151905061452c81613144565b92915050565b6000602082840312156145485761454761310e565b5b60006145568482850161451d565b9150509291505056fea26469706673582212205531694d4c73ee346516850c53052f79eb6fa7069c8e022bc8d9e9e380fbdf8d64736f6c634300080f0033

Deployed Bytecode Sourcemap

469:4734:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4048:200:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;825:42:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3295:86;;;;;;;;;;;;;:::i;:::-;;4493:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3711:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3924:116;;;;;;;;;;;;;:::i;:::-;;753:143:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4717:224:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3393:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;791:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1641:513:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2049:669:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11391:150:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;686:21:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3818:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7045:230:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:0;;;;;;;;;;;;;:::i;:::-;;3601:98:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;605:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3181:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5417:879:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3503:90:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10208:102:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2528:2454:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1090:267:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4256:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1916:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4949:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2963:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1070:418:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10411:313:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;753:31:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2726:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;716:28:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;874:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;640:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9155:630:8;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;10039:98::-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;4048:200:7:-;4173:2;4177:24;;;;;;;;;;;2786:7:6;:60;;;;;2845:1;853:42;2797:45;;;:49;2786:60;2782:236;;;853:42;2868;;;2919:4;2926:8;2868:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2863:144;;2982:8;2963:28;;;;;;;;;;;:::i;:::-;;;;;;;;2863:144;2782:236;4214:26:7::1;4228:2;4232:7;4214:13;:26::i;:::-;4048:200:::0;;;;:::o;5894:317:8:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;825:42:7:-;;;;;;;;;;;;;;;;;:::o;3295:86::-;1094:13:0;:11;:13::i;:::-;3365:7:7::1;;;;;;;;;;;3364:8;3353:7;;:19;;;;;;;;;;;;;;;;;;3295:86::o:0;4493:216::-;4621:4;4627:24;;;;;;;;;;;2015:7:6;:60;;;;;2074:1;853:42;2026:45;;;:49;2015:60;2011:550;;;2315:10;2307:18;;:4;:18;;;2303:85;;4664:37:7::1;4683:4;4689:2;4693:7;4664:18;:37::i;:::-;2366:7:6::0;;2303:85;853:42;2407;;;2458:4;2465:10;2407:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2402:148;;2523:10;2504:30;;;;;;;;;;;:::i;:::-;;;;;;;;2402:148;2011:550;4664:37:7::1;4683:4;4689:2;4693:7;4664:18;:37::i;:::-;4493:216:::0;;;;;;:::o;3711:99::-;1094:13:0;:11;:13::i;:::-;3793:9:7::1;3782:8;:20;;;;3711:99:::0;:::o;3924:116::-;1094:13:0;:11;:13::i;:::-;3980:10:7::1;3972:28;;:60;4017:4;4001:30;;;3972:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3924:116::o:0;753:143:6:-;853:42;753:143;:::o;4717:224:7:-;4849:4;4855:24;;;;;;;;;;;2015:7:6;:60;;;;;2074:1;853:42;2026:45;;;:49;2015:60;2011:550;;;2315:10;2307:18;;:4;:18;;;2303:85;;4892:41:7::1;4915:4;4921:2;4925:7;4892:22;:41::i;:::-;2366:7:6::0;;2303:85;853:42;2407;;;2458:4;2465:10;2407:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2402:148;;2523:10;2504:30;;;;;;;;;;;:::i;:::-;;;;;;;;2402:148;2011:550;4892:41:7::1;4915:4;4921:2;4925:7;4892:22;:41::i;:::-;4717:224:::0;;;;;;:::o;3393:102::-;1094:13:0;:11;:13::i;:::-;3479:8:7::1;;3469:7;:18;;;;;;;:::i;:::-;;3393:102:::0;;:::o;791:27::-;;;;:::o;1641:513:10:-;1780:23;1843:22;1868:8;;:15;;1843:40;;1897:34;1955:14;1934:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1897:73;;1989:9;1984:123;2005:14;2000:1;:19;1984:123;;2060:32;2080:8;;2089:1;2080:11;;;;;;;:::i;:::-;;;;;;;;2060:19;:32::i;:::-;2044:10;2055:1;2044:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;2021:3;;;;;1984:123;;;;2127:10;2120:17;;;;1641:513;;;;:::o;2049:669:7:-;1094:13:0;:11;:13::i;:::-;2216:1:7::1;853:42:6;2168:45:7;;;:49;2164:547;;;2238:9;2234:466;;;853:42:6;2268:45:7;;;2322:4;2329:30;2268:92;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;2234:466;;;2447:1;2405:44;;:30;:44;;;2401:284;;853:42:6;2474:47:7;;;2530:4;2537:30;2474:94;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;2401:284;;;853:42:6;2617:33:7;;;2659:4;2617:48;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;2401:284;2234:466;2164:547;2049:669:::0;;:::o;11391:150:8:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;686:21:7:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3818:98::-;1094:13:0;:11;:13::i;:::-;3900:8:7::1;3888:9;:20;;;;3818:98:::0;:::o;7045:230:8:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;3601:98:7:-;1094:13:0;:11;:13::i;:::-;3682:9:7::1;3671:8;:20;;;;3601:98:::0;:::o;605:28::-;;;;;;;;;;;;;:::o;3181:106::-;1094:13:0;:11;:13::i;:::-;3253:26:7::1;3263:10;3275:3;3253:9;:26::i;:::-;3181:106:::0;:::o;5417:879:10:-;5495:16;5547:19;5580:25;5619:22;5644:16;5654:5;5644:9;:16::i;:::-;5619:41;;5674:25;5716:14;5702:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5674:57;;5745:31;;:::i;:::-;5795:9;5807:15;:13;:15::i;:::-;5795:27;;5790:461;5839:14;5824:11;:29;5790:461;;5890:15;5903:1;5890:12;:15::i;:::-;5878:27;;5927:9;:16;;;5967:8;5923:71;6041:1;6015:28;;:9;:14;;;:28;;;6011:109;;6087:9;:14;;;6067:34;;6011:109;6162:5;6141:26;;:17;:26;;;6137:100;;6217:1;6191:8;6200:13;;;;;;6191:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;6137:100;5790:461;5855:3;;;;;5790:461;;;;6271:8;6264:15;;;;;;;5417:879;;;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;3503:90:7:-;1094:13:0;:11;:13::i;:::-;3579:6:7::1;3567:9;:18;;;;3503:90:::0;:::o;10208:102:8:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;2528:2454:10:-;2667:16;2732:4;2723:5;:13;2719:45;;2745:19;;;;;;;;;;;;;;2719:45;2778:19;2811:17;2831:14;:12;:14::i;:::-;2811:34;;2929:15;:13;:15::i;:::-;2921:5;:23;2917:85;;;2972:15;:13;:15::i;:::-;2964:23;;2917:85;3076:9;3069:4;:16;3065:71;;;3112:9;3105:16;;3065:71;3149:25;3177:16;3187:5;3177:9;:16::i;:::-;3149:44;;3368:4;3360:5;:12;3356:271;;;3392:19;3421:5;3414:4;:12;3392:34;;3462:17;3448:11;:31;3444:109;;;3523:11;3503:31;;3444:109;3374:193;3356:271;;;3611:1;3591:21;;3356:271;3640:25;3682:17;3668:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3640:60;;3739:1;3718:17;:22;3714:76;;3767:8;3760:15;;;;;;;;3714:76;3931:31;3965:26;3985:5;3965:19;:26::i;:::-;3931:60;;4005:25;4247:9;:16;;;4242:90;;4303:9;:14;;;4283:34;;4242:90;4350:9;4362:5;4350:17;;4345:467;4374:4;4369:1;:9;;:45;;;;;4397:17;4382:11;:32;;4369:45;4345:467;;;4451:15;4464:1;4451:12;:15::i;:::-;4439:27;;4488:9;:16;;;4528:8;4484:71;4602:1;4576:28;;:9;:14;;;:28;;;4572:109;;4648:9;:14;;;4628:34;;4572:109;4723:5;4702:26;;:17;:26;;;4698:100;;4778:1;4752:8;4761:13;;;;;;4752:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;4698:100;4345:467;4416:3;;;;;4345:467;;;;4911:11;4901:8;4894:29;4957:8;4950:15;;;;;;;;2528:2454;;;;;;:::o;1090:267:7:-;1158:7;;;;;;;;;;;1150:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;1221:8;;1214:3;:15;;1206:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;1297:9;;1290:3;1274:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;1266:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1339:10;1345:3;1339:5;:10::i;:::-;1090:267;:::o;4256:229::-;4387:8;4397:24;;;;;;;;;;;2786:7:6;:60;;;;;2845:1;853:42;2797:45;;;:49;2786:60;2782:236;;;853:42;2868;;;2919:4;2926:8;2868:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2863:144;;2982:8;2963:28;;;;;;;;;;;:::i;:::-;;;;;;;;2863:144;2782:236;4434:43:7::1;4458:8;4468;4434:23;:43::i;:::-;4256:229:::0;;;;:::o;1916:125::-;1094:13:0;:11;:13::i;:::-;2025:8:7::1;1998:24;;:35;;;;;;;;;;;;;;;;;;1916:125:::0;:::o;4949:251::-;5101:4;5107:24;;;;;;;;;;;2015:7:6;:60;;;;;2074:1;853:42;2026:45;;;:49;2015:60;2011:550;;;2315:10;2307:18;;:4;:18;;;2303:85;;5144:48:7::1;5167:4;5173:2;5177:7;5186:5;5144:22;:48::i;:::-;2366:7:6::0;;2303:85;853:42;2407;;;2458:4;2465:10;2407:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2402:148;;2523:10;2504:30;;;;;;;;;;;:::i;:::-;;;;;;;;2402:148;2011:550;5144:48:7::1;5167:4;5173:2;5177:7;5186:5;5144:22;:48::i;:::-;4949:251:::0;;;;;;;:::o;2963:210::-;1094:13:0;:11;:13::i;:::-;3062:9:7::1;3057:109;3081:13;;:20;;3077:1;:24;3057:109;;;3122:32;3132:13;;3146:1;3132:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3150:3;3122:9;:32::i;:::-;3103:3;;;;;:::i;:::-;;;;3057:109;;;;2963:210:::0;;;:::o;1070:418:10:-;1154:21;;:::i;:::-;1187:31;;:::i;:::-;1242:15;:13;:15::i;:::-;1232:7;:25;:54;;;;1272:14;:12;:14::i;:::-;1261:7;:25;;1232:54;1228:101;;;1309:9;1302:16;;;;;1228:101;1350:21;1363:7;1350:12;:21::i;:::-;1338:33;;1385:9;:16;;;1381:63;;;1424:9;1417:16;;;;;1381:63;1460:21;1473:7;1460:12;:21::i;:::-;1453:28;;;1070:418;;;;:::o;10411:313:8:-;10484:13;10514:16;10522:7;10514;:16::i;:::-;10509:59;;10539:29;;;;;;;;;;;;;;10509:59;10579:21;10603:10;:8;:10::i;:::-;10579:34;;10655:1;10636:7;10630:21;:26;:87;;;;;;;;;;;;;;;;;10683:7;10692:18;10702:7;10692:9;:18::i;:::-;10666:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10630:87;10623:94;;;10411:313;;;:::o;753:31:7:-;;;;:::o;2726:113::-;2784:7;2811:20;2825:5;2811:13;:20::i;:::-;2804:27;;2726:113;;;:::o;17282:162:8:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2074:198:0:-;1094:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;::::0;2154:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;716:28:7:-;;;;:::o;874:43::-;;;;;;;;;;;;;:::o;640:39::-;;;;:::o;17693:277:8:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;981:101:7:-;1046:7;1073:1;1066:8;;981:101;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;19903:2764:8:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;22758:187::-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;12515:1249::-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;13510:111;13527:1;13517:6;:11;13510:111;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;2426:187:0:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;33423:110:8:-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;11979:159::-;12047:21;;:::i;:::-;12087:44;12106:17;:24;12124:5;12106:24;;;;;;;;;;;;12087:18;:44::i;:::-;12080:51;;11979:159;;;:::o;5590:101::-;5645:7;5671:13;;5664:20;;5590:101;:::o;1365:539:7:-;1438:8;;1417:6;:18;1424:10;1417:18;;;;;;;;;;;;;;;;:29;1414:483;;;1482:8;;1476:3;:14;1473:33;;;1498:8;;1492:14;;1473:33;1561:9;;1549:8;;1543:3;:14;;;;:::i;:::-;1542:28;;;;:::i;:::-;1529:9;:41;;1521:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;1640:3;1618:6;:18;1625:10;1618:18;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;1658:26;1668:10;1680:3;1658:9;:26::i;:::-;1414:483;;;1762:9;;1756:3;:15;;;;:::i;:::-;1743:9;:28;;1735:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1841:3;1819:6;:18;1826:10;1819:18;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;1859:26;1869:10;1881:3;1859:9;:26::i;:::-;1414:483;1365:539;:::o;16901:231:8:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;23526:396::-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;11724:164::-;11794:21;;:::i;:::-;11834:47;11853:27;11872:7;11853:18;:27::i;:::-;11834:18;:47::i;:::-;11827:54;;11724:164;;;:::o;2847:108:7:-;2907:13;2940:7;2933:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2847:108;:::o;39637:1708:8:-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40716:1;40690:419;;;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41009:4;41005:13;40997:21;;41080:4;40690:419;41070:25;40690:419;40694:21;41146:3;41141;41137:13;41259:4;41254:3;41250:14;41243:21;;41322:6;41317:3;41310:19;39740:1599;;;39637:1708;;;:::o;7352:176::-;7413:7;1360:13;1495:2;7440:18;:25;7459:5;7440:25;;;;;;;;;;;;;;;;:50;;7439:82;7432:89;;7352:176;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;18828:474:8:-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;32675:669::-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;13858:361::-;13924:31;;:::i;:::-;14000:6;13967:9;:14;;:41;;;;;;;;;;;2004:3;14052:6;:33;;14018:9;:24;;:68;;;;;;;;;;;14143:1;2118:8;14115:6;:24;:29;;14096:9;:16;;:48;;;;;;;;;;;2513:3;14183:6;:28;;14154:9;:19;;:58;;;;;;;;;;;13858:361;;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;38475:143::-;38608:6;38475:143;;;;;:::o;27091:2902::-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;14837:318::-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:12:-;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:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:60::-;6278:3;6299:5;6292:12;;6250:60;;;:::o;6316:142::-;6366:9;6399:53;6417:34;6426:24;6444:5;6426:24;:::i;:::-;6417:34;:::i;:::-;6399:53;:::i;:::-;6386:66;;6316:142;;;:::o;6464:126::-;6514:9;6547:37;6578:5;6547:37;:::i;:::-;6534:50;;6464:126;;;:::o;6596:158::-;6678:9;6711:37;6742:5;6711:37;:::i;:::-;6698:50;;6596:158;;;:::o;6760:195::-;6879:69;6942:5;6879:69;:::i;:::-;6874:3;6867:82;6760:195;;:::o;6961:286::-;7086:4;7124:2;7113:9;7109:18;7101:26;;7137:103;7237:1;7226:9;7222:17;7213:6;7137:103;:::i;:::-;6961:286;;;;:::o;7253:117::-;7362:1;7359;7352:12;7376:117;7485:1;7482;7475:12;7499:117;7608:1;7605;7598:12;7636:553;7694:8;7704:6;7754:3;7747:4;7739:6;7735:17;7731:27;7721:122;;7762:79;;:::i;:::-;7721:122;7875:6;7862:20;7852:30;;7905:18;7897:6;7894:30;7891:117;;;7927:79;;:::i;:::-;7891:117;8041:4;8033:6;8029:17;8017:29;;8095:3;8087:4;8079:6;8075:17;8065:8;8061:32;8058:41;8055:128;;;8102:79;;:::i;:::-;8055:128;7636:553;;;;;:::o;8195:529::-;8266:6;8274;8323:2;8311:9;8302:7;8298:23;8294:32;8291:119;;;8329:79;;:::i;:::-;8291:119;8477:1;8466:9;8462:17;8449:31;8507:18;8499:6;8496:30;8493:117;;;8529:79;;:::i;:::-;8493:117;8642:65;8699:7;8690:6;8679:9;8675:22;8642:65;:::i;:::-;8624:83;;;;8420:297;8195:529;;;;;:::o;8747:568::-;8820:8;8830:6;8880:3;8873:4;8865:6;8861:17;8857:27;8847:122;;8888:79;;:::i;:::-;8847:122;9001:6;8988:20;8978:30;;9031:18;9023:6;9020:30;9017:117;;;9053:79;;:::i;:::-;9017:117;9167:4;9159:6;9155:17;9143:29;;9221:3;9213:4;9205:6;9201:17;9191:8;9187:32;9184:41;9181:128;;;9228:79;;:::i;:::-;9181:128;8747:568;;;;;:::o;9321:559::-;9407:6;9415;9464:2;9452:9;9443:7;9439:23;9435:32;9432:119;;;9470:79;;:::i;:::-;9432:119;9618:1;9607:9;9603:17;9590:31;9648:18;9640:6;9637:30;9634:117;;;9670:79;;:::i;:::-;9634:117;9783:80;9855:7;9846:6;9835:9;9831:22;9783:80;:::i;:::-;9765:98;;;;9561:312;9321:559;;;;;:::o;9886:146::-;9985:6;10019:5;10013:12;10003:22;;9886:146;;;:::o;10038:216::-;10169:11;10203:6;10198:3;10191:19;10243:4;10238:3;10234:14;10219:29;;10038:216;;;;:::o;10260:164::-;10359:4;10382:3;10374:11;;10412:4;10407:3;10403:14;10395:22;;10260:164;;;:::o;10430:108::-;10507:24;10525:5;10507:24;:::i;:::-;10502:3;10495:37;10430:108;;:::o;10544:101::-;10580:7;10620:18;10613:5;10609:30;10598:41;;10544:101;;;:::o;10651:105::-;10726:23;10743:5;10726:23;:::i;:::-;10721:3;10714:36;10651:105;;:::o;10762:99::-;10833:21;10848:5;10833:21;:::i;:::-;10828:3;10821:34;10762:99;;:::o;10867:91::-;10903:7;10943:8;10936:5;10932:20;10921:31;;10867:91;;;:::o;10964:105::-;11039:23;11056:5;11039:23;:::i;:::-;11034:3;11027:36;10964:105;;:::o;11147:866::-;11298:4;11293:3;11289:14;11385:4;11378:5;11374:16;11368:23;11404:63;11461:4;11456:3;11452:14;11438:12;11404:63;:::i;:::-;11313:164;11569:4;11562:5;11558:16;11552:23;11588:61;11643:4;11638:3;11634:14;11620:12;11588:61;:::i;:::-;11487:172;11743:4;11736:5;11732:16;11726:23;11762:57;11813:4;11808:3;11804:14;11790:12;11762:57;:::i;:::-;11669:160;11916:4;11909:5;11905:16;11899:23;11935:61;11990:4;11985:3;11981:14;11967:12;11935:61;:::i;:::-;11839:167;11267:746;11147:866;;:::o;12019:307::-;12152:10;12173:110;12279:3;12271:6;12173:110;:::i;:::-;12315:4;12310:3;12306:14;12292:28;;12019:307;;;;:::o;12332:145::-;12434:4;12466;12461:3;12457:14;12449:22;;12332:145;;;:::o;12559:988::-;12742:3;12771:86;12851:5;12771:86;:::i;:::-;12873:118;12984:6;12979:3;12873:118;:::i;:::-;12866:125;;13015:88;13097:5;13015:88;:::i;:::-;13126:7;13157:1;13142:380;13167:6;13164:1;13161:13;13142:380;;;13243:6;13237:13;13270:127;13393:3;13378:13;13270:127;:::i;:::-;13263:134;;13420:92;13505:6;13420:92;:::i;:::-;13410:102;;13202:320;13189:1;13186;13182:9;13177:14;;13142:380;;;13146:14;13538:3;13531:10;;12747:800;;;12559:988;;;;:::o;13553:501::-;13760:4;13798:2;13787:9;13783:18;13775:26;;13847:9;13841:4;13837:20;13833:1;13822:9;13818:17;13811:47;13875:172;14042:4;14033:6;13875:172;:::i;:::-;13867:180;;13553:501;;;;:::o;14060:116::-;14130:21;14145:5;14130:21;:::i;:::-;14123:5;14120:32;14110:60;;14166:1;14163;14156:12;14110:60;14060:116;:::o;14182:133::-;14225:5;14263:6;14250:20;14241:29;;14279:30;14303:5;14279:30;:::i;:::-;14182:133;;;;:::o;14321:468::-;14386:6;14394;14443:2;14431:9;14422:7;14418:23;14414:32;14411:119;;;14449:79;;:::i;:::-;14411:119;14569:1;14594:53;14639:7;14630:6;14619:9;14615:22;14594:53;:::i;:::-;14584:63;;14540:117;14696:2;14722:50;14764:7;14755:6;14744:9;14740:22;14722:50;:::i;:::-;14712:60;;14667:115;14321:468;;;;;:::o;14795:114::-;14862:6;14896:5;14890:12;14880:22;;14795:114;;;:::o;14915:184::-;15014:11;15048:6;15043:3;15036:19;15088:4;15083:3;15079:14;15064:29;;14915:184;;;;:::o;15105:132::-;15172:4;15195:3;15187:11;;15225:4;15220:3;15216:14;15208:22;;15105:132;;;:::o;15243:108::-;15320:24;15338:5;15320:24;:::i;:::-;15315:3;15308:37;15243:108;;:::o;15357:179::-;15426:10;15447:46;15489:3;15481:6;15447:46;:::i;:::-;15525:4;15520:3;15516:14;15502:28;;15357:179;;;;:::o;15542:113::-;15612:4;15644;15639:3;15635:14;15627:22;;15542:113;;;:::o;15691:732::-;15810:3;15839:54;15887:5;15839:54;:::i;:::-;15909:86;15988:6;15983:3;15909:86;:::i;:::-;15902:93;;16019:56;16069:5;16019:56;:::i;:::-;16098:7;16129:1;16114:284;16139:6;16136:1;16133:13;16114:284;;;16215:6;16209:13;16242:63;16301:3;16286:13;16242:63;:::i;:::-;16235:70;;16328:60;16381:6;16328:60;:::i;:::-;16318:70;;16174:224;16161:1;16158;16154:9;16149:14;;16114:284;;;16118:14;16414:3;16407:10;;15815:608;;;15691:732;;;;:::o;16429:373::-;16572:4;16610:2;16599:9;16595:18;16587:26;;16659:9;16653:4;16649:20;16645:1;16634:9;16630:17;16623:47;16687:108;16790:4;16781:6;16687:108;:::i;:::-;16679:116;;16429:373;;;;:::o;16808:619::-;16885:6;16893;16901;16950:2;16938:9;16929:7;16925:23;16921:32;16918:119;;;16956:79;;:::i;:::-;16918:119;17076:1;17101:53;17146:7;17137:6;17126:9;17122:22;17101:53;:::i;:::-;17091:63;;17047:117;17203:2;17229:53;17274:7;17265:6;17254:9;17250:22;17229:53;:::i;:::-;17219:63;;17174:118;17331:2;17357:53;17402:7;17393:6;17382:9;17378:22;17357:53;:::i;:::-;17347:63;;17302:118;16808:619;;;;;:::o;17433:323::-;17489:6;17538:2;17526:9;17517:7;17513:23;17509:32;17506:119;;;17544:79;;:::i;:::-;17506:119;17664:1;17689:50;17731:7;17722:6;17711:9;17707:22;17689:50;:::i;:::-;17679:60;;17635:114;17433:323;;;;:::o;17762:117::-;17871:1;17868;17861:12;17885:180;17933:77;17930:1;17923:88;18030:4;18027:1;18020:15;18054:4;18051:1;18044:15;18071:281;18154:27;18176:4;18154:27;:::i;:::-;18146:6;18142:40;18284:6;18272:10;18269:22;18248:18;18236:10;18233:34;18230:62;18227:88;;;18295:18;;:::i;:::-;18227:88;18335:10;18331:2;18324:22;18114:238;18071:281;;:::o;18358:129::-;18392:6;18419:20;;:::i;:::-;18409:30;;18448:33;18476:4;18468:6;18448:33;:::i;:::-;18358:129;;;:::o;18493:307::-;18554:4;18644:18;18636:6;18633:30;18630:56;;;18666:18;;:::i;:::-;18630:56;18704:29;18726:6;18704:29;:::i;:::-;18696:37;;18788:4;18782;18778:15;18770:23;;18493:307;;;:::o;18806:154::-;18890:6;18885:3;18880;18867:30;18952:1;18943:6;18938:3;18934:16;18927:27;18806:154;;;:::o;18966:410::-;19043:5;19068:65;19084:48;19125:6;19084:48;:::i;:::-;19068:65;:::i;:::-;19059:74;;19156:6;19149:5;19142:21;19194:4;19187:5;19183:16;19232:3;19223:6;19218:3;19214:16;19211:25;19208:112;;;19239:79;;:::i;:::-;19208:112;19329:41;19363:6;19358:3;19353;19329:41;:::i;:::-;19049:327;18966:410;;;;;:::o;19395:338::-;19450:5;19499:3;19492:4;19484:6;19480:17;19476:27;19466:122;;19507:79;;:::i;:::-;19466:122;19624:6;19611:20;19649:78;19723:3;19715:6;19708:4;19700:6;19696:17;19649:78;:::i;:::-;19640:87;;19456:277;19395:338;;;;:::o;19739:943::-;19834:6;19842;19850;19858;19907:3;19895:9;19886:7;19882:23;19878:33;19875:120;;;19914:79;;:::i;:::-;19875:120;20034:1;20059:53;20104:7;20095:6;20084:9;20080:22;20059:53;:::i;:::-;20049:63;;20005:117;20161:2;20187:53;20232:7;20223:6;20212:9;20208:22;20187:53;:::i;:::-;20177:63;;20132:118;20289:2;20315:53;20360:7;20351:6;20340:9;20336:22;20315:53;:::i;:::-;20305:63;;20260:118;20445:2;20434:9;20430:18;20417:32;20476:18;20468:6;20465:30;20462:117;;;20498:79;;:::i;:::-;20462:117;20603:62;20657:7;20648:6;20637:9;20633:22;20603:62;:::i;:::-;20593:72;;20388:287;19739:943;;;;;;;:::o;20705:568::-;20778:8;20788:6;20838:3;20831:4;20823:6;20819:17;20815:27;20805:122;;20846:79;;:::i;:::-;20805:122;20959:6;20946:20;20936:30;;20989:18;20981:6;20978:30;20975:117;;;21011:79;;:::i;:::-;20975:117;21125:4;21117:6;21113:17;21101:29;;21179:3;21171:4;21163:6;21159:17;21149:8;21145:32;21142:41;21139:128;;;21186:79;;:::i;:::-;21139:128;20705:568;;;;;:::o;21279:704::-;21374:6;21382;21390;21439:2;21427:9;21418:7;21414:23;21410:32;21407:119;;;21445:79;;:::i;:::-;21407:119;21593:1;21582:9;21578:17;21565:31;21623:18;21615:6;21612:30;21609:117;;;21645:79;;:::i;:::-;21609:117;21758:80;21830:7;21821:6;21810:9;21806:22;21758:80;:::i;:::-;21740:98;;;;21536:312;21887:2;21913:53;21958:7;21949:6;21938:9;21934:22;21913:53;:::i;:::-;21903:63;;21858:118;21279:704;;;;;:::o;22061:876::-;22222:4;22217:3;22213:14;22309:4;22302:5;22298:16;22292:23;22328:63;22385:4;22380:3;22376:14;22362:12;22328:63;:::i;:::-;22237:164;22493:4;22486:5;22482:16;22476:23;22512:61;22567:4;22562:3;22558:14;22544:12;22512:61;:::i;:::-;22411:172;22667:4;22660:5;22656:16;22650:23;22686:57;22737:4;22732:3;22728:14;22714:12;22686:57;:::i;:::-;22593:160;22840:4;22833:5;22829:16;22823:23;22859:61;22914:4;22909:3;22905:14;22891:12;22859:61;:::i;:::-;22763:167;22191:746;22061:876;;:::o;22943:351::-;23100:4;23138:3;23127:9;23123:19;23115:27;;23152:135;23284:1;23273:9;23269:17;23260:6;23152:135;:::i;:::-;22943:351;;;;:::o;23300:474::-;23368:6;23376;23425:2;23413:9;23404:7;23400:23;23396:32;23393:119;;;23431:79;;:::i;:::-;23393:119;23551:1;23576:53;23621:7;23612:6;23601:9;23597:22;23576:53;:::i;:::-;23566:63;;23522:117;23678:2;23704:53;23749:7;23740:6;23729:9;23725:22;23704:53;:::i;:::-;23694:63;;23649:118;23300:474;;;;;:::o;23780:180::-;23828:77;23825:1;23818:88;23925:4;23922:1;23915:15;23949:4;23946:1;23939:15;23966:320;24010:6;24047:1;24041:4;24037:12;24027:22;;24094:1;24088:4;24084:12;24115:18;24105:81;;24171:4;24163:6;24159:17;24149:27;;24105:81;24233:2;24225:6;24222:14;24202:18;24199:38;24196:84;;24252:18;;:::i;:::-;24196:84;24017:269;23966:320;;;:::o;24292:332::-;24413:4;24451:2;24440:9;24436:18;24428:26;;24464:71;24532:1;24521:9;24517:17;24508:6;24464:71;:::i;:::-;24545:72;24613:2;24602:9;24598:18;24589:6;24545:72;:::i;:::-;24292:332;;;;;:::o;24630:137::-;24684:5;24715:6;24709:13;24700:22;;24731:30;24755:5;24731:30;:::i;:::-;24630:137;;;;:::o;24773:345::-;24840:6;24889:2;24877:9;24868:7;24864:23;24860:32;24857:119;;;24895:79;;:::i;:::-;24857:119;25015:1;25040:61;25093:7;25084:6;25073:9;25069:22;25040:61;:::i;:::-;25030:71;;24986:125;24773:345;;;;:::o;25124:97::-;25183:6;25211:3;25201:13;;25124:97;;;;:::o;25227:141::-;25276:4;25299:3;25291:11;;25322:3;25319:1;25312:14;25356:4;25353:1;25343:18;25335:26;;25227:141;;;:::o;25374:93::-;25411:6;25458:2;25453;25446:5;25442:14;25438:23;25428:33;;25374:93;;;:::o;25473:107::-;25517:8;25567:5;25561:4;25557:16;25536:37;;25473:107;;;;:::o;25586:393::-;25655:6;25705:1;25693:10;25689:18;25728:97;25758:66;25747:9;25728:97;:::i;:::-;25846:39;25876:8;25865:9;25846:39;:::i;:::-;25834:51;;25918:4;25914:9;25907:5;25903:21;25894:30;;25967:4;25957:8;25953:19;25946:5;25943:30;25933:40;;25662:317;;25586:393;;;;;:::o;25985:142::-;26035:9;26068:53;26086:34;26095:24;26113:5;26095:24;:::i;:::-;26086:34;:::i;:::-;26068:53;:::i;:::-;26055:66;;25985:142;;;:::o;26133:75::-;26176:3;26197:5;26190:12;;26133:75;;;:::o;26214:269::-;26324:39;26355:7;26324:39;:::i;:::-;26385:91;26434:41;26458:16;26434:41;:::i;:::-;26426:6;26419:4;26413:11;26385:91;:::i;:::-;26379:4;26372:105;26290:193;26214:269;;;:::o;26489:73::-;26534:3;26489:73;:::o;26568:189::-;26645:32;;:::i;:::-;26686:65;26744:6;26736;26730:4;26686:65;:::i;:::-;26621:136;26568:189;;:::o;26763:186::-;26823:120;26840:3;26833:5;26830:14;26823:120;;;26894:39;26931:1;26924:5;26894:39;:::i;:::-;26867:1;26860:5;26856:13;26847:22;;26823:120;;;26763:186;;:::o;26955:543::-;27056:2;27051:3;27048:11;27045:446;;;27090:38;27122:5;27090:38;:::i;:::-;27174:29;27192:10;27174:29;:::i;:::-;27164:8;27160:44;27357:2;27345:10;27342:18;27339:49;;;27378:8;27363:23;;27339:49;27401:80;27457:22;27475:3;27457:22;:::i;:::-;27447:8;27443:37;27430:11;27401:80;:::i;:::-;27060:431;;27045:446;26955:543;;;:::o;27504:117::-;27558:8;27608:5;27602:4;27598:16;27577:37;;27504:117;;;;:::o;27627:169::-;27671:6;27704:51;27752:1;27748:6;27740:5;27737:1;27733:13;27704:51;:::i;:::-;27700:56;27785:4;27779;27775:15;27765:25;;27678:118;27627:169;;;;:::o;27801:295::-;27877:4;28023:29;28048:3;28042:4;28023:29;:::i;:::-;28015:37;;28085:3;28082:1;28078:11;28072:4;28069:21;28061:29;;27801:295;;;;:::o;28101:1403::-;28225:44;28265:3;28260;28225:44;:::i;:::-;28334:18;28326:6;28323:30;28320:56;;;28356:18;;:::i;:::-;28320:56;28400:38;28432:4;28426:11;28400:38;:::i;:::-;28485:67;28545:6;28537;28531:4;28485:67;:::i;:::-;28579:1;28608:2;28600:6;28597:14;28625:1;28620:632;;;;29296:1;29313:6;29310:84;;;29369:9;29364:3;29360:19;29347:33;29338:42;;29310:84;29420:67;29480:6;29473:5;29420:67;:::i;:::-;29414:4;29407:81;29269:229;28590:908;;28620:632;28672:4;28668:9;28660:6;28656:22;28706:37;28738:4;28706:37;:::i;:::-;28765:1;28779:215;28793:7;28790:1;28787:14;28779:215;;;28879:9;28874:3;28870:19;28857:33;28849:6;28842:49;28930:1;28922:6;28918:14;28908:24;;28977:2;28966:9;28962:18;28949:31;;28816:4;28813:1;28809:12;28804:17;;28779:215;;;29022:6;29013:7;29010:19;29007:186;;;29087:9;29082:3;29078:19;29065:33;29130:48;29172:4;29164:6;29160:17;29149:9;29130:48;:::i;:::-;29122:6;29115:64;29030:163;29007:186;29239:1;29235;29227:6;29223:14;29219:22;29213:4;29206:36;28627:625;;;28590:908;;28200:1304;;;28101:1403;;;:::o;29510:180::-;29558:77;29555:1;29548:88;29655:4;29652:1;29645:15;29679:4;29676:1;29669:15;29696:174;29836:26;29832:1;29824:6;29820:14;29813:50;29696:174;:::o;29876:366::-;30018:3;30039:67;30103:2;30098:3;30039:67;:::i;:::-;30032:74;;30115:93;30204:3;30115:93;:::i;:::-;30233:2;30228:3;30224:12;30217:19;;29876:366;;;:::o;30248:419::-;30414:4;30452:2;30441:9;30437:18;30429:26;;30501:9;30495:4;30491:20;30487:1;30476:9;30472:17;30465:47;30529:131;30655:4;30529:131;:::i;:::-;30521:139;;30248:419;;;:::o;30673:171::-;30813:23;30809:1;30801:6;30797:14;30790:47;30673:171;:::o;30850:366::-;30992:3;31013:67;31077:2;31072:3;31013:67;:::i;:::-;31006:74;;31089:93;31178:3;31089:93;:::i;:::-;31207:2;31202:3;31198:12;31191:19;;30850:366;;;:::o;31222:419::-;31388:4;31426:2;31415:9;31411:18;31403:26;;31475:9;31469:4;31465:20;31461:1;31450:9;31446:17;31439:47;31503:131;31629:4;31503:131;:::i;:::-;31495:139;;31222:419;;;:::o;31647:180::-;31695:77;31692:1;31685:88;31792:4;31789:1;31782:15;31816:4;31813:1;31806:15;31833:305;31873:3;31892:20;31910:1;31892:20;:::i;:::-;31887:25;;31926:20;31944:1;31926:20;:::i;:::-;31921:25;;32080:1;32012:66;32008:74;32005:1;32002:81;31999:107;;;32086:18;;:::i;:::-;31999:107;32130:1;32127;32123:9;32116:16;;31833:305;;;;:::o;32144:168::-;32284:20;32280:1;32272:6;32268:14;32261:44;32144:168;:::o;32318:366::-;32460:3;32481:67;32545:2;32540:3;32481:67;:::i;:::-;32474:74;;32557:93;32646:3;32557:93;:::i;:::-;32675:2;32670:3;32666:12;32659:19;;32318:366;;;:::o;32690:419::-;32856:4;32894:2;32883:9;32879:18;32871:26;;32943:9;32937:4;32933:20;32929:1;32918:9;32914:17;32907:47;32971:131;33097:4;32971:131;:::i;:::-;32963:139;;32690:419;;;:::o;33115:233::-;33154:3;33177:24;33195:5;33177:24;:::i;:::-;33168:33;;33223:66;33216:5;33213:77;33210:103;;33293:18;;:::i;:::-;33210:103;33340:1;33333:5;33329:13;33322:20;;33115:233;;;:::o;33354:148::-;33456:11;33493:3;33478:18;;33354:148;;;;:::o;33508:377::-;33614:3;33642:39;33675:5;33642:39;:::i;:::-;33697:89;33779:6;33774:3;33697:89;:::i;:::-;33690:96;;33795:52;33840:6;33835:3;33828:4;33821:5;33817:16;33795:52;:::i;:::-;33872:6;33867:3;33863:16;33856:23;;33618:267;33508:377;;;;:::o;33891:435::-;34071:3;34093:95;34184:3;34175:6;34093:95;:::i;:::-;34086:102;;34205:95;34296:3;34287:6;34205:95;:::i;:::-;34198:102;;34317:3;34310:10;;33891:435;;;;;:::o;34332:225::-;34472:34;34468:1;34460:6;34456:14;34449:58;34541:8;34536:2;34528:6;34524:15;34517:33;34332:225;:::o;34563:366::-;34705:3;34726:67;34790:2;34785:3;34726:67;:::i;:::-;34719:74;;34802:93;34891:3;34802:93;:::i;:::-;34920:2;34915:3;34911:12;34904:19;;34563:366;;;:::o;34935:419::-;35101:4;35139:2;35128:9;35124:18;35116:26;;35188:9;35182:4;35178:20;35174:1;35163:9;35159:17;35152:47;35216:131;35342:4;35216:131;:::i;:::-;35208:139;;34935:419;;;:::o;35360:182::-;35500:34;35496:1;35488:6;35484:14;35477:58;35360:182;:::o;35548:366::-;35690:3;35711:67;35775:2;35770:3;35711:67;:::i;:::-;35704:74;;35787:93;35876:3;35787:93;:::i;:::-;35905:2;35900:3;35896:12;35889:19;;35548:366;;;:::o;35920:419::-;36086:4;36124:2;36113:9;36109:18;36101:26;;36173:9;36167:4;36163:20;36159:1;36148:9;36144:17;36137:47;36201:131;36327:4;36201:131;:::i;:::-;36193:139;;35920:419;;;:::o;36345:191::-;36385:4;36405:20;36423:1;36405:20;:::i;:::-;36400:25;;36439:20;36457:1;36439:20;:::i;:::-;36434:25;;36478:1;36475;36472:8;36469:34;;;36483:18;;:::i;:::-;36469:34;36528:1;36525;36521:9;36513:17;;36345:191;;;;:::o;36542:348::-;36582:7;36605:20;36623:1;36605:20;:::i;:::-;36600:25;;36639:20;36657:1;36639:20;:::i;:::-;36634:25;;36827:1;36759:66;36755:74;36752:1;36749:81;36744:1;36737:9;36730:17;36726:105;36723:131;;;36834:18;;:::i;:::-;36723:131;36882:1;36879;36875:9;36864:20;;36542:348;;;;:::o;36896:179::-;37036:31;37032:1;37024:6;37020:14;37013:55;36896:179;:::o;37081:366::-;37223:3;37244:67;37308:2;37303:3;37244:67;:::i;:::-;37237:74;;37320:93;37409:3;37320:93;:::i;:::-;37438:2;37433:3;37429:12;37422:19;;37081:366;;;:::o;37453:419::-;37619:4;37657:2;37646:9;37642:18;37634:26;;37706:9;37700:4;37696:20;37692:1;37681:9;37677:17;37670:47;37734:131;37860:4;37734:131;:::i;:::-;37726:139;;37453:419;;;:::o;37878:98::-;37929:6;37963:5;37957:12;37947:22;;37878:98;;;:::o;37982:168::-;38065:11;38099:6;38094:3;38087:19;38139:4;38134:3;38130:14;38115:29;;37982:168;;;;:::o;38156:360::-;38242:3;38270:38;38302:5;38270:38;:::i;:::-;38324:70;38387:6;38382:3;38324:70;:::i;:::-;38317:77;;38403:52;38448:6;38443:3;38436:4;38429:5;38425:16;38403:52;:::i;:::-;38480:29;38502:6;38480:29;:::i;:::-;38475:3;38471:39;38464:46;;38246:270;38156:360;;;;:::o;38522:640::-;38717:4;38755:3;38744:9;38740:19;38732:27;;38769:71;38837:1;38826:9;38822:17;38813:6;38769:71;:::i;:::-;38850:72;38918:2;38907:9;38903:18;38894:6;38850:72;:::i;:::-;38932;39000:2;38989:9;38985:18;38976:6;38932:72;:::i;:::-;39051:9;39045:4;39041:20;39036:2;39025:9;39021:18;39014:48;39079:76;39150:4;39141:6;39079:76;:::i;:::-;39071:84;;38522:640;;;;;;;:::o;39168:141::-;39224:5;39255:6;39249:13;39240:22;;39271:32;39297:5;39271:32;:::i;:::-;39168:141;;;;:::o;39315:349::-;39384:6;39433:2;39421:9;39412:7;39408:23;39404:32;39401:119;;;39439:79;;:::i;:::-;39401:119;39559:1;39584:63;39639:7;39630:6;39619:9;39615:22;39584:63;:::i;:::-;39574:73;;39530:127;39315:349;;;;:::o

Swarm Source

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