ETH Price: $3,394.21 (-1.40%)
Gas: 2 Gwei

Token

Mutant y00ts Ape Club (MYAC)
 

Overview

Max Total Supply

9,000 MYAC

Holders

1,376

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
slothy13.eth
Balance
1 MYAC
0x7680f91d3D3a5F451A6387ba802661d96f78dD8f
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:
Mutanty00tsApeClub

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

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

import { ECDSA } from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import { MerkleProof } from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
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 Mutanty00tsApeClub is ERC721A, ERC721AQueryable, OperatorFilterer(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6, true), Ownable {
    
    using ECDSA for bytes32;
    using Strings for uint256;
    bool public MintingPublic = false;
    bool public MintingWhitelist = false;
    bool public MintingHolder = false;
    string public baseURI;  
    bytes32 public merkleRoot;
    address public signerHolder;
    uint256 public maxPerTransaction = 20;  
    uint256 public pricePublic = 6900000000000000;
    uint256 public priceWhitelist = 4200000000000000;
    mapping (address => uint256) public walletPublic;
    mapping (address => uint256) public walletWhitelist;
    mapping (address => uint256) public walletHolder;
    mapping (address => bool) public holderClaim;
    uint256 public publicMinted = 0;
    uint256 public whitelistMinted = 0;
    uint256 public HolderMinted = 0;
    uint256 public maxSupply = 10000;
    uint256 public maxHolder = 2967;
    uint256 public maxPublic = 6933;
    uint256 public maxWhitelist = 6933;
    bool public operatorFilteringEnabled = true;

    constructor() ERC721A("Mutant y00ts Ape Club", "MYAC"){}

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

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    function y00tsapePublicMint(uint256 qty) external payable 
    {
        require(MintingPublic , "MYAC Minting Public Not Open Yet !");
        require(qty <= maxPerTransaction, "MYAC Max Per Max Per Transaction !");
        require(totalSupply() + qty <= maxSupply,"MYAC Soldout !");
        require(publicMinted + whitelistMinted + qty <= maxPublic,"MYAC Soldout !");
        require(msg.value >= qty * pricePublic,"MYAC Insufficient Funds !");
        walletPublic[msg.sender] += qty;
        publicMinted += qty;
        _safeMint(msg.sender, qty);
    }

    function y00tapeWhitelistMint(uint256 qty, bytes32[] calldata _merkleProof) external payable 
    { 
        require(MintingWhitelist, "MYAC Minting Whitelist Not Open Yet !");
        require(qty <= maxPerTransaction, "MYAC Max Per Max Per Transaction !");
        require(totalSupply() + qty <= maxSupply,"MYAC Soldout !");
        require(publicMinted + whitelistMinted + qty <= maxWhitelist,"MYAC Soldout !");
        require(msg.value >= qty * priceWhitelist,"MYAC Insufficient Funds !");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "MYAC Not y00tapelist !");
        walletWhitelist[msg.sender] += qty;
        whitelistMinted += qty;
        _safeMint(msg.sender, qty);
    }

    function y00tapeHolderClaim(uint256 qty, bytes memory signature) external payable 
    { 
        require(MintingHolder, "MYAC Claim Holder Not Open Yet !");
        require(holderClaim[msg.sender] == false,"MYAC Claimed !");
        require(totalSupply() + qty <= maxSupply,"MYAC Soldout !");
        require(HolderMinted <= maxHolder,"MYAC Soldout !");
        require(isMessageValidHolder(signature,qty),"MYAC Not Holder !");
        holderClaim[msg.sender] = true;
        walletHolder[msg.sender] += qty;
        HolderMinted += qty;
        _safeMint(msg.sender, qty);
    }

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

    function setMerkleRoot(bytes32 root) external onlyOwner {
        merkleRoot = root;
    }

    function setSignerHolder(address _signer) external onlyOwner {
        signerHolder = _signer;
    }

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

    function setWhitelistisMintingStart() external onlyOwner {
        MintingWhitelist  = !MintingWhitelist ;
    }

    function setPublicisMintingStart() external onlyOwner {
        MintingPublic  = !MintingPublic ;
    }

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

    function setPricePublic(uint256 price_) external onlyOwner {
        pricePublic = price_;
    }

    function setPriceHolder(uint256 priceHolder_) external onlyOwner {
        priceWhitelist = priceHolder_;
    }

    function setmaxPerTransaction(uint256 maxPerTransaction_) external onlyOwner {
        maxPerTransaction = maxPerTransaction_;
    }

    function setPublicSupply(uint256 maxPublic_) external onlyOwner {
        maxPublic = maxPublic_;
    }

    function setWhitelistSupply(uint256 maxWhitelist_) external onlyOwner {
        maxWhitelist = maxWhitelist_;
    }

    function setHolderSupply(uint256 maxHolder_) external onlyOwner {
        maxHolder = maxHolder_;
    }

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

    function setWalletMint(address addr_) external onlyOwner {
        walletPublic[addr_] = 0;
        walletHolder[addr_] = 0;
        walletWhitelist[addr_] = 0;
        holderClaim[addr_] = false;
    }

    function setOperatorFilteringEnabled(bool _value) external onlyOwner {
        operatorFilteringEnabled = _value;
    }

    function isMessageValidHolder(bytes memory _signature, uint256 amount) public view returns (bool)
    {
        bytes32 messagehash = keccak256(abi.encodePacked(address(this), msg.sender,amount));
        address _signer = messagehash.toEthSignedMessageHash().recover(_signature);
        if (signerHolder == _signer) {
            return true;
        } else {
            return false;
        }
    }

    function EmergencyWithdraw() external onlyOwner {
        (bool success, ) = owner().call{ value: address(this).balance }("");
        require(success, "Transfer failed");
    }
    
    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.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 4 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

File 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 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 9 of 12 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 10 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 11 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 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":"EmergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"HolderMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintingHolder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintingPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintingWhitelist","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":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holderClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"isMessageValidHolder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHolder","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxHolder_","type":"uint256"}],"name":"setHolderSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setHolderisMintingStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"priceHolder_","type":"uint256"}],"name":"setPriceHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPublic_","type":"uint256"}],"name":"setPublicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicisMintingStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSignerHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"}],"name":"setWalletMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWhitelist_","type":"uint256"}],"name":"setWhitelistSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelistisMintingStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTransaction_","type":"uint256"}],"name":"setmaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerHolder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"qty","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"","type":"address"}],"name":"walletHolder","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"y00tapeHolderClaim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"y00tapeWhitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"y00tsapePublicMint","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600860146101000a81548160ff0219169083151502179055506000600860156101000a81548160ff0219169083151502179055506000600860166101000a81548160ff0219169083151502179055506014600c556618838370f34000600d55660eebe0b40e8000600e55600060135560006014556000601555612710601655610b97601755611b15601855611b156019556001601a60006101000a81548160ff021916908315150217905550348015620000bf57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601581526020017f4d7574616e742079303074732041706520436c756200000000000000000000008152506040518060400160405280600481526020017f4d594143000000000000000000000000000000000000000000000000000000008152508160029081620001549190620006ed565b508060039081620001669190620006ed565b50620001776200039c60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003745780156200023a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200020092919062000819565b600060405180830381600087803b1580156200021b57600080fd5b505af115801562000230573d6000803e3d6000fd5b5050505062000373565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002f4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002ba92919062000819565b600060405180830381600087803b158015620002d557600080fd5b505af1158015620002ea573d6000803e3d6000fd5b5050505062000372565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200033d919062000846565b600060405180830381600087803b1580156200035857600080fd5b505af11580156200036d573d6000803e3d6000fd5b505050505b5b5b5050620003966200038a620003a560201b60201c565b620003ad60201b60201c565b62000863565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f557607f821691505b6020821081036200050b576200050a620004ad565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000536565b62000581868362000536565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005ce620005c8620005c28462000599565b620005a3565b62000599565b9050919050565b6000819050919050565b620005ea83620005ad565b62000602620005f982620005d5565b84845462000543565b825550505050565b600090565b620006196200060a565b62000626818484620005df565b505050565b5b818110156200064e57620006426000826200060f565b6001810190506200062c565b5050565b601f8211156200069d57620006678162000511565b620006728462000526565b8101602085101562000682578190505b6200069a620006918562000526565b8301826200062b565b50505b505050565b600082821c905092915050565b6000620006c260001984600802620006a2565b1980831691505092915050565b6000620006dd8383620006af565b9150826002028217905092915050565b620006f88262000473565b67ffffffffffffffff8111156200071457620007136200047e565b5b620007208254620004dc565b6200072d82828562000652565b600060209050601f83116001811462000765576000841562000750578287015190505b6200075c8582620006cf565b865550620007cc565b601f198416620007758662000511565b60005b828110156200079f5784890151825560018201915060208501945060208101905062000778565b86831015620007bf5784890151620007bb601f891682620006af565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200080182620007d4565b9050919050565b6200081381620007f4565b82525050565b600060408201905062000830600083018562000808565b6200083f602083018462000808565b9392505050565b60006020820190506200085d600083018462000808565b92915050565b615ff580620008736000396000f3fe6080604052600436106103d95760003560e01c8063715018a6116101fd578063b7c0b8e811610118578063cd81dbde116100ab578063dfc603cb1161007a578063dfc603cb14610e08578063e985e9c514610e45578063f2fde38b14610e82578063f3297dff14610eab578063fb796e6c14610ed6576103d9565b8063cd81dbde14610d72578063ce1a83da14610d9d578063d5abeb0114610db4578063d6e30cef14610ddf576103d9565b8063c23dc68f116100e7578063c23dc68f14610cc5578063c2fec2b514610d02578063c87b56dd14610d1e578063cc6a1a0614610d5b576103d9565b8063b7c0b8e814610c18578063b88d4fde14610c41578063bd756c0d14610c5d578063bf0d96c314610c9a576103d9565b80638da5cb5b11610190578063a22cb4651161015f578063a22cb46514610b70578063a4f4f8af14610b99578063abe5d56c14610bc4578063b74877cc14610bef576103d9565b80638da5cb5b14610ab257806395d89b4114610add57806399a2557a14610b085780639eef035214610b45576103d9565b80637cb64759116101cc5780637cb64759146109f65780637dc4297514610a1f5780638462151c14610a4a5780638990694f14610a87576103d9565b8063715018a61461099557806376cc322d146109ac57806379a72d1b146109c357806379b0e2a4146109df576103d9565b80633ff4f3ff116102f857806355a63bf41161028b57806363e00f931161025a57806363e00f931461089e57806367243482146108db5780636c0360eb146109045780636f8b44b01461092f57806370a0823114610958576103d9565b806355a63bf4146107d257806355f804b3146107fb5780635bbb2177146108245780636352211e14610861576103d9565b80634a81d9dd116102c75780634a81d9dd146107235780634b980d67146107605780634bd1df901461078b57806352eb119c146107b6576103d9565b80633ff4f3ff1461068a57806341f43434146106b357806342842e0e146106de5780634530a832146106fa576103d9565b80631d3e15c2116103705780632eb4a7ab1161033f5780632eb4a7ab146105f45780632fbba1151461061f5780632fff1796146106485780633ccfd60b14610673576103d9565b80631d3e15c21461054757806323b872dd1461057257806326aa420a1461058e5780632be905ba146105b7576103d9565b8063095ea7b3116103ac578063095ea7b3146104ac578063102e766d146104c8578063108bfbfa146104f357806318160ddd1461051c576103d9565b806301ffc9a7146103de57806306f9ae431461041b57806306fdde0314610444578063081812fc1461046f575b600080fd5b3480156103ea57600080fd5b50610405600480360381019061040091906141a6565b610f01565b60405161041291906141ee565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190614267565b610f93565b005b34801561045057600080fd5b506104596110c5565b6040516104669190614324565b60405180910390f35b34801561047b57600080fd5b506104966004803603810190610491919061437c565b611157565b6040516104a391906143b8565b60405180910390f35b6104c660048036038101906104c191906143d3565b6111d6565b005b3480156104d457600080fd5b506104dd6112fa565b6040516104ea9190614422565b60405180910390f35b3480156104ff57600080fd5b5061051a6004803603810190610515919061437c565b611300565b005b34801561052857600080fd5b50610531611312565b60405161053e9190614422565b60405180910390f35b34801561055357600080fd5b5061055c611329565b60405161056991906141ee565b60405180910390f35b61058c6004803603810190610587919061443d565b61133c565b005b34801561059a57600080fd5b506105b560048036038101906105b0919061437c565b6114a6565b005b3480156105c357600080fd5b506105de60048036038101906105d99190614267565b6114b8565b6040516105eb9190614422565b60405180910390f35b34801561060057600080fd5b506106096114d0565b60405161061691906144a9565b60405180910390f35b34801561062b57600080fd5b506106466004803603810190610641919061437c565b6114d6565b005b34801561065457600080fd5b5061065d6114eb565b60405161066a9190614422565b60405180910390f35b34801561067f57600080fd5b506106886114f1565b005b34801561069657600080fd5b506106b160048036038101906106ac919061437c565b611559565b005b3480156106bf57600080fd5b506106c861156b565b6040516106d59190614523565b60405180910390f35b6106f860048036038101906106f3919061443d565b61157d565b005b34801561070657600080fd5b50610721600480360381019061071c919061437c565b6116e7565b005b34801561072f57600080fd5b5061074a60048036038101906107459190614267565b6116f9565b6040516107579190614422565b60405180910390f35b34801561076c57600080fd5b50610775611711565b6040516107829190614422565b60405180910390f35b34801561079757600080fd5b506107a0611717565b6040516107ad9190614422565b60405180910390f35b6107d060048036038101906107cb91906145a3565b61171d565b005b3480156107de57600080fd5b506107f960048036038101906107f4919061437c565b6119ee565b005b34801561080757600080fd5b50610822600480360381019061081d9190614733565b611a00565b005b34801561083057600080fd5b5061084b600480360381019061084691906147d2565b611a1b565b6040516108589190614982565b60405180910390f35b34801561086d57600080fd5b506108886004803603810190610883919061437c565b611ade565b60405161089591906143b8565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c09190614a45565b611af0565b6040516108d291906141ee565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd9190614c27565b611bac565b005b34801561091057600080fd5b50610919611c16565b6040516109269190614324565b60405180910390f35b34801561093b57600080fd5b506109566004803603810190610951919061437c565b611ca4565b005b34801561096457600080fd5b5061097f600480360381019061097a9190614267565b611cb6565b60405161098c9190614422565b60405180910390f35b3480156109a157600080fd5b506109aa611d6e565b005b3480156109b857600080fd5b506109c1611d82565b005b6109dd60048036038101906109d89190614c9f565b611db6565b005b3480156109eb57600080fd5b506109f4612054565b005b348015610a0257600080fd5b50610a1d6004803603810190610a189190614d27565b612088565b005b348015610a2b57600080fd5b50610a3461209a565b604051610a419190614422565b60405180910390f35b348015610a5657600080fd5b50610a716004803603810190610a6c9190614267565b6120a0565b604051610a7e9190614e12565b60405180910390f35b348015610a9357600080fd5b50610a9c6121e3565b604051610aa99190614422565b60405180910390f35b348015610abe57600080fd5b50610ac76121e9565b604051610ad491906143b8565b60405180910390f35b348015610ae957600080fd5b50610af2612213565b604051610aff9190614324565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190614e34565b6122a5565b604051610b3c9190614e12565b60405180910390f35b348015610b5157600080fd5b50610b5a6124b1565b604051610b6791906143b8565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b929190614eb3565b6124d7565b005b348015610ba557600080fd5b50610bae6125fb565b604051610bbb9190614422565b60405180910390f35b348015610bd057600080fd5b50610bd9612601565b604051610be69190614422565b60405180910390f35b348015610bfb57600080fd5b50610c166004803603810190610c119190614267565b612607565b005b348015610c2457600080fd5b50610c3f6004803603810190610c3a9190614ef3565b612653565b005b610c5b6004803603810190610c569190614f20565b612678565b005b348015610c6957600080fd5b50610c846004803603810190610c7f9190614267565b6127e5565b604051610c9191906141ee565b60405180910390f35b348015610ca657600080fd5b50610caf612805565b604051610cbc9190614422565b60405180910390f35b348015610cd157600080fd5b50610cec6004803603810190610ce7919061437c565b61280b565b604051610cf99190614ff8565b60405180910390f35b610d1c6004803603810190610d17919061437c565b612875565b005b348015610d2a57600080fd5b50610d456004803603810190610d40919061437c565b612a8b565b604051610d529190614324565b60405180910390f35b348015610d6757600080fd5b50610d70612b29565b005b348015610d7e57600080fd5b50610d87612be7565b604051610d9491906141ee565b60405180910390f35b348015610da957600080fd5b50610db2612bfa565b005b348015610dc057600080fd5b50610dc9612c2e565b604051610dd69190614422565b60405180910390f35b348015610deb57600080fd5b50610e066004803603810190610e01919061437c565b612c34565b005b348015610e1457600080fd5b50610e2f6004803603810190610e2a9190614267565b612c46565b604051610e3c9190614422565b60405180910390f35b348015610e5157600080fd5b50610e6c6004803603810190610e679190615013565b612c5e565b604051610e7991906141ee565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190614267565b612cf2565b005b348015610eb757600080fd5b50610ec0612d75565b604051610ecd91906141ee565b60405180910390f35b348015610ee257600080fd5b50610eeb612d88565b604051610ef891906141ee565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f5c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610f8c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610f9b612d9b565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6060600280546110d490615082565b80601f016020809104026020016040519081016040528092919081815260200182805461110090615082565b801561114d5780601f106111225761010080835404028352916020019161114d565b820191906000526020600020905b81548152906001019060200180831161113057829003601f168201915b5050505050905090565b600061116282612e19565b611198576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601a60009054906101000a900460ff16808015611219575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156112ea576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b81526004016112679291906150b3565b602060405180830381865afa158015611284573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a891906150f1565b6112e957816040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112e091906143b8565b60405180910390fd5b5b6112f48484612e78565b50505050565b600d5481565b611308612d9b565b80600c8190555050565b600061131c612fbc565b6001546000540303905090565b600860159054906101000a900460ff1681565b82601a60009054906101000a900460ff1680801561137f575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611493573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113c7576113c2858585612fc5565b61149f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016114109291906150b3565b602060405180830381865afa15801561142d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145191906150f1565b61149257336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161148991906143b8565b60405180910390fd5b5b61149e858585612fc5565b5b5050505050565b6114ae612d9b565b8060188190555050565b600f6020528060005260406000206000915090505481565b600a5481565b6114de612d9b565b6114e833826132e7565b50565b600e5481565b6114f9612d9b565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611556573d6000803e3d6000fd5b50565b611561612d9b565b80600e8190555050565b6daaeb6d7670e522a718067333cd4e81565b82601a60009054906101000a900460ff168080156115c0575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156116d4573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361160857611603858585613305565b6116e0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016116519291906150b3565b602060405180830381865afa15801561166e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169291906150f1565b6116d357336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116ca91906143b8565b60405180910390fd5b5b6116df858585613305565b5b5050505050565b6116ef612d9b565b80600d8190555050565b60106020528060005260406000206000915090505481565b600c5481565b60175481565b600860159054906101000a900460ff1661176c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176390615190565b60405180910390fd5b600c548311156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890615222565b60405180910390fd5b601654836117bd611312565b6117c79190615271565b1115611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff906152f1565b60405180910390fd5b6019548360145460135461181c9190615271565b6118269190615271565b1115611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e906152f1565b60405180910390fd5b600e54836118759190615311565b3410156118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae9061539f565b60405180910390fd5b6000336040516020016118ca9190615407565b604051602081830303815290604052805190602001209050611930838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483613325565b61196f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119669061546e565b60405180910390fd5b83601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119be9190615271565b9250508190555083601460008282546119d79190615271565b925050819055506119e833856132e7565b50505050565b6119f6612d9b565b8060198190555050565b611a08612d9b565b8060099081611a179190615630565b5050565b6060600083839050905060008167ffffffffffffffff811115611a4157611a40614608565b5b604051908082528060200260200182016040528015611a7a57816020015b611a676140eb565b815260200190600190039081611a5f5790505b50905060005b828114611ad257611aa9868683818110611a9d57611a9c615702565b5b9050602002013561280b565b828281518110611abc57611abb615702565b5b6020026020010181905250806001019050611a80565b50809250505092915050565b6000611ae98261333c565b9050919050565b600080303384604051602001611b0893929190615752565b6040516020818303038152906040528051906020012090506000611b3d85611b2f84613408565b61343890919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611b9f57600192505050611ba6565b6000925050505b92915050565b611bb4612d9b565b60005b8251811015611c1157611bfe838281518110611bd657611bd5615702565b5b6020026020010151838381518110611bf157611bf0615702565b5b60200260200101516132e7565b8080611c099061578f565b915050611bb7565b505050565b60098054611c2390615082565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4f90615082565b8015611c9c5780601f10611c7157610100808354040283529160200191611c9c565b820191906000526020600020905b815481529060010190602001808311611c7f57829003601f168201915b505050505081565b611cac612d9b565b8060168190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d1d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611d76612d9b565b611d80600061345f565b565b611d8a612d9b565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600860169054906101000a900460ff16611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc90615823565b60405180910390fd5b60001515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f9061588f565b60405180910390fd5b60165482611ea4611312565b611eae9190615271565b1115611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee6906152f1565b60405180910390fd5b6017546015541115611f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2d906152f1565b60405180910390fd5b611f408183611af0565b611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f76906158fb565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120269190615271565b92505081905550816015600082825461203f9190615271565b9250508190555061205033836132e7565b5050565b61205c612d9b565b600860169054906101000a900460ff1615600860166101000a81548160ff021916908315150217905550565b612090612d9b565b80600a8190555050565b60185481565b606060008060006120b085611cb6565b905060008167ffffffffffffffff8111156120ce576120cd614608565b5b6040519080825280602002602001820160405280156120fc5781602001602082028036833780820191505090505b5090506121076140eb565b6000612111612fbc565b90505b8386146121d55761212481613525565b915081604001516121ca57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461216f57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036121c957808387806001019850815181106121bc576121bb615702565b5b6020026020010181815250505b5b806001019050612114565b508195505050505050919050565b60145481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461222290615082565b80601f016020809104026020016040519081016040528092919081815260200182805461224e90615082565b801561229b5780601f106122705761010080835404028352916020019161229b565b820191906000526020600020905b81548152906001019060200180831161227e57829003601f168201915b5050505050905090565b60608183106122e0576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806122eb613550565b90506122f5612fbc565b85101561230757612304612fbc565b94505b80841115612313578093505b600061231e87611cb6565b90508486101561234157600086860390508181101561233b578091505b50612346565b600090505b60008167ffffffffffffffff81111561236257612361614608565b5b6040519080825280602002602001820160405280156123905781602001602082028036833780820191505090505b509050600082036123a757809450505050506124aa565b60006123b28861280b565b9050600081604001516123c757816000015190505b60008990505b8881141580156123dd5750848714155b1561249c576123eb81613525565b9250826040015161249157600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461243657826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612490578084888060010199508151811061248357612482615702565b5b6020026020010181815250505b5b8060010190506123cd565b508583528296505050505050505b9392505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b81601a60009054906101000a900460ff1680801561251a575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156125eb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b81526004016125689291906150b3565b602060405180830381865afa158015612585573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125a991906150f1565b6125ea57816040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016125e191906143b8565b60405180910390fd5b5b6125f58484613559565b50505050565b60135481565b60155481565b61260f612d9b565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61265b612d9b565b80601a60006101000a81548160ff02191690831515021790555050565b83601a60009054906101000a900460ff168080156126bb575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156127d0573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612704576126ff86868686613664565b6127dd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161274d9291906150b3565b602060405180830381865afa15801561276a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061278e91906150f1565b6127cf57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016127c691906143b8565b60405180910390fd5b5b6127dc86868686613664565b5b505050505050565b60126020528060005260406000206000915054906101000a900460ff1681565b60195481565b6128136140eb565b61281b6140eb565b612823612fbc565b8310806128375750612833613550565b8310155b156128455780915050612870565b61284e83613525565b90508060400151156128635780915050612870565b61286c836136d7565b9150505b919050565b600860149054906101000a900460ff166128c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bb9061598d565b60405180910390fd5b600c54811115612909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290090615222565b60405180910390fd5b60165481612915611312565b61291f9190615271565b1115612960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612957906152f1565b60405180910390fd5b601854816014546013546129749190615271565b61297e9190615271565b11156129bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b6906152f1565b60405180910390fd5b600d54816129cd9190615311565b341015612a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a069061539f565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a5e9190615271565b925050819055508060136000828254612a779190615271565b92505081905550612a8833826132e7565b50565b6060612a9682612e19565b612acc576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612ad66136f7565b90506000815103612af65760405180602001604052806000815250612b21565b80612b0084613789565b604051602001612b119291906159e9565b6040516020818303038152906040525b915050919050565b612b31612d9b565b6000612b3b6121e9565b73ffffffffffffffffffffffffffffffffffffffff1647604051612b5e90615a3e565b60006040518083038185875af1925050503d8060008114612b9b576040519150601f19603f3d011682016040523d82523d6000602084013e612ba0565b606091505b5050905080612be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdb90615a9f565b60405180910390fd5b50565b600860149054906101000a900460ff1681565b612c02612d9b565b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b60165481565b612c3c612d9b565b8060178190555050565b60116020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612cfa612d9b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6090615b31565b60405180910390fd5b612d728161345f565b50565b600860169054906101000a900460ff1681565b601a60009054906101000a900460ff1681565b612da36137d9565b73ffffffffffffffffffffffffffffffffffffffff16612dc16121e9565b73ffffffffffffffffffffffffffffffffffffffff1614612e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0e90615b9d565b60405180910390fd5b565b600081612e24612fbc565b11158015612e33575060005482105b8015612e71575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000612e8382611ade565b90508073ffffffffffffffffffffffffffffffffffffffff16612ea46137e1565b73ffffffffffffffffffffffffffffffffffffffff1614612f0757612ed081612ecb6137e1565b612c5e565b612f06576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612fd08261333c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614613037576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080613043846137e9565b9150915061305981876130546137e1565b613810565b6130a55761306e866130696137e1565b612c5e565b6130a4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361310b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131188686866001613854565b801561312357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506131f1856131cd88888761385a565b7c020000000000000000000000000000000000000000000000000000000017613882565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036132775760006001850190506000600460008381526020019081526020016000205403613275576000548114613274578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132df86868660016138ad565b505050505050565b6133018282604051806020016040528060008152506138b3565b5050565b61332083838360405180602001604052806000815250612678565b505050565b6000826133328584613950565b1490509392505050565b6000808290508061334b612fbc565b116133d1576000548110156133d05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036133ce575b600081036133c457600460008360019003935083815260200190815260200160002054905061339a565b8092505050613403565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008160405160200161341b9190615c2a565b604051602081830303815290604052805190602001209050919050565b600080600061344785856139a6565b91509150613454816139f7565b819250505092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61352d6140eb565b6135496004600084815260200190815260200160002054613bc3565b9050919050565b60008054905090565b80600760006135666137e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166136136137e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161365891906141ee565b60405180910390a35050565b61366f84848461133c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146136d15761369a84848484613c79565b6136d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6136df6140eb565b6136f06136eb8361333c565b613bc3565b9050919050565b60606009805461370690615082565b80601f016020809104026020016040519081016040528092919081815260200182805461373290615082565b801561377f5780601f106137545761010080835404028352916020019161377f565b820191906000526020600020905b81548152906001019060200180831161376257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156137c457600184039350600a81066030018453600a81049050806137a2575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613871868684613dc9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6138bd8383613dd2565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461394b57600080549050600083820390505b6138fd6000868380600101945086613c79565b613933576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106138ea57816000541461394857600080fd5b50505b505050565b60008082905060005b845181101561399b576139868286838151811061397957613978615702565b5b6020026020010151613f8d565b915080806139939061578f565b915050613959565b508091505092915050565b60008060418351036139e75760008060006020860151925060408601519150606086015160001a90506139db87828585613fb8565b945094505050506139f0565b60006002915091505b9250929050565b60006004811115613a0b57613a0a615c50565b5b816004811115613a1e57613a1d615c50565b5b0315613bc05760016004811115613a3857613a37615c50565b5b816004811115613a4b57613a4a615c50565b5b03613a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8290615ccb565b60405180910390fd5b60026004811115613a9f57613a9e615c50565b5b816004811115613ab257613ab1615c50565b5b03613af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae990615d37565b60405180910390fd5b60036004811115613b0657613b05615c50565b5b816004811115613b1957613b18615c50565b5b03613b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b5090615dc9565b60405180910390fd5b600480811115613b6c57613b6b615c50565b5b816004811115613b7f57613b7e615c50565b5b03613bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bb690615e5b565b60405180910390fd5b5b50565b613bcb6140eb565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613c9f6137e1565b8786866040518563ffffffff1660e01b8152600401613cc19493929190615ed0565b6020604051808303816000875af1925050508015613cfd57506040513d601f19601f82011682018060405250810190613cfa9190615f31565b60015b613d76573d8060008114613d2d576040519150601f19603f3d011682016040523d82523d6000602084013e613d32565b606091505b506000815103613d6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203613e12576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613e1f6000848385613854565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613e9683613e87600086600061385a565b613e90856140c4565b17613882565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613f3757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613efc565b5060008203613f72576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613f8860008483856138ad565b505050565b6000818310613fa557613fa082846140d4565b613fb0565b613faf83836140d4565b5b905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613ff35760006003915091506140bb565b601b8560ff161415801561400b5750601c8560ff1614155b1561401d5760006004915091506140bb565b6000600187878787604051600081526020016040526040516140429493929190615f7a565b6020604051602081039080840390855afa158015614064573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036140b2576000600192509250506140bb565b80600092509250505b94509492505050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6141838161414e565b811461418e57600080fd5b50565b6000813590506141a08161417a565b92915050565b6000602082840312156141bc576141bb614144565b5b60006141ca84828501614191565b91505092915050565b60008115159050919050565b6141e8816141d3565b82525050565b600060208201905061420360008301846141df565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061423482614209565b9050919050565b61424481614229565b811461424f57600080fd5b50565b6000813590506142618161423b565b92915050565b60006020828403121561427d5761427c614144565b5b600061428b84828501614252565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142ce5780820151818401526020810190506142b3565b60008484015250505050565b6000601f19601f8301169050919050565b60006142f682614294565b614300818561429f565b93506143108185602086016142b0565b614319816142da565b840191505092915050565b6000602082019050818103600083015261433e81846142eb565b905092915050565b6000819050919050565b61435981614346565b811461436457600080fd5b50565b60008135905061437681614350565b92915050565b60006020828403121561439257614391614144565b5b60006143a084828501614367565b91505092915050565b6143b281614229565b82525050565b60006020820190506143cd60008301846143a9565b92915050565b600080604083850312156143ea576143e9614144565b5b60006143f885828601614252565b925050602061440985828601614367565b9150509250929050565b61441c81614346565b82525050565b60006020820190506144376000830184614413565b92915050565b60008060006060848603121561445657614455614144565b5b600061446486828701614252565b935050602061447586828701614252565b925050604061448686828701614367565b9150509250925092565b6000819050919050565b6144a381614490565b82525050565b60006020820190506144be600083018461449a565b92915050565b6000819050919050565b60006144e96144e46144df84614209565b6144c4565b614209565b9050919050565b60006144fb826144ce565b9050919050565b600061450d826144f0565b9050919050565b61451d81614502565b82525050565b60006020820190506145386000830184614514565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126145635761456261453e565b5b8235905067ffffffffffffffff8111156145805761457f614543565b5b60208301915083602082028301111561459c5761459b614548565b5b9250929050565b6000806000604084860312156145bc576145bb614144565b5b60006145ca86828701614367565b935050602084013567ffffffffffffffff8111156145eb576145ea614149565b5b6145f78682870161454d565b92509250509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614640826142da565b810181811067ffffffffffffffff8211171561465f5761465e614608565b5b80604052505050565b600061467261413a565b905061467e8282614637565b919050565b600067ffffffffffffffff82111561469e5761469d614608565b5b6146a7826142da565b9050602081019050919050565b82818337600083830152505050565b60006146d66146d184614683565b614668565b9050828152602081018484840111156146f2576146f1614603565b5b6146fd8482856146b4565b509392505050565b600082601f83011261471a5761471961453e565b5b813561472a8482602086016146c3565b91505092915050565b60006020828403121561474957614748614144565b5b600082013567ffffffffffffffff81111561476757614766614149565b5b61477384828501614705565b91505092915050565b60008083601f8401126147925761479161453e565b5b8235905067ffffffffffffffff8111156147af576147ae614543565b5b6020830191508360208202830111156147cb576147ca614548565b5b9250929050565b600080602083850312156147e9576147e8614144565b5b600083013567ffffffffffffffff81111561480757614806614149565b5b6148138582860161477c565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61485481614229565b82525050565b600067ffffffffffffffff82169050919050565b6148778161485a565b82525050565b614886816141d3565b82525050565b600062ffffff82169050919050565b6148a48161488c565b82525050565b6080820160008201516148c0600085018261484b565b5060208201516148d3602085018261486e565b5060408201516148e6604085018261487d565b5060608201516148f9606085018261489b565b50505050565b600061490b83836148aa565b60808301905092915050565b6000602082019050919050565b600061492f8261481f565b614939818561482a565b93506149448361483b565b8060005b8381101561497557815161495c88826148ff565b975061496783614917565b925050600181019050614948565b5085935050505092915050565b6000602082019050818103600083015261499c8184614924565b905092915050565b600067ffffffffffffffff8211156149bf576149be614608565b5b6149c8826142da565b9050602081019050919050565b60006149e86149e3846149a4565b614668565b905082815260208101848484011115614a0457614a03614603565b5b614a0f8482856146b4565b509392505050565b600082601f830112614a2c57614a2b61453e565b5b8135614a3c8482602086016149d5565b91505092915050565b60008060408385031215614a5c57614a5b614144565b5b600083013567ffffffffffffffff811115614a7a57614a79614149565b5b614a8685828601614a17565b9250506020614a9785828601614367565b9150509250929050565b600067ffffffffffffffff821115614abc57614abb614608565b5b602082029050602081019050919050565b6000614ae0614adb84614aa1565b614668565b90508083825260208201905060208402830185811115614b0357614b02614548565b5b835b81811015614b2c5780614b188882614252565b845260208401935050602081019050614b05565b5050509392505050565b600082601f830112614b4b57614b4a61453e565b5b8135614b5b848260208601614acd565b91505092915050565b600067ffffffffffffffff821115614b7f57614b7e614608565b5b602082029050602081019050919050565b6000614ba3614b9e84614b64565b614668565b90508083825260208201905060208402830185811115614bc657614bc5614548565b5b835b81811015614bef5780614bdb8882614367565b845260208401935050602081019050614bc8565b5050509392505050565b600082601f830112614c0e57614c0d61453e565b5b8135614c1e848260208601614b90565b91505092915050565b60008060408385031215614c3e57614c3d614144565b5b600083013567ffffffffffffffff811115614c5c57614c5b614149565b5b614c6885828601614b36565b925050602083013567ffffffffffffffff811115614c8957614c88614149565b5b614c9585828601614bf9565b9150509250929050565b60008060408385031215614cb657614cb5614144565b5b6000614cc485828601614367565b925050602083013567ffffffffffffffff811115614ce557614ce4614149565b5b614cf185828601614a17565b9150509250929050565b614d0481614490565b8114614d0f57600080fd5b50565b600081359050614d2181614cfb565b92915050565b600060208284031215614d3d57614d3c614144565b5b6000614d4b84828501614d12565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d8981614346565b82525050565b6000614d9b8383614d80565b60208301905092915050565b6000602082019050919050565b6000614dbf82614d54565b614dc98185614d5f565b9350614dd483614d70565b8060005b83811015614e05578151614dec8882614d8f565b9750614df783614da7565b925050600181019050614dd8565b5085935050505092915050565b60006020820190508181036000830152614e2c8184614db4565b905092915050565b600080600060608486031215614e4d57614e4c614144565b5b6000614e5b86828701614252565b9350506020614e6c86828701614367565b9250506040614e7d86828701614367565b9150509250925092565b614e90816141d3565b8114614e9b57600080fd5b50565b600081359050614ead81614e87565b92915050565b60008060408385031215614eca57614ec9614144565b5b6000614ed885828601614252565b9250506020614ee985828601614e9e565b9150509250929050565b600060208284031215614f0957614f08614144565b5b6000614f1784828501614e9e565b91505092915050565b60008060008060808587031215614f3a57614f39614144565b5b6000614f4887828801614252565b9450506020614f5987828801614252565b9350506040614f6a87828801614367565b925050606085013567ffffffffffffffff811115614f8b57614f8a614149565b5b614f9787828801614a17565b91505092959194509250565b608082016000820151614fb9600085018261484b565b506020820151614fcc602085018261486e565b506040820151614fdf604085018261487d565b506060820151614ff2606085018261489b565b50505050565b600060808201905061500d6000830184614fa3565b92915050565b6000806040838503121561502a57615029614144565b5b600061503885828601614252565b925050602061504985828601614252565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061509a57607f821691505b6020821081036150ad576150ac615053565b5b50919050565b60006040820190506150c860008301856143a9565b6150d560208301846143a9565b9392505050565b6000815190506150eb81614e87565b92915050565b60006020828403121561510757615106614144565b5b6000615115848285016150dc565b91505092915050565b7f4d594143204d696e74696e672057686974656c697374204e6f74204f70656e2060008201527f5965742021000000000000000000000000000000000000000000000000000000602082015250565b600061517a60258361429f565b91506151858261511e565b604082019050919050565b600060208201905081810360008301526151a98161516d565b9050919050565b7f4d594143204d617820506572204d617820506572205472616e73616374696f6e60008201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b600061520c60228361429f565b9150615217826151b0565b604082019050919050565b6000602082019050818103600083015261523b816151ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061527c82614346565b915061528783614346565b925082820190508082111561529f5761529e615242565b5b92915050565b7f4d59414320536f6c646f75742021000000000000000000000000000000000000600082015250565b60006152db600e8361429f565b91506152e6826152a5565b602082019050919050565b6000602082019050818103600083015261530a816152ce565b9050919050565b600061531c82614346565b915061532783614346565b925082820261533581614346565b9150828204841483151761534c5761534b615242565b5b5092915050565b7f4d59414320496e73756666696369656e742046756e6473202100000000000000600082015250565b600061538960198361429f565b915061539482615353565b602082019050919050565b600060208201905081810360008301526153b88161537c565b9050919050565b60008160601b9050919050565b60006153d7826153bf565b9050919050565b60006153e9826153cc565b9050919050565b6154016153fc82614229565b6153de565b82525050565b600061541382846153f0565b60148201915081905092915050565b7f4d594143204e6f7420793030746170656c697374202100000000000000000000600082015250565b600061545860168361429f565b915061546382615422565b602082019050919050565b600060208201905081810360008301526154878161544b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026154f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826154b3565b6154fa86836154b3565b95508019841693508086168417925050509392505050565b600061552d61552861552384614346565b6144c4565b614346565b9050919050565b6000819050919050565b61554783615512565b61555b61555382615534565b8484546154c0565b825550505050565b600090565b615570615563565b61557b81848461553e565b505050565b5b8181101561559f57615594600082615568565b600181019050615581565b5050565b601f8211156155e4576155b58161548e565b6155be846154a3565b810160208510156155cd578190505b6155e16155d9856154a3565b830182615580565b50505b505050565b600082821c905092915050565b6000615607600019846008026155e9565b1980831691505092915050565b600061562083836155f6565b9150826002028217905092915050565b61563982614294565b67ffffffffffffffff81111561565257615651614608565b5b61565c8254615082565b6156678282856155a3565b600060209050601f83116001811461569a5760008415615688578287015190505b6156928582615614565b8655506156fa565b601f1984166156a88661548e565b60005b828110156156d0578489015182556001820191506020850194506020810190506156ab565b868310156156ed57848901516156e9601f8916826155f6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b61574c61574782614346565b615731565b82525050565b600061575e82866153f0565b60148201915061576e82856153f0565b60148201915061577e828461573b565b602082019150819050949350505050565b600061579a82614346565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036157cc576157cb615242565b5b600182019050919050565b7f4d59414320436c61696d20486f6c646572204e6f74204f70656e205965742021600082015250565b600061580d60208361429f565b9150615818826157d7565b602082019050919050565b6000602082019050818103600083015261583c81615800565b9050919050565b7f4d59414320436c61696d65642021000000000000000000000000000000000000600082015250565b6000615879600e8361429f565b915061588482615843565b602082019050919050565b600060208201905081810360008301526158a88161586c565b9050919050565b7f4d594143204e6f7420486f6c6465722021000000000000000000000000000000600082015250565b60006158e560118361429f565b91506158f0826158af565b602082019050919050565b60006020820190508181036000830152615914816158d8565b9050919050565b7f4d594143204d696e74696e67205075626c6963204e6f74204f70656e2059657460008201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b600061597760228361429f565b91506159828261591b565b604082019050919050565b600060208201905081810360008301526159a68161596a565b9050919050565b600081905092915050565b60006159c382614294565b6159cd81856159ad565b93506159dd8185602086016142b0565b80840191505092915050565b60006159f582856159b8565b9150615a0182846159b8565b91508190509392505050565b600081905092915050565b50565b6000615a28600083615a0d565b9150615a3382615a18565b600082019050919050565b6000615a4982615a1b565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000615a89600f8361429f565b9150615a9482615a53565b602082019050919050565b60006020820190508181036000830152615ab881615a7c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615b1b60268361429f565b9150615b2682615abf565b604082019050919050565b60006020820190508181036000830152615b4a81615b0e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615b8760208361429f565b9150615b9282615b51565b602082019050919050565b60006020820190508181036000830152615bb681615b7a565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615bf3601c836159ad565b9150615bfe82615bbd565b601c82019050919050565b6000819050919050565b615c24615c1f82614490565b615c09565b82525050565b6000615c3582615be6565b9150615c418284615c13565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615cb560188361429f565b9150615cc082615c7f565b602082019050919050565b60006020820190508181036000830152615ce481615ca8565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615d21601f8361429f565b9150615d2c82615ceb565b602082019050919050565b60006020820190508181036000830152615d5081615d14565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615db360228361429f565b9150615dbe82615d57565b604082019050919050565b60006020820190508181036000830152615de281615da6565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615e4560228361429f565b9150615e5082615de9565b604082019050919050565b60006020820190508181036000830152615e7481615e38565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615ea282615e7b565b615eac8185615e86565b9350615ebc8185602086016142b0565b615ec5816142da565b840191505092915050565b6000608082019050615ee560008301876143a9565b615ef260208301866143a9565b615eff6040830185614413565b8181036060830152615f118184615e97565b905095945050505050565b600081519050615f2b8161417a565b92915050565b600060208284031215615f4757615f46614144565b5b6000615f5584828501615f1c565b91505092915050565b600060ff82169050919050565b615f7481615f5e565b82525050565b6000608082019050615f8f600083018761449a565b615f9c6020830186615f6b565b615fa9604083018561449a565b615fb6606083018461449a565b9594505050505056fea26469706673582212201ba541f25608f5abf0aa33a34fabbceba5b435698c0443365378f22ceecda02864736f6c63430008110033

Deployed Bytecode

0x6080604052600436106103d95760003560e01c8063715018a6116101fd578063b7c0b8e811610118578063cd81dbde116100ab578063dfc603cb1161007a578063dfc603cb14610e08578063e985e9c514610e45578063f2fde38b14610e82578063f3297dff14610eab578063fb796e6c14610ed6576103d9565b8063cd81dbde14610d72578063ce1a83da14610d9d578063d5abeb0114610db4578063d6e30cef14610ddf576103d9565b8063c23dc68f116100e7578063c23dc68f14610cc5578063c2fec2b514610d02578063c87b56dd14610d1e578063cc6a1a0614610d5b576103d9565b8063b7c0b8e814610c18578063b88d4fde14610c41578063bd756c0d14610c5d578063bf0d96c314610c9a576103d9565b80638da5cb5b11610190578063a22cb4651161015f578063a22cb46514610b70578063a4f4f8af14610b99578063abe5d56c14610bc4578063b74877cc14610bef576103d9565b80638da5cb5b14610ab257806395d89b4114610add57806399a2557a14610b085780639eef035214610b45576103d9565b80637cb64759116101cc5780637cb64759146109f65780637dc4297514610a1f5780638462151c14610a4a5780638990694f14610a87576103d9565b8063715018a61461099557806376cc322d146109ac57806379a72d1b146109c357806379b0e2a4146109df576103d9565b80633ff4f3ff116102f857806355a63bf41161028b57806363e00f931161025a57806363e00f931461089e57806367243482146108db5780636c0360eb146109045780636f8b44b01461092f57806370a0823114610958576103d9565b806355a63bf4146107d257806355f804b3146107fb5780635bbb2177146108245780636352211e14610861576103d9565b80634a81d9dd116102c75780634a81d9dd146107235780634b980d67146107605780634bd1df901461078b57806352eb119c146107b6576103d9565b80633ff4f3ff1461068a57806341f43434146106b357806342842e0e146106de5780634530a832146106fa576103d9565b80631d3e15c2116103705780632eb4a7ab1161033f5780632eb4a7ab146105f45780632fbba1151461061f5780632fff1796146106485780633ccfd60b14610673576103d9565b80631d3e15c21461054757806323b872dd1461057257806326aa420a1461058e5780632be905ba146105b7576103d9565b8063095ea7b3116103ac578063095ea7b3146104ac578063102e766d146104c8578063108bfbfa146104f357806318160ddd1461051c576103d9565b806301ffc9a7146103de57806306f9ae431461041b57806306fdde0314610444578063081812fc1461046f575b600080fd5b3480156103ea57600080fd5b50610405600480360381019061040091906141a6565b610f01565b60405161041291906141ee565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190614267565b610f93565b005b34801561045057600080fd5b506104596110c5565b6040516104669190614324565b60405180910390f35b34801561047b57600080fd5b506104966004803603810190610491919061437c565b611157565b6040516104a391906143b8565b60405180910390f35b6104c660048036038101906104c191906143d3565b6111d6565b005b3480156104d457600080fd5b506104dd6112fa565b6040516104ea9190614422565b60405180910390f35b3480156104ff57600080fd5b5061051a6004803603810190610515919061437c565b611300565b005b34801561052857600080fd5b50610531611312565b60405161053e9190614422565b60405180910390f35b34801561055357600080fd5b5061055c611329565b60405161056991906141ee565b60405180910390f35b61058c6004803603810190610587919061443d565b61133c565b005b34801561059a57600080fd5b506105b560048036038101906105b0919061437c565b6114a6565b005b3480156105c357600080fd5b506105de60048036038101906105d99190614267565b6114b8565b6040516105eb9190614422565b60405180910390f35b34801561060057600080fd5b506106096114d0565b60405161061691906144a9565b60405180910390f35b34801561062b57600080fd5b506106466004803603810190610641919061437c565b6114d6565b005b34801561065457600080fd5b5061065d6114eb565b60405161066a9190614422565b60405180910390f35b34801561067f57600080fd5b506106886114f1565b005b34801561069657600080fd5b506106b160048036038101906106ac919061437c565b611559565b005b3480156106bf57600080fd5b506106c861156b565b6040516106d59190614523565b60405180910390f35b6106f860048036038101906106f3919061443d565b61157d565b005b34801561070657600080fd5b50610721600480360381019061071c919061437c565b6116e7565b005b34801561072f57600080fd5b5061074a60048036038101906107459190614267565b6116f9565b6040516107579190614422565b60405180910390f35b34801561076c57600080fd5b50610775611711565b6040516107829190614422565b60405180910390f35b34801561079757600080fd5b506107a0611717565b6040516107ad9190614422565b60405180910390f35b6107d060048036038101906107cb91906145a3565b61171d565b005b3480156107de57600080fd5b506107f960048036038101906107f4919061437c565b6119ee565b005b34801561080757600080fd5b50610822600480360381019061081d9190614733565b611a00565b005b34801561083057600080fd5b5061084b600480360381019061084691906147d2565b611a1b565b6040516108589190614982565b60405180910390f35b34801561086d57600080fd5b506108886004803603810190610883919061437c565b611ade565b60405161089591906143b8565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c09190614a45565b611af0565b6040516108d291906141ee565b60405180910390f35b3480156108e757600080fd5b5061090260048036038101906108fd9190614c27565b611bac565b005b34801561091057600080fd5b50610919611c16565b6040516109269190614324565b60405180910390f35b34801561093b57600080fd5b506109566004803603810190610951919061437c565b611ca4565b005b34801561096457600080fd5b5061097f600480360381019061097a9190614267565b611cb6565b60405161098c9190614422565b60405180910390f35b3480156109a157600080fd5b506109aa611d6e565b005b3480156109b857600080fd5b506109c1611d82565b005b6109dd60048036038101906109d89190614c9f565b611db6565b005b3480156109eb57600080fd5b506109f4612054565b005b348015610a0257600080fd5b50610a1d6004803603810190610a189190614d27565b612088565b005b348015610a2b57600080fd5b50610a3461209a565b604051610a419190614422565b60405180910390f35b348015610a5657600080fd5b50610a716004803603810190610a6c9190614267565b6120a0565b604051610a7e9190614e12565b60405180910390f35b348015610a9357600080fd5b50610a9c6121e3565b604051610aa99190614422565b60405180910390f35b348015610abe57600080fd5b50610ac76121e9565b604051610ad491906143b8565b60405180910390f35b348015610ae957600080fd5b50610af2612213565b604051610aff9190614324565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190614e34565b6122a5565b604051610b3c9190614e12565b60405180910390f35b348015610b5157600080fd5b50610b5a6124b1565b604051610b6791906143b8565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b929190614eb3565b6124d7565b005b348015610ba557600080fd5b50610bae6125fb565b604051610bbb9190614422565b60405180910390f35b348015610bd057600080fd5b50610bd9612601565b604051610be69190614422565b60405180910390f35b348015610bfb57600080fd5b50610c166004803603810190610c119190614267565b612607565b005b348015610c2457600080fd5b50610c3f6004803603810190610c3a9190614ef3565b612653565b005b610c5b6004803603810190610c569190614f20565b612678565b005b348015610c6957600080fd5b50610c846004803603810190610c7f9190614267565b6127e5565b604051610c9191906141ee565b60405180910390f35b348015610ca657600080fd5b50610caf612805565b604051610cbc9190614422565b60405180910390f35b348015610cd157600080fd5b50610cec6004803603810190610ce7919061437c565b61280b565b604051610cf99190614ff8565b60405180910390f35b610d1c6004803603810190610d17919061437c565b612875565b005b348015610d2a57600080fd5b50610d456004803603810190610d40919061437c565b612a8b565b604051610d529190614324565b60405180910390f35b348015610d6757600080fd5b50610d70612b29565b005b348015610d7e57600080fd5b50610d87612be7565b604051610d9491906141ee565b60405180910390f35b348015610da957600080fd5b50610db2612bfa565b005b348015610dc057600080fd5b50610dc9612c2e565b604051610dd69190614422565b60405180910390f35b348015610deb57600080fd5b50610e066004803603810190610e01919061437c565b612c34565b005b348015610e1457600080fd5b50610e2f6004803603810190610e2a9190614267565b612c46565b604051610e3c9190614422565b60405180910390f35b348015610e5157600080fd5b50610e6c6004803603810190610e679190615013565b612c5e565b604051610e7991906141ee565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190614267565b612cf2565b005b348015610eb757600080fd5b50610ec0612d75565b604051610ecd91906141ee565b60405180910390f35b348015610ee257600080fd5b50610eeb612d88565b604051610ef891906141ee565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f5c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610f8c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610f9b612d9b565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6060600280546110d490615082565b80601f016020809104026020016040519081016040528092919081815260200182805461110090615082565b801561114d5780601f106111225761010080835404028352916020019161114d565b820191906000526020600020905b81548152906001019060200180831161113057829003601f168201915b5050505050905090565b600061116282612e19565b611198576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601a60009054906101000a900460ff16808015611219575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156112ea576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b81526004016112679291906150b3565b602060405180830381865afa158015611284573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a891906150f1565b6112e957816040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112e091906143b8565b60405180910390fd5b5b6112f48484612e78565b50505050565b600d5481565b611308612d9b565b80600c8190555050565b600061131c612fbc565b6001546000540303905090565b600860159054906101000a900460ff1681565b82601a60009054906101000a900460ff1680801561137f575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b15611493573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113c7576113c2858585612fc5565b61149f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016114109291906150b3565b602060405180830381865afa15801561142d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145191906150f1565b61149257336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161148991906143b8565b60405180910390fd5b5b61149e858585612fc5565b5b5050505050565b6114ae612d9b565b8060188190555050565b600f6020528060005260406000206000915090505481565b600a5481565b6114de612d9b565b6114e833826132e7565b50565b600e5481565b6114f9612d9b565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611556573d6000803e3d6000fd5b50565b611561612d9b565b80600e8190555050565b6daaeb6d7670e522a718067333cd4e81565b82601a60009054906101000a900460ff168080156115c0575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156116d4573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361160857611603858585613305565b6116e0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016116519291906150b3565b602060405180830381865afa15801561166e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169291906150f1565b6116d357336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016116ca91906143b8565b60405180910390fd5b5b6116df858585613305565b5b5050505050565b6116ef612d9b565b80600d8190555050565b60106020528060005260406000206000915090505481565b600c5481565b60175481565b600860159054906101000a900460ff1661176c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176390615190565b60405180910390fd5b600c548311156117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890615222565b60405180910390fd5b601654836117bd611312565b6117c79190615271565b1115611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff906152f1565b60405180910390fd5b6019548360145460135461181c9190615271565b6118269190615271565b1115611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e906152f1565b60405180910390fd5b600e54836118759190615311565b3410156118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae9061539f565b60405180910390fd5b6000336040516020016118ca9190615407565b604051602081830303815290604052805190602001209050611930838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483613325565b61196f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119669061546e565b60405180910390fd5b83601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119be9190615271565b9250508190555083601460008282546119d79190615271565b925050819055506119e833856132e7565b50505050565b6119f6612d9b565b8060198190555050565b611a08612d9b565b8060099081611a179190615630565b5050565b6060600083839050905060008167ffffffffffffffff811115611a4157611a40614608565b5b604051908082528060200260200182016040528015611a7a57816020015b611a676140eb565b815260200190600190039081611a5f5790505b50905060005b828114611ad257611aa9868683818110611a9d57611a9c615702565b5b9050602002013561280b565b828281518110611abc57611abb615702565b5b6020026020010181905250806001019050611a80565b50809250505092915050565b6000611ae98261333c565b9050919050565b600080303384604051602001611b0893929190615752565b6040516020818303038152906040528051906020012090506000611b3d85611b2f84613408565b61343890919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611b9f57600192505050611ba6565b6000925050505b92915050565b611bb4612d9b565b60005b8251811015611c1157611bfe838281518110611bd657611bd5615702565b5b6020026020010151838381518110611bf157611bf0615702565b5b60200260200101516132e7565b8080611c099061578f565b915050611bb7565b505050565b60098054611c2390615082565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4f90615082565b8015611c9c5780601f10611c7157610100808354040283529160200191611c9c565b820191906000526020600020905b815481529060010190602001808311611c7f57829003601f168201915b505050505081565b611cac612d9b565b8060168190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d1d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611d76612d9b565b611d80600061345f565b565b611d8a612d9b565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600860169054906101000a900460ff16611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc90615823565b60405180910390fd5b60001515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f9061588f565b60405180910390fd5b60165482611ea4611312565b611eae9190615271565b1115611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee6906152f1565b60405180910390fd5b6017546015541115611f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2d906152f1565b60405180910390fd5b611f408183611af0565b611f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f76906158fb565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120269190615271565b92505081905550816015600082825461203f9190615271565b9250508190555061205033836132e7565b5050565b61205c612d9b565b600860169054906101000a900460ff1615600860166101000a81548160ff021916908315150217905550565b612090612d9b565b80600a8190555050565b60185481565b606060008060006120b085611cb6565b905060008167ffffffffffffffff8111156120ce576120cd614608565b5b6040519080825280602002602001820160405280156120fc5781602001602082028036833780820191505090505b5090506121076140eb565b6000612111612fbc565b90505b8386146121d55761212481613525565b915081604001516121ca57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461216f57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036121c957808387806001019850815181106121bc576121bb615702565b5b6020026020010181815250505b5b806001019050612114565b508195505050505050919050565b60145481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461222290615082565b80601f016020809104026020016040519081016040528092919081815260200182805461224e90615082565b801561229b5780601f106122705761010080835404028352916020019161229b565b820191906000526020600020905b81548152906001019060200180831161227e57829003601f168201915b5050505050905090565b60608183106122e0576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806122eb613550565b90506122f5612fbc565b85101561230757612304612fbc565b94505b80841115612313578093505b600061231e87611cb6565b90508486101561234157600086860390508181101561233b578091505b50612346565b600090505b60008167ffffffffffffffff81111561236257612361614608565b5b6040519080825280602002602001820160405280156123905781602001602082028036833780820191505090505b509050600082036123a757809450505050506124aa565b60006123b28861280b565b9050600081604001516123c757816000015190505b60008990505b8881141580156123dd5750848714155b1561249c576123eb81613525565b9250826040015161249157600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461243657826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612490578084888060010199508151811061248357612482615702565b5b6020026020010181815250505b5b8060010190506123cd565b508583528296505050505050505b9392505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b81601a60009054906101000a900460ff1680801561251a575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156125eb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b81526004016125689291906150b3565b602060405180830381865afa158015612585573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125a991906150f1565b6125ea57816040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016125e191906143b8565b60405180910390fd5b5b6125f58484613559565b50505050565b60135481565b60155481565b61260f612d9b565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61265b612d9b565b80601a60006101000a81548160ff02191690831515021790555050565b83601a60009054906101000a900460ff168080156126bb575060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b115b156127d0573373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612704576126ff86868686613664565b6127dd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161274d9291906150b3565b602060405180830381865afa15801561276a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061278e91906150f1565b6127cf57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016127c691906143b8565b60405180910390fd5b5b6127dc86868686613664565b5b505050505050565b60126020528060005260406000206000915054906101000a900460ff1681565b60195481565b6128136140eb565b61281b6140eb565b612823612fbc565b8310806128375750612833613550565b8310155b156128455780915050612870565b61284e83613525565b90508060400151156128635780915050612870565b61286c836136d7565b9150505b919050565b600860149054906101000a900460ff166128c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bb9061598d565b60405180910390fd5b600c54811115612909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290090615222565b60405180910390fd5b60165481612915611312565b61291f9190615271565b1115612960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612957906152f1565b60405180910390fd5b601854816014546013546129749190615271565b61297e9190615271565b11156129bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b6906152f1565b60405180910390fd5b600d54816129cd9190615311565b341015612a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a069061539f565b60405180910390fd5b80600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a5e9190615271565b925050819055508060136000828254612a779190615271565b92505081905550612a8833826132e7565b50565b6060612a9682612e19565b612acc576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612ad66136f7565b90506000815103612af65760405180602001604052806000815250612b21565b80612b0084613789565b604051602001612b119291906159e9565b6040516020818303038152906040525b915050919050565b612b31612d9b565b6000612b3b6121e9565b73ffffffffffffffffffffffffffffffffffffffff1647604051612b5e90615a3e565b60006040518083038185875af1925050503d8060008114612b9b576040519150601f19603f3d011682016040523d82523d6000602084013e612ba0565b606091505b5050905080612be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdb90615a9f565b60405180910390fd5b50565b600860149054906101000a900460ff1681565b612c02612d9b565b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b60165481565b612c3c612d9b565b8060178190555050565b60116020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612cfa612d9b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6090615b31565b60405180910390fd5b612d728161345f565b50565b600860169054906101000a900460ff1681565b601a60009054906101000a900460ff1681565b612da36137d9565b73ffffffffffffffffffffffffffffffffffffffff16612dc16121e9565b73ffffffffffffffffffffffffffffffffffffffff1614612e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0e90615b9d565b60405180910390fd5b565b600081612e24612fbc565b11158015612e33575060005482105b8015612e71575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000612e8382611ade565b90508073ffffffffffffffffffffffffffffffffffffffff16612ea46137e1565b73ffffffffffffffffffffffffffffffffffffffff1614612f0757612ed081612ecb6137e1565b612c5e565b612f06576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612fd08261333c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614613037576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080613043846137e9565b9150915061305981876130546137e1565b613810565b6130a55761306e866130696137e1565b612c5e565b6130a4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361310b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131188686866001613854565b801561312357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506131f1856131cd88888761385a565b7c020000000000000000000000000000000000000000000000000000000017613882565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036132775760006001850190506000600460008381526020019081526020016000205403613275576000548114613274578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132df86868660016138ad565b505050505050565b6133018282604051806020016040528060008152506138b3565b5050565b61332083838360405180602001604052806000815250612678565b505050565b6000826133328584613950565b1490509392505050565b6000808290508061334b612fbc565b116133d1576000548110156133d05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036133ce575b600081036133c457600460008360019003935083815260200190815260200160002054905061339a565b8092505050613403565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008160405160200161341b9190615c2a565b604051602081830303815290604052805190602001209050919050565b600080600061344785856139a6565b91509150613454816139f7565b819250505092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61352d6140eb565b6135496004600084815260200190815260200160002054613bc3565b9050919050565b60008054905090565b80600760006135666137e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166136136137e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161365891906141ee565b60405180910390a35050565b61366f84848461133c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146136d15761369a84848484613c79565b6136d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6136df6140eb565b6136f06136eb8361333c565b613bc3565b9050919050565b60606009805461370690615082565b80601f016020809104026020016040519081016040528092919081815260200182805461373290615082565b801561377f5780601f106137545761010080835404028352916020019161377f565b820191906000526020600020905b81548152906001019060200180831161376257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156137c457600184039350600a81066030018453600a81049050806137a2575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613871868684613dc9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6138bd8383613dd2565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461394b57600080549050600083820390505b6138fd6000868380600101945086613c79565b613933576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106138ea57816000541461394857600080fd5b50505b505050565b60008082905060005b845181101561399b576139868286838151811061397957613978615702565b5b6020026020010151613f8d565b915080806139939061578f565b915050613959565b508091505092915050565b60008060418351036139e75760008060006020860151925060408601519150606086015160001a90506139db87828585613fb8565b945094505050506139f0565b60006002915091505b9250929050565b60006004811115613a0b57613a0a615c50565b5b816004811115613a1e57613a1d615c50565b5b0315613bc05760016004811115613a3857613a37615c50565b5b816004811115613a4b57613a4a615c50565b5b03613a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a8290615ccb565b60405180910390fd5b60026004811115613a9f57613a9e615c50565b5b816004811115613ab257613ab1615c50565b5b03613af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae990615d37565b60405180910390fd5b60036004811115613b0657613b05615c50565b5b816004811115613b1957613b18615c50565b5b03613b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b5090615dc9565b60405180910390fd5b600480811115613b6c57613b6b615c50565b5b816004811115613b7f57613b7e615c50565b5b03613bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bb690615e5b565b60405180910390fd5b5b50565b613bcb6140eb565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613c9f6137e1565b8786866040518563ffffffff1660e01b8152600401613cc19493929190615ed0565b6020604051808303816000875af1925050508015613cfd57506040513d601f19601f82011682018060405250810190613cfa9190615f31565b60015b613d76573d8060008114613d2d576040519150601f19603f3d011682016040523d82523d6000602084013e613d32565b606091505b506000815103613d6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203613e12576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613e1f6000848385613854565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613e9683613e87600086600061385a565b613e90856140c4565b17613882565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613f3757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613efc565b5060008203613f72576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613f8860008483856138ad565b505050565b6000818310613fa557613fa082846140d4565b613fb0565b613faf83836140d4565b5b905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613ff35760006003915091506140bb565b601b8560ff161415801561400b5750601c8560ff1614155b1561401d5760006004915091506140bb565b6000600187878787604051600081526020016040526040516140429493929190615f7a565b6020604051602081039080840390855afa158015614064573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036140b2576000600192509250506140bb565b80600092509250505b94509492505050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6141838161414e565b811461418e57600080fd5b50565b6000813590506141a08161417a565b92915050565b6000602082840312156141bc576141bb614144565b5b60006141ca84828501614191565b91505092915050565b60008115159050919050565b6141e8816141d3565b82525050565b600060208201905061420360008301846141df565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061423482614209565b9050919050565b61424481614229565b811461424f57600080fd5b50565b6000813590506142618161423b565b92915050565b60006020828403121561427d5761427c614144565b5b600061428b84828501614252565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142ce5780820151818401526020810190506142b3565b60008484015250505050565b6000601f19601f8301169050919050565b60006142f682614294565b614300818561429f565b93506143108185602086016142b0565b614319816142da565b840191505092915050565b6000602082019050818103600083015261433e81846142eb565b905092915050565b6000819050919050565b61435981614346565b811461436457600080fd5b50565b60008135905061437681614350565b92915050565b60006020828403121561439257614391614144565b5b60006143a084828501614367565b91505092915050565b6143b281614229565b82525050565b60006020820190506143cd60008301846143a9565b92915050565b600080604083850312156143ea576143e9614144565b5b60006143f885828601614252565b925050602061440985828601614367565b9150509250929050565b61441c81614346565b82525050565b60006020820190506144376000830184614413565b92915050565b60008060006060848603121561445657614455614144565b5b600061446486828701614252565b935050602061447586828701614252565b925050604061448686828701614367565b9150509250925092565b6000819050919050565b6144a381614490565b82525050565b60006020820190506144be600083018461449a565b92915050565b6000819050919050565b60006144e96144e46144df84614209565b6144c4565b614209565b9050919050565b60006144fb826144ce565b9050919050565b600061450d826144f0565b9050919050565b61451d81614502565b82525050565b60006020820190506145386000830184614514565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126145635761456261453e565b5b8235905067ffffffffffffffff8111156145805761457f614543565b5b60208301915083602082028301111561459c5761459b614548565b5b9250929050565b6000806000604084860312156145bc576145bb614144565b5b60006145ca86828701614367565b935050602084013567ffffffffffffffff8111156145eb576145ea614149565b5b6145f78682870161454d565b92509250509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614640826142da565b810181811067ffffffffffffffff8211171561465f5761465e614608565b5b80604052505050565b600061467261413a565b905061467e8282614637565b919050565b600067ffffffffffffffff82111561469e5761469d614608565b5b6146a7826142da565b9050602081019050919050565b82818337600083830152505050565b60006146d66146d184614683565b614668565b9050828152602081018484840111156146f2576146f1614603565b5b6146fd8482856146b4565b509392505050565b600082601f83011261471a5761471961453e565b5b813561472a8482602086016146c3565b91505092915050565b60006020828403121561474957614748614144565b5b600082013567ffffffffffffffff81111561476757614766614149565b5b61477384828501614705565b91505092915050565b60008083601f8401126147925761479161453e565b5b8235905067ffffffffffffffff8111156147af576147ae614543565b5b6020830191508360208202830111156147cb576147ca614548565b5b9250929050565b600080602083850312156147e9576147e8614144565b5b600083013567ffffffffffffffff81111561480757614806614149565b5b6148138582860161477c565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61485481614229565b82525050565b600067ffffffffffffffff82169050919050565b6148778161485a565b82525050565b614886816141d3565b82525050565b600062ffffff82169050919050565b6148a48161488c565b82525050565b6080820160008201516148c0600085018261484b565b5060208201516148d3602085018261486e565b5060408201516148e6604085018261487d565b5060608201516148f9606085018261489b565b50505050565b600061490b83836148aa565b60808301905092915050565b6000602082019050919050565b600061492f8261481f565b614939818561482a565b93506149448361483b565b8060005b8381101561497557815161495c88826148ff565b975061496783614917565b925050600181019050614948565b5085935050505092915050565b6000602082019050818103600083015261499c8184614924565b905092915050565b600067ffffffffffffffff8211156149bf576149be614608565b5b6149c8826142da565b9050602081019050919050565b60006149e86149e3846149a4565b614668565b905082815260208101848484011115614a0457614a03614603565b5b614a0f8482856146b4565b509392505050565b600082601f830112614a2c57614a2b61453e565b5b8135614a3c8482602086016149d5565b91505092915050565b60008060408385031215614a5c57614a5b614144565b5b600083013567ffffffffffffffff811115614a7a57614a79614149565b5b614a8685828601614a17565b9250506020614a9785828601614367565b9150509250929050565b600067ffffffffffffffff821115614abc57614abb614608565b5b602082029050602081019050919050565b6000614ae0614adb84614aa1565b614668565b90508083825260208201905060208402830185811115614b0357614b02614548565b5b835b81811015614b2c5780614b188882614252565b845260208401935050602081019050614b05565b5050509392505050565b600082601f830112614b4b57614b4a61453e565b5b8135614b5b848260208601614acd565b91505092915050565b600067ffffffffffffffff821115614b7f57614b7e614608565b5b602082029050602081019050919050565b6000614ba3614b9e84614b64565b614668565b90508083825260208201905060208402830185811115614bc657614bc5614548565b5b835b81811015614bef5780614bdb8882614367565b845260208401935050602081019050614bc8565b5050509392505050565b600082601f830112614c0e57614c0d61453e565b5b8135614c1e848260208601614b90565b91505092915050565b60008060408385031215614c3e57614c3d614144565b5b600083013567ffffffffffffffff811115614c5c57614c5b614149565b5b614c6885828601614b36565b925050602083013567ffffffffffffffff811115614c8957614c88614149565b5b614c9585828601614bf9565b9150509250929050565b60008060408385031215614cb657614cb5614144565b5b6000614cc485828601614367565b925050602083013567ffffffffffffffff811115614ce557614ce4614149565b5b614cf185828601614a17565b9150509250929050565b614d0481614490565b8114614d0f57600080fd5b50565b600081359050614d2181614cfb565b92915050565b600060208284031215614d3d57614d3c614144565b5b6000614d4b84828501614d12565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614d8981614346565b82525050565b6000614d9b8383614d80565b60208301905092915050565b6000602082019050919050565b6000614dbf82614d54565b614dc98185614d5f565b9350614dd483614d70565b8060005b83811015614e05578151614dec8882614d8f565b9750614df783614da7565b925050600181019050614dd8565b5085935050505092915050565b60006020820190508181036000830152614e2c8184614db4565b905092915050565b600080600060608486031215614e4d57614e4c614144565b5b6000614e5b86828701614252565b9350506020614e6c86828701614367565b9250506040614e7d86828701614367565b9150509250925092565b614e90816141d3565b8114614e9b57600080fd5b50565b600081359050614ead81614e87565b92915050565b60008060408385031215614eca57614ec9614144565b5b6000614ed885828601614252565b9250506020614ee985828601614e9e565b9150509250929050565b600060208284031215614f0957614f08614144565b5b6000614f1784828501614e9e565b91505092915050565b60008060008060808587031215614f3a57614f39614144565b5b6000614f4887828801614252565b9450506020614f5987828801614252565b9350506040614f6a87828801614367565b925050606085013567ffffffffffffffff811115614f8b57614f8a614149565b5b614f9787828801614a17565b91505092959194509250565b608082016000820151614fb9600085018261484b565b506020820151614fcc602085018261486e565b506040820151614fdf604085018261487d565b506060820151614ff2606085018261489b565b50505050565b600060808201905061500d6000830184614fa3565b92915050565b6000806040838503121561502a57615029614144565b5b600061503885828601614252565b925050602061504985828601614252565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061509a57607f821691505b6020821081036150ad576150ac615053565b5b50919050565b60006040820190506150c860008301856143a9565b6150d560208301846143a9565b9392505050565b6000815190506150eb81614e87565b92915050565b60006020828403121561510757615106614144565b5b6000615115848285016150dc565b91505092915050565b7f4d594143204d696e74696e672057686974656c697374204e6f74204f70656e2060008201527f5965742021000000000000000000000000000000000000000000000000000000602082015250565b600061517a60258361429f565b91506151858261511e565b604082019050919050565b600060208201905081810360008301526151a98161516d565b9050919050565b7f4d594143204d617820506572204d617820506572205472616e73616374696f6e60008201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b600061520c60228361429f565b9150615217826151b0565b604082019050919050565b6000602082019050818103600083015261523b816151ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061527c82614346565b915061528783614346565b925082820190508082111561529f5761529e615242565b5b92915050565b7f4d59414320536f6c646f75742021000000000000000000000000000000000000600082015250565b60006152db600e8361429f565b91506152e6826152a5565b602082019050919050565b6000602082019050818103600083015261530a816152ce565b9050919050565b600061531c82614346565b915061532783614346565b925082820261533581614346565b9150828204841483151761534c5761534b615242565b5b5092915050565b7f4d59414320496e73756666696369656e742046756e6473202100000000000000600082015250565b600061538960198361429f565b915061539482615353565b602082019050919050565b600060208201905081810360008301526153b88161537c565b9050919050565b60008160601b9050919050565b60006153d7826153bf565b9050919050565b60006153e9826153cc565b9050919050565b6154016153fc82614229565b6153de565b82525050565b600061541382846153f0565b60148201915081905092915050565b7f4d594143204e6f7420793030746170656c697374202100000000000000000000600082015250565b600061545860168361429f565b915061546382615422565b602082019050919050565b600060208201905081810360008301526154878161544b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026154f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826154b3565b6154fa86836154b3565b95508019841693508086168417925050509392505050565b600061552d61552861552384614346565b6144c4565b614346565b9050919050565b6000819050919050565b61554783615512565b61555b61555382615534565b8484546154c0565b825550505050565b600090565b615570615563565b61557b81848461553e565b505050565b5b8181101561559f57615594600082615568565b600181019050615581565b5050565b601f8211156155e4576155b58161548e565b6155be846154a3565b810160208510156155cd578190505b6155e16155d9856154a3565b830182615580565b50505b505050565b600082821c905092915050565b6000615607600019846008026155e9565b1980831691505092915050565b600061562083836155f6565b9150826002028217905092915050565b61563982614294565b67ffffffffffffffff81111561565257615651614608565b5b61565c8254615082565b6156678282856155a3565b600060209050601f83116001811461569a5760008415615688578287015190505b6156928582615614565b8655506156fa565b601f1984166156a88661548e565b60005b828110156156d0578489015182556001820191506020850194506020810190506156ab565b868310156156ed57848901516156e9601f8916826155f6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b61574c61574782614346565b615731565b82525050565b600061575e82866153f0565b60148201915061576e82856153f0565b60148201915061577e828461573b565b602082019150819050949350505050565b600061579a82614346565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036157cc576157cb615242565b5b600182019050919050565b7f4d59414320436c61696d20486f6c646572204e6f74204f70656e205965742021600082015250565b600061580d60208361429f565b9150615818826157d7565b602082019050919050565b6000602082019050818103600083015261583c81615800565b9050919050565b7f4d59414320436c61696d65642021000000000000000000000000000000000000600082015250565b6000615879600e8361429f565b915061588482615843565b602082019050919050565b600060208201905081810360008301526158a88161586c565b9050919050565b7f4d594143204e6f7420486f6c6465722021000000000000000000000000000000600082015250565b60006158e560118361429f565b91506158f0826158af565b602082019050919050565b60006020820190508181036000830152615914816158d8565b9050919050565b7f4d594143204d696e74696e67205075626c6963204e6f74204f70656e2059657460008201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b600061597760228361429f565b91506159828261591b565b604082019050919050565b600060208201905081810360008301526159a68161596a565b9050919050565b600081905092915050565b60006159c382614294565b6159cd81856159ad565b93506159dd8185602086016142b0565b80840191505092915050565b60006159f582856159b8565b9150615a0182846159b8565b91508190509392505050565b600081905092915050565b50565b6000615a28600083615a0d565b9150615a3382615a18565b600082019050919050565b6000615a4982615a1b565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000615a89600f8361429f565b9150615a9482615a53565b602082019050919050565b60006020820190508181036000830152615ab881615a7c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615b1b60268361429f565b9150615b2682615abf565b604082019050919050565b60006020820190508181036000830152615b4a81615b0e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615b8760208361429f565b9150615b9282615b51565b602082019050919050565b60006020820190508181036000830152615bb681615b7a565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615bf3601c836159ad565b9150615bfe82615bbd565b601c82019050919050565b6000819050919050565b615c24615c1f82614490565b615c09565b82525050565b6000615c3582615be6565b9150615c418284615c13565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615cb560188361429f565b9150615cc082615c7f565b602082019050919050565b60006020820190508181036000830152615ce481615ca8565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615d21601f8361429f565b9150615d2c82615ceb565b602082019050919050565b60006020820190508181036000830152615d5081615d14565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615db360228361429f565b9150615dbe82615d57565b604082019050919050565b60006020820190508181036000830152615de281615da6565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615e4560228361429f565b9150615e5082615de9565b604082019050919050565b60006020820190508181036000830152615e7481615e38565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615ea282615e7b565b615eac8185615e86565b9350615ebc8185602086016142b0565b615ec5816142da565b840191505092915050565b6000608082019050615ee560008301876143a9565b615ef260208301866143a9565b615eff6040830185614413565b8181036060830152615f118184615e97565b905095945050505050565b600081519050615f2b8161417a565b92915050565b600060208284031215615f4757615f46614144565b5b6000615f5584828501615f1c565b91505092915050565b600060ff82169050919050565b615f7481615f5e565b82525050565b6000608082019050615f8f600083018761449a565b615f9c6020830186615f6b565b615fa9604083018561449a565b615fb6606083018461449a565b9594505050505056fea26469706673582212201ba541f25608f5abf0aa33a34fabbceba5b435698c0443365378f22ceecda02864736f6c63430008110033

Deployed Bytecode Sourcemap

639:7454:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5858:207:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10039:98:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6938:200:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1113:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5255:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;888:36:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7383:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5397:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1220:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1001:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4460:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1165:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6814:116;;;;;;;;;;;;;:::i;:::-;;5134:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;753:143:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7607:224:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5028:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1275:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1067:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1595:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2633:782;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5510:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4920:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1641:513:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:150:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6202:412:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4022:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;971:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5748:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7045:230:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;4690:105:6;;;;;;;;;;;;;:::i;:::-;;3423:591;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4803:105;;;;;;;;;;;;;:::i;:::-;;4250:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1633:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5417:879:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1477:34:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10208:102:8;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2528:2454:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1033:27:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7146:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1439:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1518;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4350:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6073:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7839:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1388:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1671:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1070:418:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2057:568:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10411:313:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6622:180:6;;;;;;;;;;;;;:::i;:::-;;848:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4568:114;;;;;;;;;;;;;:::i;:::-;;1556:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5635:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1333:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;931:33:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1712:43;;;;;;;;;;;;;:::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;5858:207:6:-;1094:13:0;:11;:13::i;:::-;5948:1:6::1;5926:12;:19;5939:5;5926:19;;;;;;;;;;;;;;;:23;;;;5982:1;5960:12;:19;5973:5;5960:19;;;;;;;;;;;;;;;:23;;;;6019:1;5994:15;:22;6010:5;5994:22;;;;;;;;;;;;;;;:26;;;;6052:5;6031:11;:18;6043:5;6031:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;5858:207:::0;:::o;10039:98:8:-;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;6938:200:6:-;7063:2;7067:24;;;;;;;;;;;2786:7:7;: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;7104:26:6::1;7118:2;7122:7;7104:13;:26::i;:::-;6938:200:::0;;;;:::o;1113:45::-;;;;:::o;5255:134::-;1094:13:0;:11;:13::i;:::-;5363:18:6::1;5343:17;:38;;;;5255:134:::0;:::o;5894:317:8:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;888:36:6:-;;;;;;;;;;;;;:::o;7383:216::-;7511:4;7517:24;;;;;;;;;;;2015:7:7;:60;;;;;2074:1;853:42;2026:45;;;:49;2015:60;2011:550;;;2315:10;2307:18;;:4;:18;;;2303:85;;7554:37:6::1;7573:4;7579:2;7583:7;7554:18;:37::i;:::-;2366:7:7::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;7554:37:6::1;7573:4;7579:2;7583:7;7554:18;:37::i;:::-;7383:216:::0;;;;;;:::o;5397:105::-;1094:13:0;:11;:13::i;:::-;5484:10:6::1;5472:9;:22;;;;5397:105:::0;:::o;1220:48::-;;;;;;;;;;;;;;;;;:::o;1001:25::-;;;;:::o;4460:100::-;1094:13:0;:11;:13::i;:::-;4526:26:6::1;4536:10;4548:3;4526:9;:26::i;:::-;4460:100:::0;:::o;1165:48::-;;;;:::o;6814:116::-;1094:13:0;:11;:13::i;:::-;6870:10:6::1;6862:28;;:60;6907:4;6891:30;;;6862:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;6814:116::o:0;5134:113::-;1094:13:0;:11;:13::i;:::-;5227:12:6::1;5210:14;:29;;;;5134:113:::0;:::o;753:143:7:-;853:42;753:143;:::o;7607:224:6:-;7739:4;7745:24;;;;;;;;;;;2015:7:7;:60;;;;;2074:1;853:42;2026:45;;;:49;2015:60;2011:550;;;2315:10;2307:18;;:4;:18;;;2303:85;;7782:41:6::1;7805:4;7811:2;7815:7;7782:22;:41::i;:::-;2366:7:7::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;7782:41:6::1;7805:4;7811:2;7815:7;7782:22;:41::i;:::-;7607:224:::0;;;;;;:::o;5028:98::-;1094:13:0;:11;:13::i;:::-;5112:6:6::1;5098:11;:20;;;;5028:98:::0;:::o;1275:51::-;;;;;;;;;;;;;;;;;:::o;1067:37::-;;;;:::o;1595:31::-;;;;:::o;2633:782::-;2752:16;;;;;;;;;;;2744:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2836:17;;2829:3;:24;;2821:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;2934:9;;2927:3;2911:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;2903:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;3020:12;;3013:3;2995:15;;2980:12;;:30;;;;:::i;:::-;:36;;;;:::i;:::-;:52;;2972:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;3088:14;;3082:3;:20;;;;:::i;:::-;3069:9;:33;;3061:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;3142:12;3184:10;3167:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;3157:39;;;;;;3142:54;;3215:50;3234:12;;3215:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3248:10;;3260:4;3215:18;:50::i;:::-;3207:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;3334:3;3303:15;:27;3319:10;3303:27;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;3367:3;3348:15;;:22;;;;;;;:::i;:::-;;;;;;;;3381:26;3391:10;3403:3;3381:9;:26::i;:::-;2732:683;2633:782;;;:::o;5510:117::-;1094:13:0;:11;:13::i;:::-;5606::6::1;5591:12;:28;;;;5510:117:::0;:::o;4920:100::-;1094:13:0;:11;:13::i;:::-;5004:8:6::1;4994:7;:18;;;;;;:::i;:::-;;4920:100:::0;:::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;11391:150:8:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;6202:412:6:-;6294:4;6316:19;6373:4;6380:10;6391:6;6348:50;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6338:61;;;;;;6316:83;;6410:15;6428:56;6473:10;6428:36;:11;:34;:36::i;:::-;:44;;:56;;;;:::i;:::-;6410:74;;6515:7;6499:23;;:12;;;;;;;;;;;:23;;;6495:112;;6546:4;6539:11;;;;;;6495:112;6590:5;6583:12;;;;6202:412;;;;;:::o;4022:220::-;1094:13:0;:11;:13::i;:::-;4128:9:6::1;4123:112;4147:13;:20;4143:1;:24;4123:112;;;4188:35;4198:13;4212:1;4198:16;;;;;;;;:::i;:::-;;;;;;;;4216:3;4220:1;4216:6;;;;;;;;:::i;:::-;;;;;;;;4188:9;:35::i;:::-;4169:3;;;;;:::i;:::-;;;;4123:112;;;;4022:220:::0;;:::o;971:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5748:102::-;1094:13:0;:11;:13::i;:::-;5832:10:6::1;5820:9;:22;;;;5748:102:::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;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;4690:105:6:-;1094:13:0;:11;:13::i;:::-;4773::6::1;;;;;;;;;;;4772:14;4755:13;;:31;;;;;;;;;;;;;;;;;;4690:105::o:0;3423:591::-;3531:13;;;;;;;;;;;3523:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;3627:5;3600:32;;:11;:23;3612:10;3600:23;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;3592:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;3692:9;;3685:3;3669:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;3661:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;3754:9;;3738:12;;:25;;3730:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;3800:35;3821:9;3831:3;3800:20;:35::i;:::-;3792:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;3893:4;3867:11;:23;3879:10;3867:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;3936:3;3908:12;:24;3921:10;3908:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;3966:3;3950:12;;:19;;;;;;;:::i;:::-;;;;;;;;3980:26;3990:10;4002:3;3980:9;:26::i;:::-;3423:591;;:::o;4803:105::-;1094:13:0;:11;:13::i;:::-;4886::6::1;;;;;;;;;;;4885:14;4868:13;;:31;;;;;;;;;;;;;;;;;;4803:105::o:0;4250:92::-;1094:13:0;:11;:13::i;:::-;4330:4:6::1;4317:10;:17;;;;4250:92:::0;:::o;1633:31::-;;;;:::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;1477:34:6:-;;;;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::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;1033:27:6:-;;;;;;;;;;;;;:::o;7146:229::-;7277:8;7287:24;;;;;;;;;;;2786:7:7;: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;7324:43:6::1;7348:8;7358;7324:23;:43::i;:::-;7146:229:::0;;;;:::o;1439:31::-;;;;:::o;1518:::-;;;;:::o;4350:102::-;1094:13:0;:11;:13::i;:::-;4437:7:6::1;4422:12;;:22;;;;;;;;;;;;;;;;;;4350:102:::0;:::o;6073:121::-;1094:13:0;:11;:13::i;:::-;6180:6:6::1;6153:24;;:33;;;;;;;;;;;;;;;;;;6073:121:::0;:::o;7839:251::-;7991:4;7997:24;;;;;;;;;;;2015:7:7;:60;;;;;2074:1;853:42;2026:45;;;:49;2015:60;2011:550;;;2315:10;2307:18;;:4;:18;;;2303:85;;8034:48:6::1;8057:4;8063:2;8067:7;8076:5;8034:22;:48::i;:::-;2366:7:7::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;8034:48:6::1;8057:4;8063:2;8067:7;8076:5;8034:22;:48::i;:::-;7839:251:::0;;;;;;;:::o;1388:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;1671:34::-;;;;:::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;2057:568:6:-;2140:13;;;;;;;;;;;2132:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;2219:17;;2212:3;:24;;2204:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;2317:9;;2310:3;2294:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;2286:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;2403:9;;2396:3;2378:15;;2363:12;;:30;;;;:::i;:::-;:36;;;;:::i;:::-;:49;;2355:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;2468:11;;2462:3;:17;;;;:::i;:::-;2449:9;:30;;2441:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2547:3;2519:12;:24;2532:10;2519:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;2577:3;2561:12;;:19;;;;;;;:::i;:::-;;;;;;;;2591:26;2601:10;2613:3;2591:9;:26::i;:::-;2057:568;:::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;6622:180:6:-;1094:13:0;:11;:13::i;:::-;6682:12:6::1;6700:7;:5;:7::i;:::-;:12;;6721:21;6700:48;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6681:67;;;6767:7;6759:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;6670:132;6622:180::o:0;848:33::-;;;;;;;;;;;;;:::o;4568:114::-;1094:13:0;:11;:13::i;:::-;4657:16:6::1;;;;;;;;;;;4656:17;4636:16;;:37;;;;;;;;;;;;;;;;;;4568:114::o:0;1556:32::-;;;;:::o;5635:105::-;1094:13:0;:11;:13::i;:::-;5722:10:6::1;5710:9;:22;;;;5635:105:::0;:::o;1333:48::-;;;;;;;;;;;;;;;;;:::o;17282:162:8:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;::::0;2161:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;931:33:6:-;;;;;;;;;;;;;:::o;1712:43::-;;;;;;;;;;;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::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;1828:101:6:-;1893:7;1920:1;1913:8;;1828:101;:::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;33423:110::-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;22758:187::-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;1153:184:4:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;12515:1249:8:-;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;7463:265:3:-;7532:7;7715:4;7662:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;7652:69;;;;;;7645:76;;7463:265;;;:::o;3759:227::-;3837:7;3857:17;3876:18;3898:27;3909:4;3915:9;3898:10;:27::i;:::-;3856:69;;;;3935:18;3947:5;3935:11;:18::i;:::-;3970:9;3963:16;;;;3759:227;;;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;11979:159:8:-;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;16901:231::-;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;1937:108:6:-;1997:13;2030:7;2023:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1937: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;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;39437:103:8:-;39497:7;39523:10;39516:17;;39437:103;:::o;18828:474::-;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;1991:290:4:-;2074:7;2093:20;2116:4;2093:27;;2135:9;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;;2202:9;:33::i;:::-;2187:48;;2168:3;;;;;:::i;:::-;;;;2130:116;;;;2262:12;2255:19;;;1991:290;;;;:::o;2243:730:3:-;2324:7;2333:12;2381:2;2361:9;:16;:22;2357:610;;2399:9;2422;2445:7;2697:4;2686:9;2682:20;2676:27;2671:32;;2746:4;2735:9;2731:20;2725:27;2720:32;;2803:4;2792:9;2788:20;2782:27;2779:1;2774:36;2769:41;;2844:25;2855:4;2861:1;2864;2867;2844:10;:25::i;:::-;2837:32;;;;;;;;;2357:610;2916:1;2920:35;2900:56;;;;2243:730;;;;;;:::o;548:631::-;625:20;616:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;612:561;661:7;612:561;721:29;712:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;708:465;;766:34;;;;;;;;;;:::i;:::-;;;;;;;;708:465;830:35;821:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;817:356;;881:41;;;;;;;;;;:::i;:::-;;;;;;;;817:356;952:30;943:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;939:234;;998:44;;;;;;;;;;:::i;:::-;;;;;;;;939:234;1072:30;1063:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;1059:114;;1118:44;;;;;;;;;;:::i;:::-;;;;;;;;1059:114;548:631;;:::o;13858:361:8:-;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;8054:147:4:-;8117:7;8147:1;8143;:5;:51;;8174:20;8189:1;8192;8174:14;:20::i;:::-;8143:51;;;8151:20;8166:1;8169;8151:14;:20::i;:::-;8143:51;8136:58;;8054:147;;;;:::o;5167:1603:3:-;5293:7;5302:12;6217:66;6212:1;6204:10;;:79;6200:161;;;6315:1;6319:30;6299:51;;;;;;6200:161;6379:2;6374:1;:7;;;;:18;;;;;6390:2;6385:1;:7;;;;6374:18;6370:100;;;6424:1;6428:30;6408:51;;;;;;6370:100;6564:14;6581:24;6591:4;6597:1;6600;6603;6581:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6564:41;;6637:1;6619:20;;:6;:20;;;6615:101;;6671:1;6675:29;6655:50;;;;;;;6615:101;6734:6;6742:20;6726:37;;;;;5167:1603;;;;;;;;:::o;14837:318:8:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;8207:261:4:-;8275:13;8379:1;8373:4;8366:15;8407:1;8401:4;8394:15;8447:4;8441;8431:21;8422:30;;8207:261;;;;:::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:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:329::-;2084:6;2133:2;2121:9;2112:7;2108:23;2104:32;2101:119;;;2139:79;;:::i;:::-;2101:119;2259:1;2284:53;2329:7;2320:6;2309:9;2305:22;2284:53;:::i;:::-;2274:63;;2230:117;2025:329;;;;:::o;2360:99::-;2412:6;2446:5;2440:12;2430:22;;2360:99;;;:::o;2465:169::-;2549:11;2583:6;2578:3;2571:19;2623:4;2618:3;2614:14;2599:29;;2465:169;;;;:::o;2640:246::-;2721:1;2731:113;2745:6;2742:1;2739:13;2731:113;;;2830:1;2825:3;2821:11;2815:18;2811:1;2806:3;2802:11;2795:39;2767:2;2764:1;2760:10;2755:15;;2731:113;;;2878:1;2869:6;2864:3;2860:16;2853:27;2702:184;2640:246;;;:::o;2892:102::-;2933:6;2984:2;2980:7;2975:2;2968:5;2964:14;2960:28;2950:38;;2892:102;;;:::o;3000:377::-;3088:3;3116:39;3149:5;3116:39;:::i;:::-;3171:71;3235:6;3230:3;3171:71;:::i;:::-;3164:78;;3251:65;3309:6;3304:3;3297:4;3290:5;3286:16;3251:65;:::i;:::-;3341:29;3363:6;3341:29;:::i;:::-;3336:3;3332:39;3325:46;;3092:285;3000:377;;;;:::o;3383:313::-;3496:4;3534:2;3523:9;3519:18;3511:26;;3583:9;3577:4;3573:20;3569:1;3558:9;3554:17;3547:47;3611:78;3684:4;3675:6;3611:78;:::i;:::-;3603:86;;3383:313;;;;:::o;3702:77::-;3739:7;3768:5;3757:16;;3702:77;;;:::o;3785:122::-;3858:24;3876:5;3858:24;:::i;:::-;3851:5;3848:35;3838:63;;3897:1;3894;3887:12;3838:63;3785:122;:::o;3913:139::-;3959:5;3997:6;3984:20;3975:29;;4013:33;4040:5;4013:33;:::i;:::-;3913:139;;;;:::o;4058:329::-;4117:6;4166:2;4154:9;4145:7;4141:23;4137:32;4134:119;;;4172:79;;:::i;:::-;4134:119;4292:1;4317:53;4362:7;4353:6;4342:9;4338:22;4317:53;:::i;:::-;4307:63;;4263:117;4058:329;;;;:::o;4393:118::-;4480:24;4498:5;4480:24;:::i;:::-;4475:3;4468:37;4393:118;;:::o;4517:222::-;4610:4;4648:2;4637:9;4633:18;4625:26;;4661:71;4729:1;4718:9;4714:17;4705:6;4661:71;:::i;:::-;4517:222;;;;:::o;4745:474::-;4813:6;4821;4870:2;4858:9;4849:7;4845:23;4841:32;4838:119;;;4876:79;;:::i;:::-;4838:119;4996:1;5021:53;5066:7;5057:6;5046:9;5042:22;5021:53;:::i;:::-;5011:63;;4967:117;5123:2;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5094:118;4745:474;;;;;:::o;5225:118::-;5312:24;5330:5;5312:24;:::i;:::-;5307:3;5300:37;5225:118;;:::o;5349:222::-;5442:4;5480:2;5469:9;5465:18;5457:26;;5493:71;5561:1;5550:9;5546:17;5537:6;5493:71;:::i;:::-;5349:222;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:77::-;6239:7;6268:5;6257:16;;6202:77;;;:::o;6285:118::-;6372:24;6390:5;6372:24;:::i;:::-;6367:3;6360:37;6285:118;;:::o;6409:222::-;6502:4;6540:2;6529:9;6525:18;6517:26;;6553:71;6621:1;6610:9;6606:17;6597:6;6553:71;:::i;:::-;6409:222;;;;:::o;6637:60::-;6665:3;6686:5;6679:12;;6637:60;;;:::o;6703:142::-;6753:9;6786:53;6804:34;6813:24;6831:5;6813:24;:::i;:::-;6804:34;:::i;:::-;6786:53;:::i;:::-;6773:66;;6703:142;;;:::o;6851:126::-;6901:9;6934:37;6965:5;6934:37;:::i;:::-;6921:50;;6851:126;;;:::o;6983:158::-;7065:9;7098:37;7129:5;7098:37;:::i;:::-;7085:50;;6983:158;;;:::o;7147:195::-;7266:69;7329:5;7266:69;:::i;:::-;7261:3;7254:82;7147:195;;:::o;7348:286::-;7473:4;7511:2;7500:9;7496:18;7488:26;;7524:103;7624:1;7613:9;7609:17;7600:6;7524:103;:::i;:::-;7348:286;;;;:::o;7640:117::-;7749:1;7746;7739:12;7763:117;7872:1;7869;7862:12;7886:117;7995:1;7992;7985:12;8026:568;8099:8;8109:6;8159:3;8152:4;8144:6;8140:17;8136:27;8126:122;;8167:79;;:::i;:::-;8126:122;8280:6;8267:20;8257:30;;8310:18;8302:6;8299:30;8296:117;;;8332:79;;:::i;:::-;8296:117;8446:4;8438:6;8434:17;8422:29;;8500:3;8492:4;8484:6;8480:17;8470:8;8466:32;8463:41;8460:128;;;8507:79;;:::i;:::-;8460:128;8026:568;;;;;:::o;8600:704::-;8695:6;8703;8711;8760:2;8748:9;8739:7;8735:23;8731:32;8728:119;;;8766:79;;:::i;:::-;8728:119;8886:1;8911:53;8956:7;8947:6;8936:9;8932:22;8911:53;:::i;:::-;8901:63;;8857:117;9041:2;9030:9;9026:18;9013:32;9072:18;9064:6;9061:30;9058:117;;;9094:79;;:::i;:::-;9058:117;9207:80;9279:7;9270:6;9259:9;9255:22;9207:80;:::i;:::-;9189:98;;;;8984:313;8600:704;;;;;:::o;9310:117::-;9419:1;9416;9409:12;9433:180;9481:77;9478:1;9471:88;9578:4;9575:1;9568:15;9602:4;9599:1;9592:15;9619:281;9702:27;9724:4;9702:27;:::i;:::-;9694:6;9690:40;9832:6;9820:10;9817:22;9796:18;9784:10;9781:34;9778:62;9775:88;;;9843:18;;:::i;:::-;9775:88;9883:10;9879:2;9872:22;9662:238;9619:281;;:::o;9906:129::-;9940:6;9967:20;;:::i;:::-;9957:30;;9996:33;10024:4;10016:6;9996:33;:::i;:::-;9906:129;;;:::o;10041:308::-;10103:4;10193:18;10185:6;10182:30;10179:56;;;10215:18;;:::i;:::-;10179:56;10253:29;10275:6;10253:29;:::i;:::-;10245:37;;10337:4;10331;10327:15;10319:23;;10041:308;;;:::o;10355:146::-;10452:6;10447:3;10442;10429:30;10493:1;10484:6;10479:3;10475:16;10468:27;10355:146;;;:::o;10507:425::-;10585:5;10610:66;10626:49;10668:6;10626:49;:::i;:::-;10610:66;:::i;:::-;10601:75;;10699:6;10692:5;10685:21;10737:4;10730:5;10726:16;10775:3;10766:6;10761:3;10757:16;10754:25;10751:112;;;10782:79;;:::i;:::-;10751:112;10872:54;10919:6;10914:3;10909;10872:54;:::i;:::-;10591:341;10507:425;;;;;:::o;10952:340::-;11008:5;11057:3;11050:4;11042:6;11038:17;11034:27;11024:122;;11065:79;;:::i;:::-;11024:122;11182:6;11169:20;11207:79;11282:3;11274:6;11267:4;11259:6;11255:17;11207:79;:::i;:::-;11198:88;;11014:278;10952:340;;;;:::o;11298:509::-;11367:6;11416:2;11404:9;11395:7;11391:23;11387:32;11384:119;;;11422:79;;:::i;:::-;11384:119;11570:1;11559:9;11555:17;11542:31;11600:18;11592:6;11589:30;11586:117;;;11622:79;;:::i;:::-;11586:117;11727:63;11782:7;11773:6;11762:9;11758:22;11727:63;:::i;:::-;11717:73;;11513:287;11298:509;;;;:::o;11830:568::-;11903:8;11913:6;11963:3;11956:4;11948:6;11944:17;11940:27;11930:122;;11971:79;;:::i;:::-;11930:122;12084:6;12071:20;12061:30;;12114:18;12106:6;12103:30;12100:117;;;12136:79;;:::i;:::-;12100:117;12250:4;12242:6;12238:17;12226:29;;12304:3;12296:4;12288:6;12284:17;12274:8;12270:32;12267:41;12264:128;;;12311:79;;:::i;:::-;12264:128;11830:568;;;;;:::o;12404:559::-;12490:6;12498;12547:2;12535:9;12526:7;12522:23;12518:32;12515:119;;;12553:79;;:::i;:::-;12515:119;12701:1;12690:9;12686:17;12673:31;12731:18;12723:6;12720:30;12717:117;;;12753:79;;:::i;:::-;12717:117;12866:80;12938:7;12929:6;12918:9;12914:22;12866:80;:::i;:::-;12848:98;;;;12644:312;12404:559;;;;;:::o;12969:146::-;13068:6;13102:5;13096:12;13086:22;;12969:146;;;:::o;13121:216::-;13252:11;13286:6;13281:3;13274:19;13326:4;13321:3;13317:14;13302:29;;13121:216;;;;:::o;13343:164::-;13442:4;13465:3;13457:11;;13495:4;13490:3;13486:14;13478:22;;13343:164;;;:::o;13513:108::-;13590:24;13608:5;13590:24;:::i;:::-;13585:3;13578:37;13513:108;;:::o;13627:101::-;13663:7;13703:18;13696:5;13692:30;13681:41;;13627:101;;;:::o;13734:105::-;13809:23;13826:5;13809:23;:::i;:::-;13804:3;13797:36;13734:105;;:::o;13845:99::-;13916:21;13931:5;13916:21;:::i;:::-;13911:3;13904:34;13845:99;;:::o;13950:91::-;13986:7;14026:8;14019:5;14015:20;14004:31;;13950:91;;;:::o;14047:105::-;14122:23;14139:5;14122:23;:::i;:::-;14117:3;14110:36;14047:105;;:::o;14230:866::-;14381:4;14376:3;14372:14;14468:4;14461:5;14457:16;14451:23;14487:63;14544:4;14539:3;14535:14;14521:12;14487:63;:::i;:::-;14396:164;14652:4;14645:5;14641:16;14635:23;14671:61;14726:4;14721:3;14717:14;14703:12;14671:61;:::i;:::-;14570:172;14826:4;14819:5;14815:16;14809:23;14845:57;14896:4;14891:3;14887:14;14873:12;14845:57;:::i;:::-;14752:160;14999:4;14992:5;14988:16;14982:23;15018:61;15073:4;15068:3;15064:14;15050:12;15018:61;:::i;:::-;14922:167;14350:746;14230:866;;:::o;15102:307::-;15235:10;15256:110;15362:3;15354:6;15256:110;:::i;:::-;15398:4;15393:3;15389:14;15375:28;;15102:307;;;;:::o;15415:145::-;15517:4;15549;15544:3;15540:14;15532:22;;15415:145;;;:::o;15642:988::-;15825:3;15854:86;15934:5;15854:86;:::i;:::-;15956:118;16067:6;16062:3;15956:118;:::i;:::-;15949:125;;16098:88;16180:5;16098:88;:::i;:::-;16209:7;16240:1;16225:380;16250:6;16247:1;16244:13;16225:380;;;16326:6;16320:13;16353:127;16476:3;16461:13;16353:127;:::i;:::-;16346:134;;16503:92;16588:6;16503:92;:::i;:::-;16493:102;;16285:320;16272:1;16269;16265:9;16260:14;;16225:380;;;16229:14;16621:3;16614:10;;15830:800;;;15642:988;;;;:::o;16636:501::-;16843:4;16881:2;16870:9;16866:18;16858:26;;16930:9;16924:4;16920:20;16916:1;16905:9;16901:17;16894:47;16958:172;17125:4;17116:6;16958:172;:::i;:::-;16950:180;;16636:501;;;;:::o;17143:307::-;17204:4;17294:18;17286:6;17283:30;17280:56;;;17316:18;;:::i;:::-;17280:56;17354:29;17376:6;17354:29;:::i;:::-;17346:37;;17438:4;17432;17428:15;17420:23;;17143:307;;;:::o;17456:423::-;17533:5;17558:65;17574:48;17615:6;17574:48;:::i;:::-;17558:65;:::i;:::-;17549:74;;17646:6;17639:5;17632:21;17684:4;17677:5;17673:16;17722:3;17713:6;17708:3;17704:16;17701:25;17698:112;;;17729:79;;:::i;:::-;17698:112;17819:54;17866:6;17861:3;17856;17819:54;:::i;:::-;17539:340;17456:423;;;;;:::o;17898:338::-;17953:5;18002:3;17995:4;17987:6;17983:17;17979:27;17969:122;;18010:79;;:::i;:::-;17969:122;18127:6;18114:20;18152:78;18226:3;18218:6;18211:4;18203:6;18199:17;18152:78;:::i;:::-;18143:87;;17959:277;17898:338;;;;:::o;18242:652::-;18319:6;18327;18376:2;18364:9;18355:7;18351:23;18347:32;18344:119;;;18382:79;;:::i;:::-;18344:119;18530:1;18519:9;18515:17;18502:31;18560:18;18552:6;18549:30;18546:117;;;18582:79;;:::i;:::-;18546:117;18687:62;18741:7;18732:6;18721:9;18717:22;18687:62;:::i;:::-;18677:72;;18473:286;18798:2;18824:53;18869:7;18860:6;18849:9;18845:22;18824:53;:::i;:::-;18814:63;;18769:118;18242:652;;;;;:::o;18900:311::-;18977:4;19067:18;19059:6;19056:30;19053:56;;;19089:18;;:::i;:::-;19053:56;19139:4;19131:6;19127:17;19119:25;;19199:4;19193;19189:15;19181:23;;18900:311;;;:::o;19234:710::-;19330:5;19355:81;19371:64;19428:6;19371:64;:::i;:::-;19355:81;:::i;:::-;19346:90;;19456:5;19485:6;19478:5;19471:21;19519:4;19512:5;19508:16;19501:23;;19572:4;19564:6;19560:17;19552:6;19548:30;19601:3;19593:6;19590:15;19587:122;;;19620:79;;:::i;:::-;19587:122;19735:6;19718:220;19752:6;19747:3;19744:15;19718:220;;;19827:3;19856:37;19889:3;19877:10;19856:37;:::i;:::-;19851:3;19844:50;19923:4;19918:3;19914:14;19907:21;;19794:144;19778:4;19773:3;19769:14;19762:21;;19718:220;;;19722:21;19336:608;;19234:710;;;;;:::o;19967:370::-;20038:5;20087:3;20080:4;20072:6;20068:17;20064:27;20054:122;;20095:79;;:::i;:::-;20054:122;20212:6;20199:20;20237:94;20327:3;20319:6;20312:4;20304:6;20300:17;20237:94;:::i;:::-;20228:103;;20044:293;19967:370;;;;:::o;20343:311::-;20420:4;20510:18;20502:6;20499:30;20496:56;;;20532:18;;:::i;:::-;20496:56;20582:4;20574:6;20570:17;20562:25;;20642:4;20636;20632:15;20624:23;;20343:311;;;:::o;20677:710::-;20773:5;20798:81;20814:64;20871:6;20814:64;:::i;:::-;20798:81;:::i;:::-;20789:90;;20899:5;20928:6;20921:5;20914:21;20962:4;20955:5;20951:16;20944:23;;21015:4;21007:6;21003:17;20995:6;20991:30;21044:3;21036:6;21033:15;21030:122;;;21063:79;;:::i;:::-;21030:122;21178:6;21161:220;21195:6;21190:3;21187:15;21161:220;;;21270:3;21299:37;21332:3;21320:10;21299:37;:::i;:::-;21294:3;21287:50;21366:4;21361:3;21357:14;21350:21;;21237:144;21221:4;21216:3;21212:14;21205:21;;21161:220;;;21165:21;20779:608;;20677:710;;;;;:::o;21410:370::-;21481:5;21530:3;21523:4;21515:6;21511:17;21507:27;21497:122;;21538:79;;:::i;:::-;21497:122;21655:6;21642:20;21680:94;21770:3;21762:6;21755:4;21747:6;21743:17;21680:94;:::i;:::-;21671:103;;21487:293;21410:370;;;;:::o;21786:894::-;21904:6;21912;21961:2;21949:9;21940:7;21936:23;21932:32;21929:119;;;21967:79;;:::i;:::-;21929:119;22115:1;22104:9;22100:17;22087:31;22145:18;22137:6;22134:30;22131:117;;;22167:79;;:::i;:::-;22131:117;22272:78;22342:7;22333:6;22322:9;22318:22;22272:78;:::i;:::-;22262:88;;22058:302;22427:2;22416:9;22412:18;22399:32;22458:18;22450:6;22447:30;22444:117;;;22480:79;;:::i;:::-;22444:117;22585:78;22655:7;22646:6;22635:9;22631:22;22585:78;:::i;:::-;22575:88;;22370:303;21786:894;;;;;:::o;22686:652::-;22763:6;22771;22820:2;22808:9;22799:7;22795:23;22791:32;22788:119;;;22826:79;;:::i;:::-;22788:119;22946:1;22971:53;23016:7;23007:6;22996:9;22992:22;22971:53;:::i;:::-;22961:63;;22917:117;23101:2;23090:9;23086:18;23073:32;23132:18;23124:6;23121:30;23118:117;;;23154:79;;:::i;:::-;23118:117;23259:62;23313:7;23304:6;23293:9;23289:22;23259:62;:::i;:::-;23249:72;;23044:287;22686:652;;;;;:::o;23344:122::-;23417:24;23435:5;23417:24;:::i;:::-;23410:5;23407:35;23397:63;;23456:1;23453;23446:12;23397:63;23344:122;:::o;23472:139::-;23518:5;23556:6;23543:20;23534:29;;23572:33;23599:5;23572:33;:::i;:::-;23472:139;;;;:::o;23617:329::-;23676:6;23725:2;23713:9;23704:7;23700:23;23696:32;23693:119;;;23731:79;;:::i;:::-;23693:119;23851:1;23876:53;23921:7;23912:6;23901:9;23897:22;23876:53;:::i;:::-;23866:63;;23822:117;23617:329;;;;:::o;23952:114::-;24019:6;24053:5;24047:12;24037:22;;23952:114;;;:::o;24072:184::-;24171:11;24205:6;24200:3;24193:19;24245:4;24240:3;24236:14;24221:29;;24072:184;;;;:::o;24262:132::-;24329:4;24352:3;24344:11;;24382:4;24377:3;24373:14;24365:22;;24262:132;;;:::o;24400:108::-;24477:24;24495:5;24477:24;:::i;:::-;24472:3;24465:37;24400:108;;:::o;24514:179::-;24583:10;24604:46;24646:3;24638:6;24604:46;:::i;:::-;24682:4;24677:3;24673:14;24659:28;;24514:179;;;;:::o;24699:113::-;24769:4;24801;24796:3;24792:14;24784:22;;24699:113;;;:::o;24848:732::-;24967:3;24996:54;25044:5;24996:54;:::i;:::-;25066:86;25145:6;25140:3;25066:86;:::i;:::-;25059:93;;25176:56;25226:5;25176:56;:::i;:::-;25255:7;25286:1;25271:284;25296:6;25293:1;25290:13;25271:284;;;25372:6;25366:13;25399:63;25458:3;25443:13;25399:63;:::i;:::-;25392:70;;25485:60;25538:6;25485:60;:::i;:::-;25475:70;;25331:224;25318:1;25315;25311:9;25306:14;;25271:284;;;25275:14;25571:3;25564:10;;24972:608;;;24848:732;;;;:::o;25586:373::-;25729:4;25767:2;25756:9;25752:18;25744:26;;25816:9;25810:4;25806:20;25802:1;25791:9;25787:17;25780:47;25844:108;25947:4;25938:6;25844:108;:::i;:::-;25836:116;;25586:373;;;;:::o;25965:619::-;26042:6;26050;26058;26107:2;26095:9;26086:7;26082:23;26078:32;26075:119;;;26113:79;;:::i;:::-;26075:119;26233:1;26258:53;26303:7;26294:6;26283:9;26279:22;26258:53;:::i;:::-;26248:63;;26204:117;26360:2;26386:53;26431:7;26422:6;26411:9;26407:22;26386:53;:::i;:::-;26376:63;;26331:118;26488:2;26514:53;26559:7;26550:6;26539:9;26535:22;26514:53;:::i;:::-;26504:63;;26459:118;25965:619;;;;;:::o;26590:116::-;26660:21;26675:5;26660:21;:::i;:::-;26653:5;26650:32;26640:60;;26696:1;26693;26686:12;26640:60;26590:116;:::o;26712:133::-;26755:5;26793:6;26780:20;26771:29;;26809:30;26833:5;26809:30;:::i;:::-;26712:133;;;;:::o;26851:468::-;26916:6;26924;26973:2;26961:9;26952:7;26948:23;26944:32;26941:119;;;26979:79;;:::i;:::-;26941:119;27099:1;27124:53;27169:7;27160:6;27149:9;27145:22;27124:53;:::i;:::-;27114:63;;27070:117;27226:2;27252:50;27294:7;27285:6;27274:9;27270:22;27252:50;:::i;:::-;27242:60;;27197:115;26851:468;;;;;:::o;27325:323::-;27381:6;27430:2;27418:9;27409:7;27405:23;27401:32;27398:119;;;27436:79;;:::i;:::-;27398:119;27556:1;27581:50;27623:7;27614:6;27603:9;27599:22;27581:50;:::i;:::-;27571:60;;27527:114;27325:323;;;;:::o;27654:943::-;27749:6;27757;27765;27773;27822:3;27810:9;27801:7;27797:23;27793:33;27790:120;;;27829:79;;:::i;:::-;27790:120;27949:1;27974:53;28019:7;28010:6;27999:9;27995:22;27974:53;:::i;:::-;27964:63;;27920:117;28076:2;28102:53;28147:7;28138:6;28127:9;28123:22;28102:53;:::i;:::-;28092:63;;28047:118;28204:2;28230:53;28275:7;28266:6;28255:9;28251:22;28230:53;:::i;:::-;28220:63;;28175:118;28360:2;28349:9;28345:18;28332:32;28391:18;28383:6;28380:30;28377:117;;;28413:79;;:::i;:::-;28377:117;28518:62;28572:7;28563:6;28552:9;28548:22;28518:62;:::i;:::-;28508:72;;28303:287;27654:943;;;;;;;:::o;28675:876::-;28836:4;28831:3;28827:14;28923:4;28916:5;28912:16;28906:23;28942:63;28999:4;28994:3;28990:14;28976:12;28942:63;:::i;:::-;28851:164;29107:4;29100:5;29096:16;29090:23;29126:61;29181:4;29176:3;29172:14;29158:12;29126:61;:::i;:::-;29025:172;29281:4;29274:5;29270:16;29264:23;29300:57;29351:4;29346:3;29342:14;29328:12;29300:57;:::i;:::-;29207:160;29454:4;29447:5;29443:16;29437:23;29473:61;29528:4;29523:3;29519:14;29505:12;29473:61;:::i;:::-;29377:167;28805:746;28675:876;;:::o;29557:351::-;29714:4;29752:3;29741:9;29737:19;29729:27;;29766:135;29898:1;29887:9;29883:17;29874:6;29766:135;:::i;:::-;29557:351;;;;:::o;29914:474::-;29982:6;29990;30039:2;30027:9;30018:7;30014:23;30010:32;30007:119;;;30045:79;;:::i;:::-;30007:119;30165:1;30190:53;30235:7;30226:6;30215:9;30211:22;30190:53;:::i;:::-;30180:63;;30136:117;30292:2;30318:53;30363:7;30354:6;30343:9;30339:22;30318:53;:::i;:::-;30308:63;;30263:118;29914:474;;;;;:::o;30394:180::-;30442:77;30439:1;30432:88;30539:4;30536:1;30529:15;30563:4;30560:1;30553:15;30580:320;30624:6;30661:1;30655:4;30651:12;30641:22;;30708:1;30702:4;30698:12;30729:18;30719:81;;30785:4;30777:6;30773:17;30763:27;;30719:81;30847:2;30839:6;30836:14;30816:18;30813:38;30810:84;;30866:18;;:::i;:::-;30810:84;30631:269;30580:320;;;:::o;30906:332::-;31027:4;31065:2;31054:9;31050:18;31042:26;;31078:71;31146:1;31135:9;31131:17;31122:6;31078:71;:::i;:::-;31159:72;31227:2;31216:9;31212:18;31203:6;31159:72;:::i;:::-;30906:332;;;;;:::o;31244:137::-;31298:5;31329:6;31323:13;31314:22;;31345:30;31369:5;31345:30;:::i;:::-;31244:137;;;;:::o;31387:345::-;31454:6;31503:2;31491:9;31482:7;31478:23;31474:32;31471:119;;;31509:79;;:::i;:::-;31471:119;31629:1;31654:61;31707:7;31698:6;31687:9;31683:22;31654:61;:::i;:::-;31644:71;;31600:125;31387:345;;;;:::o;31738:224::-;31878:34;31874:1;31866:6;31862:14;31855:58;31947:7;31942:2;31934:6;31930:15;31923:32;31738:224;:::o;31968:366::-;32110:3;32131:67;32195:2;32190:3;32131:67;:::i;:::-;32124:74;;32207:93;32296:3;32207:93;:::i;:::-;32325:2;32320:3;32316:12;32309:19;;31968:366;;;:::o;32340:419::-;32506:4;32544:2;32533:9;32529:18;32521:26;;32593:9;32587:4;32583:20;32579:1;32568:9;32564:17;32557:47;32621:131;32747:4;32621:131;:::i;:::-;32613:139;;32340:419;;;:::o;32765:221::-;32905:34;32901:1;32893:6;32889:14;32882:58;32974:4;32969:2;32961:6;32957:15;32950:29;32765:221;:::o;32992:366::-;33134:3;33155:67;33219:2;33214:3;33155:67;:::i;:::-;33148:74;;33231:93;33320:3;33231:93;:::i;:::-;33349:2;33344:3;33340:12;33333:19;;32992:366;;;:::o;33364:419::-;33530:4;33568:2;33557:9;33553:18;33545:26;;33617:9;33611:4;33607:20;33603:1;33592:9;33588:17;33581:47;33645:131;33771:4;33645:131;:::i;:::-;33637:139;;33364:419;;;:::o;33789:180::-;33837:77;33834:1;33827:88;33934:4;33931:1;33924:15;33958:4;33955:1;33948:15;33975:191;34015:3;34034:20;34052:1;34034:20;:::i;:::-;34029:25;;34068:20;34086:1;34068:20;:::i;:::-;34063:25;;34111:1;34108;34104:9;34097:16;;34132:3;34129:1;34126:10;34123:36;;;34139:18;;:::i;:::-;34123:36;33975:191;;;;:::o;34172:164::-;34312:16;34308:1;34300:6;34296:14;34289:40;34172:164;:::o;34342:366::-;34484:3;34505:67;34569:2;34564:3;34505:67;:::i;:::-;34498:74;;34581:93;34670:3;34581:93;:::i;:::-;34699:2;34694:3;34690:12;34683:19;;34342:366;;;:::o;34714:419::-;34880:4;34918:2;34907:9;34903:18;34895:26;;34967:9;34961:4;34957:20;34953:1;34942:9;34938:17;34931:47;34995:131;35121:4;34995:131;:::i;:::-;34987:139;;34714:419;;;:::o;35139:410::-;35179:7;35202:20;35220:1;35202:20;:::i;:::-;35197:25;;35236:20;35254:1;35236:20;:::i;:::-;35231:25;;35291:1;35288;35284:9;35313:30;35331:11;35313:30;:::i;:::-;35302:41;;35492:1;35483:7;35479:15;35476:1;35473:22;35453:1;35446:9;35426:83;35403:139;;35522:18;;:::i;:::-;35403:139;35187:362;35139:410;;;;:::o;35555:175::-;35695:27;35691:1;35683:6;35679:14;35672:51;35555:175;:::o;35736:366::-;35878:3;35899:67;35963:2;35958:3;35899:67;:::i;:::-;35892:74;;35975:93;36064:3;35975:93;:::i;:::-;36093:2;36088:3;36084:12;36077:19;;35736:366;;;:::o;36108:419::-;36274:4;36312:2;36301:9;36297:18;36289:26;;36361:9;36355:4;36351:20;36347:1;36336:9;36332:17;36325:47;36389:131;36515:4;36389:131;:::i;:::-;36381:139;;36108:419;;;:::o;36533:94::-;36566:8;36614:5;36610:2;36606:14;36585:35;;36533:94;;;:::o;36633:::-;36672:7;36701:20;36715:5;36701:20;:::i;:::-;36690:31;;36633:94;;;:::o;36733:100::-;36772:7;36801:26;36821:5;36801:26;:::i;:::-;36790:37;;36733:100;;;:::o;36839:157::-;36944:45;36964:24;36982:5;36964:24;:::i;:::-;36944:45;:::i;:::-;36939:3;36932:58;36839:157;;:::o;37002:256::-;37114:3;37129:75;37200:3;37191:6;37129:75;:::i;:::-;37229:2;37224:3;37220:12;37213:19;;37249:3;37242:10;;37002:256;;;;:::o;37264:172::-;37404:24;37400:1;37392:6;37388:14;37381:48;37264:172;:::o;37442:366::-;37584:3;37605:67;37669:2;37664:3;37605:67;:::i;:::-;37598:74;;37681:93;37770:3;37681:93;:::i;:::-;37799:2;37794:3;37790:12;37783:19;;37442:366;;;:::o;37814:419::-;37980:4;38018:2;38007:9;38003:18;37995:26;;38067:9;38061:4;38057:20;38053:1;38042:9;38038:17;38031:47;38095:131;38221:4;38095:131;:::i;:::-;38087:139;;37814:419;;;:::o;38239:141::-;38288:4;38311:3;38303:11;;38334:3;38331:1;38324:14;38368:4;38365:1;38355:18;38347:26;;38239:141;;;:::o;38386:93::-;38423:6;38470:2;38465;38458:5;38454:14;38450:23;38440:33;;38386:93;;;:::o;38485:107::-;38529:8;38579:5;38573:4;38569:16;38548:37;;38485:107;;;;:::o;38598:393::-;38667:6;38717:1;38705:10;38701:18;38740:97;38770:66;38759:9;38740:97;:::i;:::-;38858:39;38888:8;38877:9;38858:39;:::i;:::-;38846:51;;38930:4;38926:9;38919:5;38915:21;38906:30;;38979:4;38969:8;38965:19;38958:5;38955:30;38945:40;;38674:317;;38598:393;;;;;:::o;38997:142::-;39047:9;39080:53;39098:34;39107:24;39125:5;39107:24;:::i;:::-;39098:34;:::i;:::-;39080:53;:::i;:::-;39067:66;;38997:142;;;:::o;39145:75::-;39188:3;39209:5;39202:12;;39145:75;;;:::o;39226:269::-;39336:39;39367:7;39336:39;:::i;:::-;39397:91;39446:41;39470:16;39446:41;:::i;:::-;39438:6;39431:4;39425:11;39397:91;:::i;:::-;39391:4;39384:105;39302:193;39226:269;;;:::o;39501:73::-;39546:3;39501:73;:::o;39580:189::-;39657:32;;:::i;:::-;39698:65;39756:6;39748;39742:4;39698:65;:::i;:::-;39633:136;39580:189;;:::o;39775:186::-;39835:120;39852:3;39845:5;39842:14;39835:120;;;39906:39;39943:1;39936:5;39906:39;:::i;:::-;39879:1;39872:5;39868:13;39859:22;;39835:120;;;39775:186;;:::o;39967:543::-;40068:2;40063:3;40060:11;40057:446;;;40102:38;40134:5;40102:38;:::i;:::-;40186:29;40204:10;40186:29;:::i;:::-;40176:8;40172:44;40369:2;40357:10;40354:18;40351:49;;;40390:8;40375:23;;40351:49;40413:80;40469:22;40487:3;40469:22;:::i;:::-;40459:8;40455:37;40442:11;40413:80;:::i;:::-;40072:431;;40057:446;39967:543;;;:::o;40516:117::-;40570:8;40620:5;40614:4;40610:16;40589:37;;40516:117;;;;:::o;40639:169::-;40683:6;40716:51;40764:1;40760:6;40752:5;40749:1;40745:13;40716:51;:::i;:::-;40712:56;40797:4;40791;40787:15;40777:25;;40690:118;40639:169;;;;:::o;40813:295::-;40889:4;41035:29;41060:3;41054:4;41035:29;:::i;:::-;41027:37;;41097:3;41094:1;41090:11;41084:4;41081:21;41073:29;;40813:295;;;;:::o;41113:1395::-;41230:37;41263:3;41230:37;:::i;:::-;41332:18;41324:6;41321:30;41318:56;;;41354:18;;:::i;:::-;41318:56;41398:38;41430:4;41424:11;41398:38;:::i;:::-;41483:67;41543:6;41535;41529:4;41483:67;:::i;:::-;41577:1;41601:4;41588:17;;41633:2;41625:6;41622:14;41650:1;41645:618;;;;42307:1;42324:6;42321:77;;;42373:9;42368:3;42364:19;42358:26;42349:35;;42321:77;42424:67;42484:6;42477:5;42424:67;:::i;:::-;42418:4;42411:81;42280:222;41615:887;;41645:618;41697:4;41693:9;41685:6;41681:22;41731:37;41763:4;41731:37;:::i;:::-;41790:1;41804:208;41818:7;41815:1;41812:14;41804:208;;;41897:9;41892:3;41888:19;41882:26;41874:6;41867:42;41948:1;41940:6;41936:14;41926:24;;41995:2;41984:9;41980:18;41967:31;;41841:4;41838:1;41834:12;41829:17;;41804:208;;;42040:6;42031:7;42028:19;42025:179;;;42098:9;42093:3;42089:19;42083:26;42141:48;42183:4;42175:6;42171:17;42160:9;42141:48;:::i;:::-;42133:6;42126:64;42048:156;42025:179;42250:1;42246;42238:6;42234:14;42230:22;42224:4;42217:36;41652:611;;;41615:887;;41205:1303;;;41113:1395;;:::o;42514:180::-;42562:77;42559:1;42552:88;42659:4;42656:1;42649:15;42683:4;42680:1;42673:15;42700:79;42739:7;42768:5;42757:16;;42700:79;;;:::o;42785:157::-;42890:45;42910:24;42928:5;42910:24;:::i;:::-;42890:45;:::i;:::-;42885:3;42878:58;42785:157;;:::o;42948:538::-;43116:3;43131:75;43202:3;43193:6;43131:75;:::i;:::-;43231:2;43226:3;43222:12;43215:19;;43244:75;43315:3;43306:6;43244:75;:::i;:::-;43344:2;43339:3;43335:12;43328:19;;43357:75;43428:3;43419:6;43357:75;:::i;:::-;43457:2;43452:3;43448:12;43441:19;;43477:3;43470:10;;42948:538;;;;;;:::o;43492:233::-;43531:3;43554:24;43572:5;43554:24;:::i;:::-;43545:33;;43600:66;43593:5;43590:77;43587:103;;43670:18;;:::i;:::-;43587:103;43717:1;43710:5;43706:13;43699:20;;43492:233;;;:::o;43731:182::-;43871:34;43867:1;43859:6;43855:14;43848:58;43731:182;:::o;43919:366::-;44061:3;44082:67;44146:2;44141:3;44082:67;:::i;:::-;44075:74;;44158:93;44247:3;44158:93;:::i;:::-;44276:2;44271:3;44267:12;44260:19;;43919:366;;;:::o;44291:419::-;44457:4;44495:2;44484:9;44480:18;44472:26;;44544:9;44538:4;44534:20;44530:1;44519:9;44515:17;44508:47;44572:131;44698:4;44572:131;:::i;:::-;44564:139;;44291:419;;;:::o;44716:164::-;44856:16;44852:1;44844:6;44840:14;44833:40;44716:164;:::o;44886:366::-;45028:3;45049:67;45113:2;45108:3;45049:67;:::i;:::-;45042:74;;45125:93;45214:3;45125:93;:::i;:::-;45243:2;45238:3;45234:12;45227:19;;44886:366;;;:::o;45258:419::-;45424:4;45462:2;45451:9;45447:18;45439:26;;45511:9;45505:4;45501:20;45497:1;45486:9;45482:17;45475:47;45539:131;45665:4;45539:131;:::i;:::-;45531:139;;45258:419;;;:::o;45683:167::-;45823:19;45819:1;45811:6;45807:14;45800:43;45683:167;:::o;45856:366::-;45998:3;46019:67;46083:2;46078:3;46019:67;:::i;:::-;46012:74;;46095:93;46184:3;46095:93;:::i;:::-;46213:2;46208:3;46204:12;46197:19;;45856:366;;;:::o;46228:419::-;46394:4;46432:2;46421:9;46417:18;46409:26;;46481:9;46475:4;46471:20;46467:1;46456:9;46452:17;46445:47;46509:131;46635:4;46509:131;:::i;:::-;46501:139;;46228:419;;;:::o;46653:221::-;46793:34;46789:1;46781:6;46777:14;46770:58;46862:4;46857:2;46849:6;46845:15;46838:29;46653:221;:::o;46880:366::-;47022:3;47043:67;47107:2;47102:3;47043:67;:::i;:::-;47036:74;;47119:93;47208:3;47119:93;:::i;:::-;47237:2;47232:3;47228:12;47221:19;;46880:366;;;:::o;47252:419::-;47418:4;47456:2;47445:9;47441:18;47433:26;;47505:9;47499:4;47495:20;47491:1;47480:9;47476:17;47469:47;47533:131;47659:4;47533:131;:::i;:::-;47525:139;;47252:419;;;:::o;47677:148::-;47779:11;47816:3;47801:18;;47677:148;;;;:::o;47831:390::-;47937:3;47965:39;47998:5;47965:39;:::i;:::-;48020:89;48102:6;48097:3;48020:89;:::i;:::-;48013:96;;48118:65;48176:6;48171:3;48164:4;48157:5;48153:16;48118:65;:::i;:::-;48208:6;48203:3;48199:16;48192:23;;47941:280;47831:390;;;;:::o;48227:435::-;48407:3;48429:95;48520:3;48511:6;48429:95;:::i;:::-;48422:102;;48541:95;48632:3;48623:6;48541:95;:::i;:::-;48534:102;;48653:3;48646:10;;48227:435;;;;;:::o;48668:147::-;48769:11;48806:3;48791:18;;48668:147;;;;:::o;48821:114::-;;:::o;48941:398::-;49100:3;49121:83;49202:1;49197:3;49121:83;:::i;:::-;49114:90;;49213:93;49302:3;49213:93;:::i;:::-;49331:1;49326:3;49322:11;49315:18;;48941:398;;;:::o;49345:379::-;49529:3;49551:147;49694:3;49551:147;:::i;:::-;49544:154;;49715:3;49708:10;;49345:379;;;:::o;49730:165::-;49870:17;49866:1;49858:6;49854:14;49847:41;49730:165;:::o;49901:366::-;50043:3;50064:67;50128:2;50123:3;50064:67;:::i;:::-;50057:74;;50140:93;50229:3;50140:93;:::i;:::-;50258:2;50253:3;50249:12;50242:19;;49901:366;;;:::o;50273:419::-;50439:4;50477:2;50466:9;50462:18;50454:26;;50526:9;50520:4;50516:20;50512:1;50501:9;50497:17;50490:47;50554:131;50680:4;50554:131;:::i;:::-;50546:139;;50273:419;;;:::o;50698:225::-;50838:34;50834:1;50826:6;50822:14;50815:58;50907:8;50902:2;50894:6;50890:15;50883:33;50698:225;:::o;50929:366::-;51071:3;51092:67;51156:2;51151:3;51092:67;:::i;:::-;51085:74;;51168:93;51257:3;51168:93;:::i;:::-;51286:2;51281:3;51277:12;51270:19;;50929:366;;;:::o;51301:419::-;51467:4;51505:2;51494:9;51490:18;51482:26;;51554:9;51548:4;51544:20;51540:1;51529:9;51525:17;51518:47;51582:131;51708:4;51582:131;:::i;:::-;51574:139;;51301:419;;;:::o;51726:182::-;51866:34;51862:1;51854:6;51850:14;51843:58;51726:182;:::o;51914:366::-;52056:3;52077:67;52141:2;52136:3;52077:67;:::i;:::-;52070:74;;52153:93;52242:3;52153:93;:::i;:::-;52271:2;52266:3;52262:12;52255:19;;51914:366;;;:::o;52286:419::-;52452:4;52490:2;52479:9;52475:18;52467:26;;52539:9;52533:4;52529:20;52525:1;52514:9;52510:17;52503:47;52567:131;52693:4;52567:131;:::i;:::-;52559:139;;52286:419;;;:::o;52711:214::-;52851:66;52847:1;52839:6;52835:14;52828:90;52711:214;:::o;52931:402::-;53091:3;53112:85;53194:2;53189:3;53112:85;:::i;:::-;53105:92;;53206:93;53295:3;53206:93;:::i;:::-;53324:2;53319:3;53315:12;53308:19;;52931:402;;;:::o;53339:79::-;53378:7;53407:5;53396:16;;53339:79;;;:::o;53424:157::-;53529:45;53549:24;53567:5;53549:24;:::i;:::-;53529:45;:::i;:::-;53524:3;53517:58;53424:157;;:::o;53587:522::-;53800:3;53822:148;53966:3;53822:148;:::i;:::-;53815:155;;53980:75;54051:3;54042:6;53980:75;:::i;:::-;54080:2;54075:3;54071:12;54064:19;;54100:3;54093:10;;53587:522;;;;:::o;54115:180::-;54163:77;54160:1;54153:88;54260:4;54257:1;54250:15;54284:4;54281:1;54274:15;54301:174;54441:26;54437:1;54429:6;54425:14;54418:50;54301:174;:::o;54481:366::-;54623:3;54644:67;54708:2;54703:3;54644:67;:::i;:::-;54637:74;;54720:93;54809:3;54720:93;:::i;:::-;54838:2;54833:3;54829:12;54822:19;;54481:366;;;:::o;54853:419::-;55019:4;55057:2;55046:9;55042:18;55034:26;;55106:9;55100:4;55096:20;55092:1;55081:9;55077:17;55070:47;55134:131;55260:4;55134:131;:::i;:::-;55126:139;;54853:419;;;:::o;55278:181::-;55418:33;55414:1;55406:6;55402:14;55395:57;55278:181;:::o;55465:366::-;55607:3;55628:67;55692:2;55687:3;55628:67;:::i;:::-;55621:74;;55704:93;55793:3;55704:93;:::i;:::-;55822:2;55817:3;55813:12;55806:19;;55465:366;;;:::o;55837:419::-;56003:4;56041:2;56030:9;56026:18;56018:26;;56090:9;56084:4;56080:20;56076:1;56065:9;56061:17;56054:47;56118:131;56244:4;56118:131;:::i;:::-;56110:139;;55837:419;;;:::o;56262:221::-;56402:34;56398:1;56390:6;56386:14;56379:58;56471:4;56466:2;56458:6;56454:15;56447:29;56262:221;:::o;56489:366::-;56631:3;56652:67;56716:2;56711:3;56652:67;:::i;:::-;56645:74;;56728:93;56817:3;56728:93;:::i;:::-;56846:2;56841:3;56837:12;56830:19;;56489:366;;;:::o;56861:419::-;57027:4;57065:2;57054:9;57050:18;57042:26;;57114:9;57108:4;57104:20;57100:1;57089:9;57085:17;57078:47;57142:131;57268:4;57142:131;:::i;:::-;57134:139;;56861:419;;;:::o;57286:221::-;57426:34;57422:1;57414:6;57410:14;57403:58;57495:4;57490:2;57482:6;57478:15;57471:29;57286:221;:::o;57513:366::-;57655:3;57676:67;57740:2;57735:3;57676:67;:::i;:::-;57669:74;;57752:93;57841:3;57752:93;:::i;:::-;57870:2;57865:3;57861:12;57854:19;;57513:366;;;:::o;57885:419::-;58051:4;58089:2;58078:9;58074:18;58066:26;;58138:9;58132:4;58128:20;58124:1;58113:9;58109:17;58102:47;58166:131;58292:4;58166:131;:::i;:::-;58158:139;;57885:419;;;:::o;58310:98::-;58361:6;58395:5;58389:12;58379:22;;58310:98;;;:::o;58414:168::-;58497:11;58531:6;58526:3;58519:19;58571:4;58566:3;58562:14;58547:29;;58414:168;;;;:::o;58588:373::-;58674:3;58702:38;58734:5;58702:38;:::i;:::-;58756:70;58819:6;58814:3;58756:70;:::i;:::-;58749:77;;58835:65;58893:6;58888:3;58881:4;58874:5;58870:16;58835:65;:::i;:::-;58925:29;58947:6;58925:29;:::i;:::-;58920:3;58916:39;58909:46;;58678:283;58588:373;;;;:::o;58967:640::-;59162:4;59200:3;59189:9;59185:19;59177:27;;59214:71;59282:1;59271:9;59267:17;59258:6;59214:71;:::i;:::-;59295:72;59363:2;59352:9;59348:18;59339:6;59295:72;:::i;:::-;59377;59445:2;59434:9;59430:18;59421:6;59377:72;:::i;:::-;59496:9;59490:4;59486:20;59481:2;59470:9;59466:18;59459:48;59524:76;59595:4;59586:6;59524:76;:::i;:::-;59516:84;;58967:640;;;;;;;:::o;59613:141::-;59669:5;59700:6;59694:13;59685:22;;59716:32;59742:5;59716:32;:::i;:::-;59613:141;;;;:::o;59760:349::-;59829:6;59878:2;59866:9;59857:7;59853:23;59849:32;59846:119;;;59884:79;;:::i;:::-;59846:119;60004:1;60029:63;60084:7;60075:6;60064:9;60060:22;60029:63;:::i;:::-;60019:73;;59975:127;59760:349;;;;:::o;60115:86::-;60150:7;60190:4;60183:5;60179:16;60168:27;;60115:86;;;:::o;60207:112::-;60290:22;60306:5;60290:22;:::i;:::-;60285:3;60278:35;60207:112;;:::o;60325:545::-;60498:4;60536:3;60525:9;60521:19;60513:27;;60550:71;60618:1;60607:9;60603:17;60594:6;60550:71;:::i;:::-;60631:68;60695:2;60684:9;60680:18;60671:6;60631:68;:::i;:::-;60709:72;60777:2;60766:9;60762:18;60753:6;60709:72;:::i;:::-;60791;60859:2;60848:9;60844:18;60835:6;60791:72;:::i;:::-;60325:545;;;;;;;:::o

Swarm Source

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