ETH Price: $2,476.16 (+7.45%)

Bamboo Color (Color)
 

Overview

TokenID

390

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Color and form are vital components of visual art. While form is subjective and in a constant state of flux, color is universally perceived and remains constant.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BambooColor

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-25
*/

// Bamboo Meta.
// Inspire life with genius minds. Benefit from creativity.
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Thanks: Chiru Labs
// China Invest.

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

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

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

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

/**
 * @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.
    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 `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.selector);
        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.selector);

        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 Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

    /**
     * @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 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // 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, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                unchecked {
                    packed = _packedOwnerships[--tokenId];
                }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @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. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

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

        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 result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
                result = packed & _BITMASK_BURNED == 0;
            }
        }
    }

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

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (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.selector);

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

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
        // 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.
            from, // `from`.
            toMasked, // `to`.
            tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

        _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.selector);
            }
    }

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

        _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:
        // - `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)
        );

        // Updates:
        // - `balance += quantity`.
        // - `numberMinted += quantity`.
        //
        // We can directly add to the `balance` and `numberMinted`.
        _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

        if (toMasked == 0) _revert(MintToZeroAddress.selector);

        uint256 end = startTokenId + quantity;
        uint256 tokenId = startTokenId;

        do {
            assembly {
            // 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`.
                tokenId // `tokenId`.
                )
            }
            // The `!=` check ensures that large values of `quantity`
            // that overflows uint256 will make the loop run out of gas.
        } while (++tokenId != end);

        _currentIndex = end;
    }
        _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.selector);
                }
            } while (index < end);
            // Reentrancy protection.
            if (_currentIndex != end) _revert(bytes4(0));
        }
    }
    }

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

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

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

    // =============================================================
    //                     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.selector);
        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)
        }
    }

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

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 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


contract BambooColor is ERC721A, Ownable
{

    struct Message {
        address addr;
        string content;
    }

    struct MintConfig {
        bool isOpen;
        uint16 maxPerTx;
        uint16 maxPerWallet;
        uint256 price;
    }

    uint256 constant public maxSupply = 456;
    bytes32 private whitelistMerkleRoot;

    mapping(address => mapping(uint256 => uint256)) whiteHolderMinted;
    mapping(address => uint256) public whitelistMinted;
    mapping(uint256 => string) public privateURI;
    mapping(uint256 => Message[]) public tokenInscription;
    mapping(uint256 => mapping(address => bool)) public holderInscripted;
    mapping(uint256 => Message[]) public tokenMessage;

    MintConfig public whitelistMintConf;
    MintConfig public whiteHolderMintConf;
    MintConfig public publicMintConf;

    address private CONTRACT_A_ADDR;

    bool isInscriptionOpen;
    bool ismessageSendOpen;

    string private baseURI = "ipfs://";

    constructor() ERC721A("Bamboo Color", "Color"){}

    function changeBaseURI(string memory newUri) public onlyOwner {
        baseURI = newUri;
    }

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


    // PUBLIC MINT
    function setMintConfig(uint16 mode, MintConfig memory _conf) public onlyOwner {
        if (mode == 1) {
            whitelistMintConf = _conf;
        }else if (mode == 2) {
            whiteHolderMintConf = _conf;
        }else if (mode == 3) {
            publicMintConf = _conf;
        }
    }


    function publicMint(address to, uint16 amount) public payable {
        require(publicMintConf.isOpen, "Public Mint is not available!");
        require(totalSupply() + amount <= maxSupply, "No more NFT!");
        require(publicMintConf.maxPerTx == 0 || amount <= publicMintConf.maxPerTx, "Reached limit per tx");
        require(publicMintConf.price == 0 || msg.value >= publicMintConf.price, "Insufficient value!");

        address toAddr = to == address(0) ? msg.sender : to;

        _safeMint(toAddr, amount);
    }

    // WHITELIST MINT
    function setWhitelistMerkleRoot(bytes32 root) public onlyOwner {
        whitelistMerkleRoot = root;
    }

    function whitelistMint(address to, uint16 amount, bytes32[] memory proof) public payable {
        require(whitelistMintConf.isOpen, "Whitelist Mint is not available!");
        require(totalSupply() + amount <= maxSupply, "No more NFT!");
        require(whitelistMintConf.maxPerTx == 0 || amount <= whitelistMintConf.maxPerTx, "Reached limit per tx");
        require(whitelistMintConf.price == 0 || msg.value >= whitelistMintConf.price, "Insufficient value!");


        address toAddr = to == address(0) ? msg.sender : to;
        require(checkWhitelist(toAddr, whitelistMerkleRoot, proof), "You are not in whitelist");
        require(whitelistMintConf.maxPerWallet == 0 || whitelistMinted[toAddr] + amount <= whitelistMintConf.maxPerWallet, "Reached limit per wallet");

        whitelistMinted[toAddr] += amount;
        _safeMint(toAddr, amount);
    }

    function checkWhitelist(address to, bytes32 root, bytes32[] memory proof) public pure returns (bool){
        return MerkleProof.verify(proof, root, keccak256(abi.encodePacked(to)));
    }

    // HOLDER MINT
    function setWhiteListContract(address addr) public onlyOwner {
        CONTRACT_A_ADDR = addr;
    }

    function whiteHolderMint(address to, uint256 tokenID, uint16 amount) public payable {
        require(whiteHolderMintConf.isOpen, "Holder A Mint is not available!");
        require(totalSupply() + amount <= maxSupply, "No more NFT!");
        require(CONTRACT_A_ADDR != address(0), "Contract A addr not set");
        require(whiteHolderMintConf.price == 0 || msg.value >= whiteHolderMintConf.price, "Insufficient value!");

        address toAddr = to == address(0) ? msg.sender : to;
        require(IERC721A(CONTRACT_A_ADDR).ownerOf(tokenID) == toAddr, "Don't have this nft");
        require(whiteHolderMintConf.maxPerTx == 0 || whiteHolderMinted[CONTRACT_A_ADDR][tokenID] + amount <= whiteHolderMintConf.maxPerTx, "TokenID is used");

        whiteHolderMinted[CONTRACT_A_ADDR][tokenID] += amount;
        _safeMint(toAddr, amount);
    }

    function checkHolderTokenMinted(address addr, uint16 tokenID) public view returns (uint256) {
        return whiteHolderMinted[addr][tokenID];
    }

    // ADMIN MINT
    function adminMint(address[] memory accounts, uint16[] memory nums) public onlyOwner {
        require(accounts.length > 0 && accounts.length == nums.length, "Length not match");
        for (uint i = 0; i < accounts.length; i++) {
            _safeMint(accounts[i], nums[i]);
        }
    }

    // InscriptToken
    function setIsInscriptionTokenOpen(bool isOpen) public onlyOwner {
        isInscriptionOpen = isOpen;
    }

    function inscriptToken(uint256 tokenID, string memory content) public {
        require(isInscriptionOpen, "Inscription not open");
        require(ownerOf(tokenID) == msg.sender, "not owner");
        require(!holderInscripted[tokenID][msg.sender], "already inscripted");

        Message memory m = Message(msg.sender, content);
        tokenInscription[tokenID].push(m);
    }

    function setIsmessageSendOpen(bool isOpen) public onlyOwner {
        ismessageSendOpen = isOpen;
    }

    function messageSend(uint256 tokenID, string memory content) public {
        require(ismessageSendOpen, "messageSend not open");
        Message memory m = Message(msg.sender, content);
        tokenMessage[tokenID].push(m);
    }

    function messageDelete(uint256 tokenID, uint256 index) public {
        require(tokenMessage[tokenID].length > index, "index out of range");
        tokenMessage[tokenID][index] = Message(address(0), '');
    }

    function readAllInscription(uint256 tokenID) public view returns (Message[] memory) {
        return tokenInscription[tokenID];
    }

    function readAllMessages(uint256 tokenID) public view returns (Message[] memory) {
        return tokenMessage[tokenID];
    }


    function setPrivateURI(uint256 tokenID, string memory uri) public onlyOwner {
        privateURI[tokenID] = uri;
    }

    function resetPrivateURI(uint256 tokenID) public onlyOwner {
        privateURI[tokenID] = '';
    }

    function tokenURI(uint256 tokenID) public view virtual override returns (string memory) {
        if (!_exists(tokenID)) _revert(URIQueryForNonexistentToken.selector);

        if  (bytes(privateURI[tokenID]).length != 0) {
            return privateURI[tokenID];
        }

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

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

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(_msgSender()).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint16[]","name":"nums","type":"uint16[]"}],"name":"adminMint","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":[{"internalType":"string","name":"newUri","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint16","name":"tokenID","type":"uint16"}],"name":"checkHolderTokenMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"holderInscripted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"string","name":"content","type":"string"}],"name":"inscriptToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"messageDelete","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"string","name":"content","type":"string"}],"name":"messageSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"privateURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintConf","outputs":[{"internalType":"bool","name":"isOpen","type":"bool"},{"internalType":"uint16","name":"maxPerTx","type":"uint16"},{"internalType":"uint16","name":"maxPerWallet","type":"uint16"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"readAllInscription","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"string","name":"content","type":"string"}],"internalType":"struct BambooColor.Message[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"readAllMessages","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"string","name":"content","type":"string"}],"internalType":"struct BambooColor.Message[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"resetPrivateURI","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":"bool","name":"isOpen","type":"bool"}],"name":"setIsInscriptionTokenOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isOpen","type":"bool"}],"name":"setIsmessageSendOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"mode","type":"uint16"},{"components":[{"internalType":"bool","name":"isOpen","type":"bool"},{"internalType":"uint16","name":"maxPerTx","type":"uint16"},{"internalType":"uint16","name":"maxPerWallet","type":"uint16"},{"internalType":"uint256","name":"price","type":"uint256"}],"internalType":"struct BambooColor.MintConfig","name":"_conf","type":"tuple"}],"name":"setMintConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"setPrivateURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setWhiteListContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenInscription","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"string","name":"content","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMessage","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"string","name":"content","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"whiteHolderMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteHolderMintConf","outputs":[{"internalType":"bool","name":"isOpen","type":"bool"},{"internalType":"uint16","name":"maxPerTx","type":"uint16"},{"internalType":"uint16","name":"maxPerWallet","type":"uint16"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintConf","outputs":[{"internalType":"bool","name":"isOpen","type":"bool"},{"internalType":"uint16","name":"maxPerTx","type":"uint16"},{"internalType":"uint16","name":"maxPerWallet","type":"uint16"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250601790805190602001906200005192919062000213565b503480156200005f57600080fd5b506040518060400160405280600c81526020017f42616d626f6f20436f6c6f7200000000000000000000000000000000000000008152506040518060400160405280600581526020017f436f6c6f720000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e492919062000213565b508060039080519060200190620000fd92919062000213565b506200010e6200013c60201b60201c565b6000819055505050620001366200012a6200014560201b60201c565b6200014d60201b60201c565b62000328565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022190620002c3565b90600052602060002090601f01602090048101928262000245576000855562000291565b82601f106200026057805160ff191683800117855562000291565b8280016001018555821562000291579182015b828111156200029057825182559160200191906001019062000273565b5b509050620002a09190620002a4565b5090565b5b80821115620002bf576000816000905550600101620002a5565b5090565b60006002820490506001821680620002dc57607f821691505b60208210811415620002f357620002f2620002f9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6152ea80620003386000396000f3fe6080604052600436106102725760003560e01c806395d89b411161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610951578063e575c3501461097c578063e985e9c5146109ba578063eb98e4e4146109f7578063ef947afc14610a34578063f2fde38b14610a5d57610272565b8063b88d4fde14610847578063bac938e314610863578063bd32fb661461087f578063c105c02e146108a8578063c2ee4981146108d6578063c87b56dd1461091457610272565b8063a22cb46511610113578063a22cb46514610745578063ade840221461076e578063af67549b14610797578063b179e060146107d4578063b56b2966146107fd578063b77167321461082b57610272565b806395d89b4114610649578063978a952114610674578063988eb3f3146106b157806398a8cffe146106df5780639bc50aeb1461071c57610272565b806357658227116101e857806370a08231116101ac57806370a082311461052957806371cb5b851461056657806372ea4bee146105a35780637b53bacb146105cc5780638a886986146105f55780638da5cb5b1461061e57610272565b806357658227146104415780636352211e1461046a5780636916ca85146104a75780636be81c75146104e45780636d7eabd51461050057610272565b806323b872dd1161023a57806323b872dd146103635780633039f6b61461037f57806339a0c6f9146103a85780633ccfd60b146103d157806342842e0e146103e85780634bc823ce1461040457610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610338575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613f39565b610a86565b6040516102ab9190614739565b60405180910390f35b3480156102c057600080fd5b506102c9610b18565b6040516102d69190614799565b60405180910390f35b3480156102eb57600080fd5b506103066004803603810190610301919061401c565b610baa565b6040516103139190614680565b60405180910390f35b61033660048036038101906103319190613dd4565b610c08565b005b34801561034457600080fd5b5061034d610c18565b60405161035a9190614a1b565b60405180910390f35b61037d60048036038101906103789190613ba0565b610c2f565b005b34801561038b57600080fd5b506103a660048036038101906103a1919061401c565b610ef3565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190613f93565b610f35565b005b3480156103dd57600080fd5b506103e6610f57565b005b61040260048036038101906103fd9190613ba0565b610fb5565b005b34801561041057600080fd5b5061042b6004803603810190610426919061401c565b610fd5565b6040516104389190614799565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190614089565b611075565b005b34801561047657600080fd5b50610491600480360381019061048c919061401c565b61119b565b60405161049e9190614680565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613d25565b6111ad565b6040516104db9190614a1b565b60405180910390f35b6104fe60048036038101906104f99190613d25565b61120c565b005b34801561050c57600080fd5b5061052760048036038101906105229190613fdc565b6113e3565b005b34801561053557600080fd5b50610550600480360381019061054b9190613b06565b611585565b60405161055d9190614a1b565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190614049565b61161d565b60405161059a9190614739565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190614089565b61164c565b005b3480156105d857600080fd5b506105f360048036038101906105ee91906140e5565b611886565b005b34801561060157600080fd5b5061061c60048036038101906106179190613e67565b6119b7565b005b34801561062a57600080fd5b50610633611a76565b6040516106409190614680565b60405180910390f35b34801561065557600080fd5b5061065e611aa0565b60405161066b9190614799565b60405180910390f35b34801561068057600080fd5b5061069b6004803603810190610696919061401c565b611b32565b6040516106a89190614717565b60405180910390f35b3480156106bd57600080fd5b506106c6611c8c565b6040516106d69493929190614754565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613b06565b611cd3565b6040516107139190614a1b565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190614089565b611ceb565b005b34801561075157600080fd5b5061076c60048036038101906107679190613c76565b611d1f565b005b34801561077a57600080fd5b5061079560048036038101906107909190613edf565b611e2a565b005b3480156107a357600080fd5b506107be60048036038101906107b9919061401c565b611e4f565b6040516107cb9190614717565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f69190613edf565b611fa9565b005b34801561080957600080fd5b50610812611fce565b6040516108229493929190614754565b60405180910390f35b61084560048036038101906108409190613d65565b612015565b005b610861600480360381019061085c9190613bf3565b61235d565b005b61087d60048036038101906108789190613e14565b6123af565b005b34801561088b57600080fd5b506108a660048036038101906108a19190613f0c565b61283b565b005b3480156108b457600080fd5b506108bd61284d565b6040516108cd9493929190614754565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f891906140e5565b612894565b60405161090b9291906146e7565b60405180910390f35b34801561092057600080fd5b5061093b6004803603810190610936919061401c565b61297d565b6040516109489190614799565b60405180910390f35b34801561095d57600080fd5b50610966612ac7565b6040516109739190614a1b565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e91906140e5565b612acd565b6040516109b19291906146e7565b60405180910390f35b3480156109c657600080fd5b506109e160048036038101906109dc9190613b60565b612bb6565b6040516109ee9190614739565b60405180910390f35b348015610a0357600080fd5b50610a1e6004803603810190610a199190613cb6565b612c4a565b604051610a2b9190614739565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a569190613b06565b612c86565b005b348015610a6957600080fd5b50610a846004803603810190610a7f9190613b06565b612cd2565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b2790614d31565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614d31565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b5050505050905090565b6000610bb582612d56565b610bca57610bc963cf4700e460e01b612dd0565b5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c1482826001612dda565b5050565b6000610c22612f09565b6001546000540303905090565b6000610c3a82612f12565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610caf57610cae63a114810060e01b612dd0565b5b600080610cbb8461300e565b91509150610cd18187610ccc613035565b61303d565b610cfc57610ce686610ce1613035565b612bb6565b610cfb57610cfa6359c896be60e01b612dd0565b5b5b610d098686866001613081565b8015610d1457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de285610dbe888887613087565b7c0200000000000000000000000000000000000000000000000000000000176130af565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e6a576000600185019050600060046000838152602001908152602001600020541415610e68576000548114610e67578360046000838152602001908152602001600020819055505b5b505b600073ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46000811415610edd57610edc63ea553b3460e01b612dd0565b5b610eea87878760016130da565b50505050505050565b610efb6130e0565b60405180602001604052806000815250600c60008381526020019081526020016000209080519060200190610f31929190613689565b5050565b610f3d6130e0565b8060179080519060200190610f53929190613689565b5050565b610f5f6130e0565b6000479050610f6c61315e565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fb1573d6000803e3d6000fd5b5050565b610fd08383836040518060200160405280600081525061235d565b505050565b600c6020528060005260406000206000915090508054610ff490614d31565b80601f016020809104026020016040519081016040528092919081815260200182805461102090614d31565b801561106d5780601f106110425761010080835404028352916020019161106d565b820191906000526020600020905b81548152906001019060200180831161105057829003601f168201915b505050505081565b601660159054906101000a900460ff166110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb906149bb565b60405180910390fd5b600060405180604001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001838152509050600f600084815260200190815260200160002081908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001019080519060200190611193929190613689565b505050505050565b60006111a682612f12565b9050919050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008361ffff16815260200190815260200160002054905092915050565b601460000160009054906101000a900460ff1661125e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112559061493b565b60405180910390fd5b6101c88161ffff1661126e610c18565b6112789190614be3565b11156112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b09061485b565b60405180910390fd5b6000601460000160019054906101000a900461ffff1661ffff1614806112fa5750601460000160019054906101000a900461ffff1661ffff168161ffff1611155b611339576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113309061499b565b60405180910390fd5b6000601460010154148061135257506014600101543410155b611391576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113889061497b565b60405180910390fd5b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146113cc57826113ce565b335b90506113de818361ffff16613166565b505050565b6113eb6130e0565b60018261ffff1614156114735780601060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548161ffff021916908361ffff16021790555060408201518160000160036101000a81548161ffff021916908361ffff16021790555060608201518160010155905050611581565b60028261ffff1614156114fb5780601260008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548161ffff021916908361ffff16021790555060408201518160000160036101000a81548161ffff021916908361ffff16021790555060608201518160010155905050611580565b60038261ffff16141561157f5780601460008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548161ffff021916908361ffff16021790555060408201518160000160036101000a81548161ffff021916908361ffff160217905550606082015181600101559050505b5b5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cc576115cb638f4eb60460e01b612dd0565b5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600e6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b601660149054906101000a900460ff1661169b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611692906147db565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166116bb8361119b565b73ffffffffffffffffffffffffffffffffffffffff1614611711576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611708906149db565b60405180910390fd5b600e600083815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a69061495b565b60405180910390fd5b600060405180604001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001838152509050600d600084815260200190815260200160002081908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101908051906020019061187e929190613689565b505050505050565b80600f600084815260200190815260200160002080549050116118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d59061487b565b60405180910390fd5b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff16815260200160405180602001604052806000815250815250600f6000848152602001908152602001600020828154811061193e5761193d614e5f565b5b906000526020600020906002020160008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010190805190602001906119af929190613689565b509050505050565b6119bf6130e0565b600082511180156119d1575080518251145b611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a07906148bb565b60405180910390fd5b60005b8251811015611a7157611a5e838281518110611a3257611a31614e5f565b5b6020026020010151838381518110611a4d57611a4c614e5f565b5b602002602001015161ffff16613166565b8080611a6990614d94565b915050611a13565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611aaf90614d31565b80601f0160208091040260200160405190810160405280929190818152602001828054611adb90614d31565b8015611b285780601f10611afd57610100808354040283529160200191611b28565b820191906000526020600020905b815481529060010190602001808311611b0b57829003601f168201915b5050505050905090565b6060600d6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015611c8157838290600052602060002090600202016040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182018054611bf090614d31565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1c90614d31565b8015611c695780601f10611c3e57610100808354040283529160200191611c69565b820191906000526020600020905b815481529060010190602001808311611c4c57829003601f168201915b50505050508152505081526020019060010190611b67565b505050509050919050565b60128060000160009054906101000a900460ff16908060000160019054906101000a900461ffff16908060000160039054906101000a900461ffff16908060010154905084565b600b6020528060005260406000206000915090505481565b611cf36130e0565b80600c60008481526020019081526020016000209080519060200190611d1a929190613689565b505050565b8060076000611d2c613035565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dd9613035565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e1e9190614739565b60405180910390a35050565b611e326130e0565b80601660146101000a81548160ff02191690831515021790555050565b6060600f6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015611f9e57838290600052602060002090600202016040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182018054611f0d90614d31565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3990614d31565b8015611f865780601f10611f5b57610100808354040283529160200191611f86565b820191906000526020600020905b815481529060010190602001808311611f6957829003601f168201915b50505050508152505081526020019060010190611e84565b505050509050919050565b611fb16130e0565b80601660156101000a81548160ff02191690831515021790555050565b60108060000160009054906101000a900460ff16908060000160019054906101000a900461ffff16908060000160039054906101000a900461ffff16908060010154905084565b601060000160009054906101000a900460ff16612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e9061491b565b60405180910390fd5b6101c88261ffff16612077610c18565b6120819190614be3565b11156120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b99061485b565b60405180910390fd5b6000601060000160019054906101000a900461ffff1661ffff1614806121035750601060000160019054906101000a900461ffff1661ffff168261ffff1611155b612142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121399061499b565b60405180910390fd5b6000601060010154148061215b57506010600101543410155b61219a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121919061497b565b60405180910390fd5b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146121d557836121d7565b335b90506121e68160095484612c4a565b612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c9061483b565b60405180910390fd5b6000601060000160039054906101000a900461ffff1661ffff1614806122b05750601060000160039054906101000a900461ffff1661ffff168361ffff16600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122ad9190614be3565b11155b6122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e69061481b565b60405180910390fd5b8261ffff16600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123429190614be3565b92505081905550612357818461ffff16613166565b50505050565b612368848484610c2f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123a95761239384848484613184565b6123a8576123a763d1a57ed660e01b612dd0565b5b5b50505050565b601260000160009054906101000a900460ff16612401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f89061489b565b60405180910390fd5b6101c88161ffff16612411610c18565b61241b9190614be3565b111561245c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124539061485b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e5906149fb565b60405180910390fd5b6000601260010154148061250757506012600101543410155b612546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253d9061497b565b60405180910390fd5b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146125815783612583565b335b90508073ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b81526004016125f79190614a1b565b60206040518083038186803b15801561260f57600080fd5b505afa158015612623573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126479190613b33565b73ffffffffffffffffffffffffffffffffffffffff161461269d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612694906147fb565b60405180910390fd5b6000601260000160019054906101000a900461ffff1661ffff16148061275b5750601260000160019054906101000a900461ffff1661ffff168261ffff16600a6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868152602001908152602001600020546127589190614be3565b11155b61279a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612791906148fb565b60405180910390fd5b8161ffff16600a6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060008282546128209190614be3565b92505081905550612835818361ffff16613166565b50505050565b6128436130e0565b8060098190555050565b60148060000160009054906101000a900460ff16908060000160019054906101000a900461ffff16908060000160039054906101000a900461ffff16908060010154905084565b600f60205281600052604060002081815481106128b057600080fd5b9060005260206000209060020201600091509150508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010180546128fa90614d31565b80601f016020809104026020016040519081016040528092919081815260200182805461292690614d31565b80156129735780601f1061294857610100808354040283529160200191612973565b820191906000526020600020905b81548152906001019060200180831161295657829003601f168201915b5050505050905082565b606061298882612d56565b61299d5761299c63a14c4b5060e01b612dd0565b5b6000600c600084815260200190815260200160002080546129bd90614d31565b905014612a6757600c600083815260200190815260200160002080546129e290614d31565b80601f0160208091040260200160405190810160405280929190818152602001828054612a0e90614d31565b8015612a5b5780601f10612a3057610100808354040283529160200191612a5b565b820191906000526020600020905b815481529060010190602001808311612a3e57829003601f168201915b50505050509050612ac2565b600060178054612a7690614d31565b90501415612a935760405180602001604052806000815250612abf565b6017612a9e836132c3565b604051602001612aaf92919061465c565b6040516020818303038152906040525b90505b919050565b6101c881565b600d6020528160005260406000208181548110612ae957600080fd5b9060005260206000209060020201600091509150508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001018054612b3390614d31565b80601f0160208091040260200160405190810160405280929190818152602001828054612b5f90614d31565b8015612bac5780601f10612b8157610100808354040283529160200191612bac565b820191906000526020600020905b815481529060010190602001808311612b8f57829003601f168201915b5050505050905082565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612c7d828486604051602001612c629190614641565b6040516020818303038152906040528051906020012061331c565b90509392505050565b612c8e6130e0565b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612cda6130e0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d41906147bb565b60405180910390fd5b612d5381613333565b50565b600081612d61612f09565b11612dcb57600054821015612dca5760005b600060046000858152602001908152602001600020549150811415612da35782612d9c90614d07565b9250612d73565b60007c01000000000000000000000000000000000000000000000000000000008216149150505b5b919050565b8060005260046000fd5b6000612de58361119b565b9050818015612e2757508073ffffffffffffffffffffffffffffffffffffffff16612e0e613035565b73ffffffffffffffffffffffffffffffffffffffff1614155b15612e5357612e3d81612e38613035565b612bb6565b612e5257612e5163cfb3b94260e01b612dd0565b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60006001905090565b600081612f1d612f09565b11612ff857600460008381526020019081526020016000205490506000811415612fca576000548210612f5b57612f5a63df2d9b4260e01b612dd0565b5b5b60046000836001900393508381526020019081526020016000205490506000811415612f8757612fc5565b60007c010000000000000000000000000000000000000000000000000000000082161415612fb457613009565b612fc463df2d9b4260e01b612dd0565b5b612f5c565b60007c010000000000000000000000000000000000000000000000000000000082161415612ff757613009565b5b61300863df2d9b4260e01b612dd0565b5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861309e8686846133f9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6130e861315e565b73ffffffffffffffffffffffffffffffffffffffff16613106611a76565b73ffffffffffffffffffffffffffffffffffffffff161461315c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613153906148db565b60405180910390fd5b565b600033905090565b613180828260405180602001604052806000815250613402565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131aa613035565b8786866040518563ffffffff1660e01b81526004016131cc949392919061469b565b602060405180830381600087803b1580156131e657600080fd5b505af192505050801561321757506040513d601f19601f820116820180604052508101906132149190613f66565b60015b613270573d8060008114613247576040519150601f19603f3d011682016040523d82523d6000602084013e61324c565b606091505b506000815114156132685761326763d1a57ed660e01b612dd0565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b60011561330757600184039350600a81066030018453600a810490508061330257613307565b6132dc565b50828103602084039350808452505050919050565b6000826133298584613487565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60009392505050565b61340c83836134fc565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461348257600080549050600083820390505b61344c6000868380600101945086613184565b6134615761346063d1a57ed660e01b612dd0565b5b81811061343957816000541461347f5761347e600060e01b612dd0565b5b50505b505050565b60008082905060005b84518110156134f15760008582815181106134ae576134ad614e5f565b5b602002602001015190508083116134d0576134c98382613662565b92506134dd565b6134da8184613662565b92505b5080806134e990614d94565b915050613490565b508091505092915050565b600080549050600082141561351c5761351b63b562e8dd60e01b612dd0565b5b6135296000848385613081565b6135498361353a6000866000613087565b61354385613679565b176130af565b6004600083815260200190815260200160002081905550600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff16169050600081141561360257613601632e07630060e01b612dd0565b5b6000838301905060008390505b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48181600101915081141561360f578160008190555050505061365d60008483856130da565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461369590614d31565b90600052602060002090601f0160209004810192826136b757600085556136fe565b82601f106136d057805160ff19168380011785556136fe565b828001600101855582156136fe579182015b828111156136fd5782518255916020019190600101906136e2565b5b50905061370b919061370f565b5090565b5b80821115613728576000816000905550600101613710565b5090565b600061373f61373a84614a5b565b614a36565b9050808382526020820190508285602086028201111561376257613761614ec7565b5b60005b8581101561379257816137788882613900565b845260208401935060208301925050600181019050613765565b5050509392505050565b60006137af6137aa84614a87565b614a36565b905080838252602082019050828560208602820111156137d2576137d1614ec7565b5b60005b8581101561380257816137e888826139c9565b8452602084019350602083019250506001810190506137d5565b5050509392505050565b600061381f61381a84614ab3565b614a36565b9050808382526020820190508285602086028201111561384257613841614ec7565b5b60005b8581101561387257816138588882613adc565b845260208401935060208301925050600181019050613845565b5050509392505050565b600061388f61388a84614adf565b614a36565b9050828152602081018484840111156138ab576138aa614ecc565b5b6138b6848285614cc5565b509392505050565b60006138d16138cc84614b10565b614a36565b9050828152602081018484840111156138ed576138ec614ecc565b5b6138f8848285614cc5565b509392505050565b60008135905061390f8161522a565b92915050565b6000815190506139248161522a565b92915050565b600082601f83011261393f5761393e614ebd565b5b813561394f84826020860161372c565b91505092915050565b600082601f83011261396d5761396c614ebd565b5b813561397d84826020860161379c565b91505092915050565b600082601f83011261399b5761399a614ebd565b5b81356139ab84826020860161380c565b91505092915050565b6000813590506139c381615241565b92915050565b6000813590506139d881615258565b92915050565b6000813590506139ed8161526f565b92915050565b600081519050613a028161526f565b92915050565b600082601f830112613a1d57613a1c614ebd565b5b8135613a2d84826020860161387c565b91505092915050565b600082601f830112613a4b57613a4a614ebd565b5b8135613a5b8482602086016138be565b91505092915050565b600060808284031215613a7a57613a79614ec2565b5b613a846080614a36565b90506000613a94848285016139b4565b6000830152506020613aa884828501613adc565b6020830152506040613abc84828501613adc565b6040830152506060613ad084828501613af1565b60608301525092915050565b600081359050613aeb81615286565b92915050565b600081359050613b008161529d565b92915050565b600060208284031215613b1c57613b1b614ed6565b5b6000613b2a84828501613900565b91505092915050565b600060208284031215613b4957613b48614ed6565b5b6000613b5784828501613915565b91505092915050565b60008060408385031215613b7757613b76614ed6565b5b6000613b8585828601613900565b9250506020613b9685828601613900565b9150509250929050565b600080600060608486031215613bb957613bb8614ed6565b5b6000613bc786828701613900565b9350506020613bd886828701613900565b9250506040613be986828701613af1565b9150509250925092565b60008060008060808587031215613c0d57613c0c614ed6565b5b6000613c1b87828801613900565b9450506020613c2c87828801613900565b9350506040613c3d87828801613af1565b925050606085013567ffffffffffffffff811115613c5e57613c5d614ed1565b5b613c6a87828801613a08565b91505092959194509250565b60008060408385031215613c8d57613c8c614ed6565b5b6000613c9b85828601613900565b9250506020613cac858286016139b4565b9150509250929050565b600080600060608486031215613ccf57613cce614ed6565b5b6000613cdd86828701613900565b9350506020613cee868287016139c9565b925050604084013567ffffffffffffffff811115613d0f57613d0e614ed1565b5b613d1b86828701613958565b9150509250925092565b60008060408385031215613d3c57613d3b614ed6565b5b6000613d4a85828601613900565b9250506020613d5b85828601613adc565b9150509250929050565b600080600060608486031215613d7e57613d7d614ed6565b5b6000613d8c86828701613900565b9350506020613d9d86828701613adc565b925050604084013567ffffffffffffffff811115613dbe57613dbd614ed1565b5b613dca86828701613958565b9150509250925092565b60008060408385031215613deb57613dea614ed6565b5b6000613df985828601613900565b9250506020613e0a85828601613af1565b9150509250929050565b600080600060608486031215613e2d57613e2c614ed6565b5b6000613e3b86828701613900565b9350506020613e4c86828701613af1565b9250506040613e5d86828701613adc565b9150509250925092565b60008060408385031215613e7e57613e7d614ed6565b5b600083013567ffffffffffffffff811115613e9c57613e9b614ed1565b5b613ea88582860161392a565b925050602083013567ffffffffffffffff811115613ec957613ec8614ed1565b5b613ed585828601613986565b9150509250929050565b600060208284031215613ef557613ef4614ed6565b5b6000613f03848285016139b4565b91505092915050565b600060208284031215613f2257613f21614ed6565b5b6000613f30848285016139c9565b91505092915050565b600060208284031215613f4f57613f4e614ed6565b5b6000613f5d848285016139de565b91505092915050565b600060208284031215613f7c57613f7b614ed6565b5b6000613f8a848285016139f3565b91505092915050565b600060208284031215613fa957613fa8614ed6565b5b600082013567ffffffffffffffff811115613fc757613fc6614ed1565b5b613fd384828501613a36565b91505092915050565b60008060a08385031215613ff357613ff2614ed6565b5b600061400185828601613adc565b925050602061401285828601613a64565b9150509250929050565b60006020828403121561403257614031614ed6565b5b600061404084828501613af1565b91505092915050565b600080604083850312156140605761405f614ed6565b5b600061406e85828601613af1565b925050602061407f85828601613900565b9150509250929050565b600080604083850312156140a05761409f614ed6565b5b60006140ae85828601613af1565b925050602083013567ffffffffffffffff8111156140cf576140ce614ed1565b5b6140db85828601613a36565b9150509250929050565b600080604083850312156140fc576140fb614ed6565b5b600061410a85828601613af1565b925050602061411b85828601613af1565b9150509250929050565b600061413183836145e6565b905092915050565b61414281614c39565b82525050565b61415181614c39565b82525050565b61416861416382614c39565b614ddd565b82525050565b600061417982614b66565b6141838185614b94565b93508360208202850161419585614b41565b8060005b858110156141d157848403895281516141b28582614125565b94506141bd83614b87565b925060208a01995050600181019050614199565b50829750879550505050505092915050565b6141ec81614c4b565b82525050565b60006141fd82614b71565b6142078185614ba5565b9350614217818560208601614cd4565b61422081614edb565b840191505092915050565b600061423682614b7c565b6142408185614bb6565b9350614250818560208601614cd4565b61425981614edb565b840191505092915050565b600061426f82614b7c565b6142798185614bc7565b9350614289818560208601614cd4565b61429281614edb565b840191505092915050565b60006142a882614b7c565b6142b28185614bd8565b93506142c2818560208601614cd4565b80840191505092915050565b600081546142db81614d31565b6142e58186614bd8565b94506001821660008114614300576001811461431157614344565b60ff19831686528186019350614344565b61431a85614b51565b60005b8381101561433c5781548189015260018201915060208101905061431d565b838801955050505b50505092915050565b600061435a602683614bc7565b915061436582614ef9565b604082019050919050565b600061437d601483614bc7565b915061438882614f48565b602082019050919050565b60006143a0601383614bc7565b91506143ab82614f71565b602082019050919050565b60006143c3601883614bc7565b91506143ce82614f9a565b602082019050919050565b60006143e6601883614bc7565b91506143f182614fc3565b602082019050919050565b6000614409600c83614bc7565b915061441482614fec565b602082019050919050565b600061442c601283614bc7565b915061443782615015565b602082019050919050565b600061444f601f83614bc7565b915061445a8261503e565b602082019050919050565b6000614472601083614bc7565b915061447d82615067565b602082019050919050565b6000614495602083614bc7565b91506144a082615090565b602082019050919050565b60006144b8600f83614bc7565b91506144c3826150b9565b602082019050919050565b60006144db602083614bc7565b91506144e6826150e2565b602082019050919050565b60006144fe601d83614bc7565b91506145098261510b565b602082019050919050565b6000614521601283614bc7565b915061452c82615134565b602082019050919050565b6000614544601383614bc7565b915061454f8261515d565b602082019050919050565b6000614567601483614bc7565b915061457282615186565b602082019050919050565b600061458a601483614bc7565b9150614595826151af565b602082019050919050565b60006145ad600983614bc7565b91506145b8826151d8565b602082019050919050565b60006145d0601783614bc7565b91506145db82615201565b602082019050919050565b60006040830160008301516145fe6000860182614139565b5060208301518482036020860152614616828261422b565b9150508091505092915050565b61462c81614c8d565b82525050565b61463b81614cbb565b82525050565b600061464d8284614157565b60148201915081905092915050565b600061466882856142ce565b9150614674828461429d565b91508190509392505050565b60006020820190506146956000830184614148565b92915050565b60006080820190506146b06000830187614148565b6146bd6020830186614148565b6146ca6040830185614632565b81810360608301526146dc81846141f2565b905095945050505050565b60006040820190506146fc6000830185614148565b818103602083015261470e8184614264565b90509392505050565b60006020820190508181036000830152614731818461416e565b905092915050565b600060208201905061474e60008301846141e3565b92915050565b600060808201905061476960008301876141e3565b6147766020830186614623565b6147836040830185614623565b6147906060830184614632565b95945050505050565b600060208201905081810360008301526147b38184614264565b905092915050565b600060208201905081810360008301526147d48161434d565b9050919050565b600060208201905081810360008301526147f481614370565b9050919050565b6000602082019050818103600083015261481481614393565b9050919050565b60006020820190508181036000830152614834816143b6565b9050919050565b60006020820190508181036000830152614854816143d9565b9050919050565b60006020820190508181036000830152614874816143fc565b9050919050565b600060208201905081810360008301526148948161441f565b9050919050565b600060208201905081810360008301526148b481614442565b9050919050565b600060208201905081810360008301526148d481614465565b9050919050565b600060208201905081810360008301526148f481614488565b9050919050565b60006020820190508181036000830152614914816144ab565b9050919050565b60006020820190508181036000830152614934816144ce565b9050919050565b60006020820190508181036000830152614954816144f1565b9050919050565b6000602082019050818103600083015261497481614514565b9050919050565b6000602082019050818103600083015261499481614537565b9050919050565b600060208201905081810360008301526149b48161455a565b9050919050565b600060208201905081810360008301526149d48161457d565b9050919050565b600060208201905081810360008301526149f4816145a0565b9050919050565b60006020820190508181036000830152614a14816145c3565b9050919050565b6000602082019050614a306000830184614632565b92915050565b6000614a40614a51565b9050614a4c8282614d63565b919050565b6000604051905090565b600067ffffffffffffffff821115614a7657614a75614e8e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614aa257614aa1614e8e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ace57614acd614e8e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614afa57614af9614e8e565b5b614b0382614edb565b9050602081019050919050565b600067ffffffffffffffff821115614b2b57614b2a614e8e565b5b614b3482614edb565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bee82614cbb565b9150614bf983614cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c2e57614c2d614e01565b5b828201905092915050565b6000614c4482614c9b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cf2578082015181840152602081019050614cd7565b83811115614d01576000848401525b50505050565b6000614d1282614cbb565b91506000821415614d2657614d25614e01565b5b600182039050919050565b60006002820490506001821680614d4957607f821691505b60208210811415614d5d57614d5c614e30565b5b50919050565b614d6c82614edb565b810181811067ffffffffffffffff82111715614d8b57614d8a614e8e565b5b80604052505050565b6000614d9f82614cbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dd257614dd1614e01565b5b600182019050919050565b6000614de882614def565b9050919050565b6000614dfa82614eec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e736372697074696f6e206e6f74206f70656e000000000000000000000000600082015250565b7f446f6e277420686176652074686973206e667400000000000000000000000000600082015250565b7f52656163686564206c696d6974207065722077616c6c65740000000000000000600082015250565b7f596f7520617265206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f4e6f206d6f7265204e4654210000000000000000000000000000000000000000600082015250565b7f696e646578206f7574206f662072616e67650000000000000000000000000000600082015250565b7f486f6c6465722041204d696e74206973206e6f7420617661696c61626c652100600082015250565b7f4c656e677468206e6f74206d6174636800000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e494420697320757365640000000000000000000000000000000000600082015250565b7f57686974656c697374204d696e74206973206e6f7420617661696c61626c6521600082015250565b7f5075626c6963204d696e74206973206e6f7420617661696c61626c6521000000600082015250565b7f616c726561647920696e73637269707465640000000000000000000000000000600082015250565b7f496e73756666696369656e742076616c75652100000000000000000000000000600082015250565b7f52656163686564206c696d697420706572207478000000000000000000000000600082015250565b7f6d65737361676553656e64206e6f74206f70656e000000000000000000000000600082015250565b7f6e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b7f436f6e747261637420412061646472206e6f7420736574000000000000000000600082015250565b61523381614c39565b811461523e57600080fd5b50565b61524a81614c4b565b811461525557600080fd5b50565b61526181614c57565b811461526c57600080fd5b50565b61527881614c61565b811461528357600080fd5b50565b61528f81614c8d565b811461529a57600080fd5b50565b6152a681614cbb565b81146152b157600080fd5b5056fea26469706673582212207216314de062421fad5a11a6fa6481d2862cfdeb2d7f15d552acefbce95e129b64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102725760003560e01c806395d89b411161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610951578063e575c3501461097c578063e985e9c5146109ba578063eb98e4e4146109f7578063ef947afc14610a34578063f2fde38b14610a5d57610272565b8063b88d4fde14610847578063bac938e314610863578063bd32fb661461087f578063c105c02e146108a8578063c2ee4981146108d6578063c87b56dd1461091457610272565b8063a22cb46511610113578063a22cb46514610745578063ade840221461076e578063af67549b14610797578063b179e060146107d4578063b56b2966146107fd578063b77167321461082b57610272565b806395d89b4114610649578063978a952114610674578063988eb3f3146106b157806398a8cffe146106df5780639bc50aeb1461071c57610272565b806357658227116101e857806370a08231116101ac57806370a082311461052957806371cb5b851461056657806372ea4bee146105a35780637b53bacb146105cc5780638a886986146105f55780638da5cb5b1461061e57610272565b806357658227146104415780636352211e1461046a5780636916ca85146104a75780636be81c75146104e45780636d7eabd51461050057610272565b806323b872dd1161023a57806323b872dd146103635780633039f6b61461037f57806339a0c6f9146103a85780633ccfd60b146103d157806342842e0e146103e85780634bc823ce1461040457610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610338575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613f39565b610a86565b6040516102ab9190614739565b60405180910390f35b3480156102c057600080fd5b506102c9610b18565b6040516102d69190614799565b60405180910390f35b3480156102eb57600080fd5b506103066004803603810190610301919061401c565b610baa565b6040516103139190614680565b60405180910390f35b61033660048036038101906103319190613dd4565b610c08565b005b34801561034457600080fd5b5061034d610c18565b60405161035a9190614a1b565b60405180910390f35b61037d60048036038101906103789190613ba0565b610c2f565b005b34801561038b57600080fd5b506103a660048036038101906103a1919061401c565b610ef3565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190613f93565b610f35565b005b3480156103dd57600080fd5b506103e6610f57565b005b61040260048036038101906103fd9190613ba0565b610fb5565b005b34801561041057600080fd5b5061042b6004803603810190610426919061401c565b610fd5565b6040516104389190614799565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190614089565b611075565b005b34801561047657600080fd5b50610491600480360381019061048c919061401c565b61119b565b60405161049e9190614680565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613d25565b6111ad565b6040516104db9190614a1b565b60405180910390f35b6104fe60048036038101906104f99190613d25565b61120c565b005b34801561050c57600080fd5b5061052760048036038101906105229190613fdc565b6113e3565b005b34801561053557600080fd5b50610550600480360381019061054b9190613b06565b611585565b60405161055d9190614a1b565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190614049565b61161d565b60405161059a9190614739565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190614089565b61164c565b005b3480156105d857600080fd5b506105f360048036038101906105ee91906140e5565b611886565b005b34801561060157600080fd5b5061061c60048036038101906106179190613e67565b6119b7565b005b34801561062a57600080fd5b50610633611a76565b6040516106409190614680565b60405180910390f35b34801561065557600080fd5b5061065e611aa0565b60405161066b9190614799565b60405180910390f35b34801561068057600080fd5b5061069b6004803603810190610696919061401c565b611b32565b6040516106a89190614717565b60405180910390f35b3480156106bd57600080fd5b506106c6611c8c565b6040516106d69493929190614754565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613b06565b611cd3565b6040516107139190614a1b565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190614089565b611ceb565b005b34801561075157600080fd5b5061076c60048036038101906107679190613c76565b611d1f565b005b34801561077a57600080fd5b5061079560048036038101906107909190613edf565b611e2a565b005b3480156107a357600080fd5b506107be60048036038101906107b9919061401c565b611e4f565b6040516107cb9190614717565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f69190613edf565b611fa9565b005b34801561080957600080fd5b50610812611fce565b6040516108229493929190614754565b60405180910390f35b61084560048036038101906108409190613d65565b612015565b005b610861600480360381019061085c9190613bf3565b61235d565b005b61087d60048036038101906108789190613e14565b6123af565b005b34801561088b57600080fd5b506108a660048036038101906108a19190613f0c565b61283b565b005b3480156108b457600080fd5b506108bd61284d565b6040516108cd9493929190614754565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f891906140e5565b612894565b60405161090b9291906146e7565b60405180910390f35b34801561092057600080fd5b5061093b6004803603810190610936919061401c565b61297d565b6040516109489190614799565b60405180910390f35b34801561095d57600080fd5b50610966612ac7565b6040516109739190614a1b565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e91906140e5565b612acd565b6040516109b19291906146e7565b60405180910390f35b3480156109c657600080fd5b506109e160048036038101906109dc9190613b60565b612bb6565b6040516109ee9190614739565b60405180910390f35b348015610a0357600080fd5b50610a1e6004803603810190610a199190613cb6565b612c4a565b604051610a2b9190614739565b60405180910390f35b348015610a4057600080fd5b50610a5b6004803603810190610a569190613b06565b612c86565b005b348015610a6957600080fd5b50610a846004803603810190610a7f9190613b06565b612cd2565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b2790614d31565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390614d31565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b5050505050905090565b6000610bb582612d56565b610bca57610bc963cf4700e460e01b612dd0565b5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c1482826001612dda565b5050565b6000610c22612f09565b6001546000540303905090565b6000610c3a82612f12565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610caf57610cae63a114810060e01b612dd0565b5b600080610cbb8461300e565b91509150610cd18187610ccc613035565b61303d565b610cfc57610ce686610ce1613035565b612bb6565b610cfb57610cfa6359c896be60e01b612dd0565b5b5b610d098686866001613081565b8015610d1457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de285610dbe888887613087565b7c0200000000000000000000000000000000000000000000000000000000176130af565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e6a576000600185019050600060046000838152602001908152602001600020541415610e68576000548114610e67578360046000838152602001908152602001600020819055505b5b505b600073ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46000811415610edd57610edc63ea553b3460e01b612dd0565b5b610eea87878760016130da565b50505050505050565b610efb6130e0565b60405180602001604052806000815250600c60008381526020019081526020016000209080519060200190610f31929190613689565b5050565b610f3d6130e0565b8060179080519060200190610f53929190613689565b5050565b610f5f6130e0565b6000479050610f6c61315e565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fb1573d6000803e3d6000fd5b5050565b610fd08383836040518060200160405280600081525061235d565b505050565b600c6020528060005260406000206000915090508054610ff490614d31565b80601f016020809104026020016040519081016040528092919081815260200182805461102090614d31565b801561106d5780601f106110425761010080835404028352916020019161106d565b820191906000526020600020905b81548152906001019060200180831161105057829003601f168201915b505050505081565b601660159054906101000a900460ff166110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb906149bb565b60405180910390fd5b600060405180604001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001838152509050600f600084815260200190815260200160002081908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001019080519060200190611193929190613689565b505050505050565b60006111a682612f12565b9050919050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008361ffff16815260200190815260200160002054905092915050565b601460000160009054906101000a900460ff1661125e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112559061493b565b60405180910390fd5b6101c88161ffff1661126e610c18565b6112789190614be3565b11156112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b09061485b565b60405180910390fd5b6000601460000160019054906101000a900461ffff1661ffff1614806112fa5750601460000160019054906101000a900461ffff1661ffff168161ffff1611155b611339576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113309061499b565b60405180910390fd5b6000601460010154148061135257506014600101543410155b611391576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113889061497b565b60405180910390fd5b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146113cc57826113ce565b335b90506113de818361ffff16613166565b505050565b6113eb6130e0565b60018261ffff1614156114735780601060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548161ffff021916908361ffff16021790555060408201518160000160036101000a81548161ffff021916908361ffff16021790555060608201518160010155905050611581565b60028261ffff1614156114fb5780601260008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548161ffff021916908361ffff16021790555060408201518160000160036101000a81548161ffff021916908361ffff16021790555060608201518160010155905050611580565b60038261ffff16141561157f5780601460008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548161ffff021916908361ffff16021790555060408201518160000160036101000a81548161ffff021916908361ffff160217905550606082015181600101559050505b5b5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cc576115cb638f4eb60460e01b612dd0565b5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600e6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b601660149054906101000a900460ff1661169b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611692906147db565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166116bb8361119b565b73ffffffffffffffffffffffffffffffffffffffff1614611711576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611708906149db565b60405180910390fd5b600e600083815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a69061495b565b60405180910390fd5b600060405180604001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001838152509050600d600084815260200190815260200160002081908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101908051906020019061187e929190613689565b505050505050565b80600f600084815260200190815260200160002080549050116118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d59061487b565b60405180910390fd5b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff16815260200160405180602001604052806000815250815250600f6000848152602001908152602001600020828154811061193e5761193d614e5f565b5b906000526020600020906002020160008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010190805190602001906119af929190613689565b509050505050565b6119bf6130e0565b600082511180156119d1575080518251145b611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a07906148bb565b60405180910390fd5b60005b8251811015611a7157611a5e838281518110611a3257611a31614e5f565b5b6020026020010151838381518110611a4d57611a4c614e5f565b5b602002602001015161ffff16613166565b8080611a6990614d94565b915050611a13565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611aaf90614d31565b80601f0160208091040260200160405190810160405280929190818152602001828054611adb90614d31565b8015611b285780601f10611afd57610100808354040283529160200191611b28565b820191906000526020600020905b815481529060010190602001808311611b0b57829003601f168201915b5050505050905090565b6060600d6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015611c8157838290600052602060002090600202016040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182018054611bf090614d31565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1c90614d31565b8015611c695780601f10611c3e57610100808354040283529160200191611c69565b820191906000526020600020905b815481529060010190602001808311611c4c57829003601f168201915b50505050508152505081526020019060010190611b67565b505050509050919050565b60128060000160009054906101000a900460ff16908060000160019054906101000a900461ffff16908060000160039054906101000a900461ffff16908060010154905084565b600b6020528060005260406000206000915090505481565b611cf36130e0565b80600c60008481526020019081526020016000209080519060200190611d1a929190613689565b505050565b8060076000611d2c613035565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dd9613035565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e1e9190614739565b60405180910390a35050565b611e326130e0565b80601660146101000a81548160ff02191690831515021790555050565b6060600f6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015611f9e57838290600052602060002090600202016040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182018054611f0d90614d31565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3990614d31565b8015611f865780601f10611f5b57610100808354040283529160200191611f86565b820191906000526020600020905b815481529060010190602001808311611f6957829003601f168201915b50505050508152505081526020019060010190611e84565b505050509050919050565b611fb16130e0565b80601660156101000a81548160ff02191690831515021790555050565b60108060000160009054906101000a900460ff16908060000160019054906101000a900461ffff16908060000160039054906101000a900461ffff16908060010154905084565b601060000160009054906101000a900460ff16612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e9061491b565b60405180910390fd5b6101c88261ffff16612077610c18565b6120819190614be3565b11156120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b99061485b565b60405180910390fd5b6000601060000160019054906101000a900461ffff1661ffff1614806121035750601060000160019054906101000a900461ffff1661ffff168261ffff1611155b612142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121399061499b565b60405180910390fd5b6000601060010154148061215b57506010600101543410155b61219a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121919061497b565b60405180910390fd5b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146121d557836121d7565b335b90506121e68160095484612c4a565b612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c9061483b565b60405180910390fd5b6000601060000160039054906101000a900461ffff1661ffff1614806122b05750601060000160039054906101000a900461ffff1661ffff168361ffff16600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122ad9190614be3565b11155b6122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e69061481b565b60405180910390fd5b8261ffff16600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123429190614be3565b92505081905550612357818461ffff16613166565b50505050565b612368848484610c2f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123a95761239384848484613184565b6123a8576123a763d1a57ed660e01b612dd0565b5b5b50505050565b601260000160009054906101000a900460ff16612401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f89061489b565b60405180910390fd5b6101c88161ffff16612411610c18565b61241b9190614be3565b111561245c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124539061485b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e5906149fb565b60405180910390fd5b6000601260010154148061250757506012600101543410155b612546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253d9061497b565b60405180910390fd5b60008073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146125815783612583565b335b90508073ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e856040518263ffffffff1660e01b81526004016125f79190614a1b565b60206040518083038186803b15801561260f57600080fd5b505afa158015612623573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126479190613b33565b73ffffffffffffffffffffffffffffffffffffffff161461269d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612694906147fb565b60405180910390fd5b6000601260000160019054906101000a900461ffff1661ffff16148061275b5750601260000160019054906101000a900461ffff1661ffff168261ffff16600a6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868152602001908152602001600020546127589190614be3565b11155b61279a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612791906148fb565b60405180910390fd5b8161ffff16600a6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060008282546128209190614be3565b92505081905550612835818361ffff16613166565b50505050565b6128436130e0565b8060098190555050565b60148060000160009054906101000a900460ff16908060000160019054906101000a900461ffff16908060000160039054906101000a900461ffff16908060010154905084565b600f60205281600052604060002081815481106128b057600080fd5b9060005260206000209060020201600091509150508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010180546128fa90614d31565b80601f016020809104026020016040519081016040528092919081815260200182805461292690614d31565b80156129735780601f1061294857610100808354040283529160200191612973565b820191906000526020600020905b81548152906001019060200180831161295657829003601f168201915b5050505050905082565b606061298882612d56565b61299d5761299c63a14c4b5060e01b612dd0565b5b6000600c600084815260200190815260200160002080546129bd90614d31565b905014612a6757600c600083815260200190815260200160002080546129e290614d31565b80601f0160208091040260200160405190810160405280929190818152602001828054612a0e90614d31565b8015612a5b5780601f10612a3057610100808354040283529160200191612a5b565b820191906000526020600020905b815481529060010190602001808311612a3e57829003601f168201915b50505050509050612ac2565b600060178054612a7690614d31565b90501415612a935760405180602001604052806000815250612abf565b6017612a9e836132c3565b604051602001612aaf92919061465c565b6040516020818303038152906040525b90505b919050565b6101c881565b600d6020528160005260406000208181548110612ae957600080fd5b9060005260206000209060020201600091509150508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001018054612b3390614d31565b80601f0160208091040260200160405190810160405280929190818152602001828054612b5f90614d31565b8015612bac5780601f10612b8157610100808354040283529160200191612bac565b820191906000526020600020905b815481529060010190602001808311612b8f57829003601f168201915b5050505050905082565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612c7d828486604051602001612c629190614641565b6040516020818303038152906040528051906020012061331c565b90509392505050565b612c8e6130e0565b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612cda6130e0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d41906147bb565b60405180910390fd5b612d5381613333565b50565b600081612d61612f09565b11612dcb57600054821015612dca5760005b600060046000858152602001908152602001600020549150811415612da35782612d9c90614d07565b9250612d73565b60007c01000000000000000000000000000000000000000000000000000000008216149150505b5b919050565b8060005260046000fd5b6000612de58361119b565b9050818015612e2757508073ffffffffffffffffffffffffffffffffffffffff16612e0e613035565b73ffffffffffffffffffffffffffffffffffffffff1614155b15612e5357612e3d81612e38613035565b612bb6565b612e5257612e5163cfb3b94260e01b612dd0565b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60006001905090565b600081612f1d612f09565b11612ff857600460008381526020019081526020016000205490506000811415612fca576000548210612f5b57612f5a63df2d9b4260e01b612dd0565b5b5b60046000836001900393508381526020019081526020016000205490506000811415612f8757612fc5565b60007c010000000000000000000000000000000000000000000000000000000082161415612fb457613009565b612fc463df2d9b4260e01b612dd0565b5b612f5c565b60007c010000000000000000000000000000000000000000000000000000000082161415612ff757613009565b5b61300863df2d9b4260e01b612dd0565b5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861309e8686846133f9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6130e861315e565b73ffffffffffffffffffffffffffffffffffffffff16613106611a76565b73ffffffffffffffffffffffffffffffffffffffff161461315c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613153906148db565b60405180910390fd5b565b600033905090565b613180828260405180602001604052806000815250613402565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131aa613035565b8786866040518563ffffffff1660e01b81526004016131cc949392919061469b565b602060405180830381600087803b1580156131e657600080fd5b505af192505050801561321757506040513d601f19601f820116820180604052508101906132149190613f66565b60015b613270573d8060008114613247576040519150601f19603f3d011682016040523d82523d6000602084013e61324c565b606091505b506000815114156132685761326763d1a57ed660e01b612dd0565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b60011561330757600184039350600a81066030018453600a810490508061330257613307565b6132dc565b50828103602084039350808452505050919050565b6000826133298584613487565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60009392505050565b61340c83836134fc565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461348257600080549050600083820390505b61344c6000868380600101945086613184565b6134615761346063d1a57ed660e01b612dd0565b5b81811061343957816000541461347f5761347e600060e01b612dd0565b5b50505b505050565b60008082905060005b84518110156134f15760008582815181106134ae576134ad614e5f565b5b602002602001015190508083116134d0576134c98382613662565b92506134dd565b6134da8184613662565b92505b5080806134e990614d94565b915050613490565b508091505092915050565b600080549050600082141561351c5761351b63b562e8dd60e01b612dd0565b5b6135296000848385613081565b6135498361353a6000866000613087565b61354385613679565b176130af565b6004600083815260200190815260200160002081905550600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff16169050600081141561360257613601632e07630060e01b612dd0565b5b6000838301905060008390505b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48181600101915081141561360f578160008190555050505061365d60008483856130da565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461369590614d31565b90600052602060002090601f0160209004810192826136b757600085556136fe565b82601f106136d057805160ff19168380011785556136fe565b828001600101855582156136fe579182015b828111156136fd5782518255916020019190600101906136e2565b5b50905061370b919061370f565b5090565b5b80821115613728576000816000905550600101613710565b5090565b600061373f61373a84614a5b565b614a36565b9050808382526020820190508285602086028201111561376257613761614ec7565b5b60005b8581101561379257816137788882613900565b845260208401935060208301925050600181019050613765565b5050509392505050565b60006137af6137aa84614a87565b614a36565b905080838252602082019050828560208602820111156137d2576137d1614ec7565b5b60005b8581101561380257816137e888826139c9565b8452602084019350602083019250506001810190506137d5565b5050509392505050565b600061381f61381a84614ab3565b614a36565b9050808382526020820190508285602086028201111561384257613841614ec7565b5b60005b8581101561387257816138588882613adc565b845260208401935060208301925050600181019050613845565b5050509392505050565b600061388f61388a84614adf565b614a36565b9050828152602081018484840111156138ab576138aa614ecc565b5b6138b6848285614cc5565b509392505050565b60006138d16138cc84614b10565b614a36565b9050828152602081018484840111156138ed576138ec614ecc565b5b6138f8848285614cc5565b509392505050565b60008135905061390f8161522a565b92915050565b6000815190506139248161522a565b92915050565b600082601f83011261393f5761393e614ebd565b5b813561394f84826020860161372c565b91505092915050565b600082601f83011261396d5761396c614ebd565b5b813561397d84826020860161379c565b91505092915050565b600082601f83011261399b5761399a614ebd565b5b81356139ab84826020860161380c565b91505092915050565b6000813590506139c381615241565b92915050565b6000813590506139d881615258565b92915050565b6000813590506139ed8161526f565b92915050565b600081519050613a028161526f565b92915050565b600082601f830112613a1d57613a1c614ebd565b5b8135613a2d84826020860161387c565b91505092915050565b600082601f830112613a4b57613a4a614ebd565b5b8135613a5b8482602086016138be565b91505092915050565b600060808284031215613a7a57613a79614ec2565b5b613a846080614a36565b90506000613a94848285016139b4565b6000830152506020613aa884828501613adc565b6020830152506040613abc84828501613adc565b6040830152506060613ad084828501613af1565b60608301525092915050565b600081359050613aeb81615286565b92915050565b600081359050613b008161529d565b92915050565b600060208284031215613b1c57613b1b614ed6565b5b6000613b2a84828501613900565b91505092915050565b600060208284031215613b4957613b48614ed6565b5b6000613b5784828501613915565b91505092915050565b60008060408385031215613b7757613b76614ed6565b5b6000613b8585828601613900565b9250506020613b9685828601613900565b9150509250929050565b600080600060608486031215613bb957613bb8614ed6565b5b6000613bc786828701613900565b9350506020613bd886828701613900565b9250506040613be986828701613af1565b9150509250925092565b60008060008060808587031215613c0d57613c0c614ed6565b5b6000613c1b87828801613900565b9450506020613c2c87828801613900565b9350506040613c3d87828801613af1565b925050606085013567ffffffffffffffff811115613c5e57613c5d614ed1565b5b613c6a87828801613a08565b91505092959194509250565b60008060408385031215613c8d57613c8c614ed6565b5b6000613c9b85828601613900565b9250506020613cac858286016139b4565b9150509250929050565b600080600060608486031215613ccf57613cce614ed6565b5b6000613cdd86828701613900565b9350506020613cee868287016139c9565b925050604084013567ffffffffffffffff811115613d0f57613d0e614ed1565b5b613d1b86828701613958565b9150509250925092565b60008060408385031215613d3c57613d3b614ed6565b5b6000613d4a85828601613900565b9250506020613d5b85828601613adc565b9150509250929050565b600080600060608486031215613d7e57613d7d614ed6565b5b6000613d8c86828701613900565b9350506020613d9d86828701613adc565b925050604084013567ffffffffffffffff811115613dbe57613dbd614ed1565b5b613dca86828701613958565b9150509250925092565b60008060408385031215613deb57613dea614ed6565b5b6000613df985828601613900565b9250506020613e0a85828601613af1565b9150509250929050565b600080600060608486031215613e2d57613e2c614ed6565b5b6000613e3b86828701613900565b9350506020613e4c86828701613af1565b9250506040613e5d86828701613adc565b9150509250925092565b60008060408385031215613e7e57613e7d614ed6565b5b600083013567ffffffffffffffff811115613e9c57613e9b614ed1565b5b613ea88582860161392a565b925050602083013567ffffffffffffffff811115613ec957613ec8614ed1565b5b613ed585828601613986565b9150509250929050565b600060208284031215613ef557613ef4614ed6565b5b6000613f03848285016139b4565b91505092915050565b600060208284031215613f2257613f21614ed6565b5b6000613f30848285016139c9565b91505092915050565b600060208284031215613f4f57613f4e614ed6565b5b6000613f5d848285016139de565b91505092915050565b600060208284031215613f7c57613f7b614ed6565b5b6000613f8a848285016139f3565b91505092915050565b600060208284031215613fa957613fa8614ed6565b5b600082013567ffffffffffffffff811115613fc757613fc6614ed1565b5b613fd384828501613a36565b91505092915050565b60008060a08385031215613ff357613ff2614ed6565b5b600061400185828601613adc565b925050602061401285828601613a64565b9150509250929050565b60006020828403121561403257614031614ed6565b5b600061404084828501613af1565b91505092915050565b600080604083850312156140605761405f614ed6565b5b600061406e85828601613af1565b925050602061407f85828601613900565b9150509250929050565b600080604083850312156140a05761409f614ed6565b5b60006140ae85828601613af1565b925050602083013567ffffffffffffffff8111156140cf576140ce614ed1565b5b6140db85828601613a36565b9150509250929050565b600080604083850312156140fc576140fb614ed6565b5b600061410a85828601613af1565b925050602061411b85828601613af1565b9150509250929050565b600061413183836145e6565b905092915050565b61414281614c39565b82525050565b61415181614c39565b82525050565b61416861416382614c39565b614ddd565b82525050565b600061417982614b66565b6141838185614b94565b93508360208202850161419585614b41565b8060005b858110156141d157848403895281516141b28582614125565b94506141bd83614b87565b925060208a01995050600181019050614199565b50829750879550505050505092915050565b6141ec81614c4b565b82525050565b60006141fd82614b71565b6142078185614ba5565b9350614217818560208601614cd4565b61422081614edb565b840191505092915050565b600061423682614b7c565b6142408185614bb6565b9350614250818560208601614cd4565b61425981614edb565b840191505092915050565b600061426f82614b7c565b6142798185614bc7565b9350614289818560208601614cd4565b61429281614edb565b840191505092915050565b60006142a882614b7c565b6142b28185614bd8565b93506142c2818560208601614cd4565b80840191505092915050565b600081546142db81614d31565b6142e58186614bd8565b94506001821660008114614300576001811461431157614344565b60ff19831686528186019350614344565b61431a85614b51565b60005b8381101561433c5781548189015260018201915060208101905061431d565b838801955050505b50505092915050565b600061435a602683614bc7565b915061436582614ef9565b604082019050919050565b600061437d601483614bc7565b915061438882614f48565b602082019050919050565b60006143a0601383614bc7565b91506143ab82614f71565b602082019050919050565b60006143c3601883614bc7565b91506143ce82614f9a565b602082019050919050565b60006143e6601883614bc7565b91506143f182614fc3565b602082019050919050565b6000614409600c83614bc7565b915061441482614fec565b602082019050919050565b600061442c601283614bc7565b915061443782615015565b602082019050919050565b600061444f601f83614bc7565b915061445a8261503e565b602082019050919050565b6000614472601083614bc7565b915061447d82615067565b602082019050919050565b6000614495602083614bc7565b91506144a082615090565b602082019050919050565b60006144b8600f83614bc7565b91506144c3826150b9565b602082019050919050565b60006144db602083614bc7565b91506144e6826150e2565b602082019050919050565b60006144fe601d83614bc7565b91506145098261510b565b602082019050919050565b6000614521601283614bc7565b915061452c82615134565b602082019050919050565b6000614544601383614bc7565b915061454f8261515d565b602082019050919050565b6000614567601483614bc7565b915061457282615186565b602082019050919050565b600061458a601483614bc7565b9150614595826151af565b602082019050919050565b60006145ad600983614bc7565b91506145b8826151d8565b602082019050919050565b60006145d0601783614bc7565b91506145db82615201565b602082019050919050565b60006040830160008301516145fe6000860182614139565b5060208301518482036020860152614616828261422b565b9150508091505092915050565b61462c81614c8d565b82525050565b61463b81614cbb565b82525050565b600061464d8284614157565b60148201915081905092915050565b600061466882856142ce565b9150614674828461429d565b91508190509392505050565b60006020820190506146956000830184614148565b92915050565b60006080820190506146b06000830187614148565b6146bd6020830186614148565b6146ca6040830185614632565b81810360608301526146dc81846141f2565b905095945050505050565b60006040820190506146fc6000830185614148565b818103602083015261470e8184614264565b90509392505050565b60006020820190508181036000830152614731818461416e565b905092915050565b600060208201905061474e60008301846141e3565b92915050565b600060808201905061476960008301876141e3565b6147766020830186614623565b6147836040830185614623565b6147906060830184614632565b95945050505050565b600060208201905081810360008301526147b38184614264565b905092915050565b600060208201905081810360008301526147d48161434d565b9050919050565b600060208201905081810360008301526147f481614370565b9050919050565b6000602082019050818103600083015261481481614393565b9050919050565b60006020820190508181036000830152614834816143b6565b9050919050565b60006020820190508181036000830152614854816143d9565b9050919050565b60006020820190508181036000830152614874816143fc565b9050919050565b600060208201905081810360008301526148948161441f565b9050919050565b600060208201905081810360008301526148b481614442565b9050919050565b600060208201905081810360008301526148d481614465565b9050919050565b600060208201905081810360008301526148f481614488565b9050919050565b60006020820190508181036000830152614914816144ab565b9050919050565b60006020820190508181036000830152614934816144ce565b9050919050565b60006020820190508181036000830152614954816144f1565b9050919050565b6000602082019050818103600083015261497481614514565b9050919050565b6000602082019050818103600083015261499481614537565b9050919050565b600060208201905081810360008301526149b48161455a565b9050919050565b600060208201905081810360008301526149d48161457d565b9050919050565b600060208201905081810360008301526149f4816145a0565b9050919050565b60006020820190508181036000830152614a14816145c3565b9050919050565b6000602082019050614a306000830184614632565b92915050565b6000614a40614a51565b9050614a4c8282614d63565b919050565b6000604051905090565b600067ffffffffffffffff821115614a7657614a75614e8e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614aa257614aa1614e8e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ace57614acd614e8e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614afa57614af9614e8e565b5b614b0382614edb565b9050602081019050919050565b600067ffffffffffffffff821115614b2b57614b2a614e8e565b5b614b3482614edb565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614bee82614cbb565b9150614bf983614cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c2e57614c2d614e01565b5b828201905092915050565b6000614c4482614c9b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cf2578082015181840152602081019050614cd7565b83811115614d01576000848401525b50505050565b6000614d1282614cbb565b91506000821415614d2657614d25614e01565b5b600182039050919050565b60006002820490506001821680614d4957607f821691505b60208210811415614d5d57614d5c614e30565b5b50919050565b614d6c82614edb565b810181811067ffffffffffffffff82111715614d8b57614d8a614e8e565b5b80604052505050565b6000614d9f82614cbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dd257614dd1614e01565b5b600182019050919050565b6000614de882614def565b9050919050565b6000614dfa82614eec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e736372697074696f6e206e6f74206f70656e000000000000000000000000600082015250565b7f446f6e277420686176652074686973206e667400000000000000000000000000600082015250565b7f52656163686564206c696d6974207065722077616c6c65740000000000000000600082015250565b7f596f7520617265206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f4e6f206d6f7265204e4654210000000000000000000000000000000000000000600082015250565b7f696e646578206f7574206f662072616e67650000000000000000000000000000600082015250565b7f486f6c6465722041204d696e74206973206e6f7420617661696c61626c652100600082015250565b7f4c656e677468206e6f74206d6174636800000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e494420697320757365640000000000000000000000000000000000600082015250565b7f57686974656c697374204d696e74206973206e6f7420617661696c61626c6521600082015250565b7f5075626c6963204d696e74206973206e6f7420617661696c61626c6521000000600082015250565b7f616c726561647920696e73637269707465640000000000000000000000000000600082015250565b7f496e73756666696369656e742076616c75652100000000000000000000000000600082015250565b7f52656163686564206c696d697420706572207478000000000000000000000000600082015250565b7f6d65737361676553656e64206e6f74206f70656e000000000000000000000000600082015250565b7f6e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b7f436f6e747261637420412061646472206e6f7420736574000000000000000000600082015250565b61523381614c39565b811461523e57600080fd5b50565b61524a81614c4b565b811461525557600080fd5b50565b61526181614c57565b811461526c57600080fd5b50565b61527881614c61565b811461528357600080fd5b50565b61528f81614c8d565b811461529a57600080fd5b50565b6152a681614cbb565b81146152b157600080fd5b5056fea26469706673582212207216314de062421fad5a11a6fa6481d2862cfdeb2d7f15d552acefbce95e129b64736f6c63430008070033

Deployed Bytecode Sourcemap

49740:7131:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19180:627;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20070:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27080:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26797:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15848:311;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30790:3387;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56107:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50795:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56726:142;;;;;;;;;;;;;:::i;:::-;;34273:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50225:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55234:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21472:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54105:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51354:531;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51038:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17008:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50336:68;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54727:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55477:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54282:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9321:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20246:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55698:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50511:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;50168:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55979:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27647:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54609:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55841:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55121:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50469:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;52032:873;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35064:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53241:856;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51916:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50555:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;50411:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;56217:392;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50006:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50276:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;28038:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52913:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53131:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9773:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19180:627;19265:4;19600:10;19585:25;;:11;:25;;;;:98;;;;19673:10;19658:25;;:11;:25;;;;19585:98;:171;;;;19746:10;19731:25;;:11;:25;;;;19585:171;19569:187;;19180:627;;;:::o;20070:100::-;20124:13;20157:5;20150:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20070:100;:::o;27080:227::-;27156:7;27181:16;27189:7;27181;:16::i;:::-;27176:73;;27199:50;27207:41;;;27199:7;:50::i;:::-;27176:73;27269:15;:24;27285:7;27269:24;;;;;;;;;;;:30;;;;;;;;;;;;27262:37;;27080:227;;;:::o;26797:124::-;26886:27;26895:2;26899:7;26908:4;26886:8;:27::i;:::-;26797:124;;:::o;15848:311::-;15909:7;16129:15;:13;:15::i;:::-;16114:12;;16098:13;;:28;:46;16091:53;;15848:311;:::o;30790:3387::-;30932:27;30962;30981:7;30962:18;:27::i;:::-;30932:57;;13006:14;31133:4;31117:22;;:41;31094:66;;31218:4;31177:45;;31193:19;31177:45;;;31173:95;;31224:44;31232:35;;;31224:7;:44::i;:::-;31173:95;31282:27;31311:23;31338:35;31365:7;31338:26;:35::i;:::-;31281:92;;;;31473:68;31498:15;31515:4;31521:19;:17;:19::i;:::-;31473:24;:68::i;:::-;31468:189;;31561:43;31578:4;31584:19;:17;:19::i;:::-;31561:16;:43::i;:::-;31556:101;;31606:51;31614:42;;;31606:7;:51::i;:::-;31556:101;31468:189;31670:43;31692:4;31698:2;31702:7;31711:1;31670:21;:43::i;:::-;31806:15;31803:156;;;31942:1;31921:19;31914:30;31803:156;32327:18;:24;32346:4;32327:24;;;;;;;;;;;;;;;;32325:26;;;;;;;;;;;;32392:18;:22;32411:2;32392:22;;;;;;;;;;;;;;;;32390:24;;;;;;;;;;;32690:134;32723:2;32768:45;32783:4;32789:2;32793:19;32768:14;:45::i;:::-;12604:8;32740:73;32690:18;:134::i;:::-;32661:17;:26;32679:7;32661:26;;;;;;;;;;;:163;;;;32987:1;12604:8;32936:19;:47;:52;32932:587;;;33005:19;33037:1;33027:7;:11;33005:33;;33186:1;33152:17;:30;33170:11;33152:30;;;;;;;;;;;;:35;33148:360;;;33282:13;;33267:11;:28;33263:230;;33454:19;33421:17;:30;33439:11;33421:30;;;;;;;;;;;:52;;;;33263:230;33148:360;32990:529;32932:587;33628:16;13006:14;33663:2;33647:20;;:39;33628:58;;33999:7;33967:8;33937:4;33883:25;33832:1;33779;33760:275;34072:1;34060:8;:13;34056:58;;;34075:39;34083:30;;;34075:7;:39::i;:::-;34056:58;34127:42;34148:4;34154:2;34158:7;34167:1;34127:20;:42::i;:::-;30921:3256;;;;30790:3387;;;:::o;56107:102::-;9207:13;:11;:13::i;:::-;56177:24:::1;;;;;;;;;;;::::0;:10:::1;:19;56188:7;56177:19;;;;;;;;;;;:24;;;;;;;;;;;;:::i;:::-;;56107:102:::0;:::o;50795:97::-;9207:13;:11;:13::i;:::-;50878:6:::1;50868:7;:16;;;;;;;;;;;;:::i;:::-;;50795:97:::0;:::o;56726:142::-;9207:13;:11;:13::i;:::-;56774:12:::1;56789:21;56774:36;;56829:12;:10;:12::i;:::-;56821:30;;:39;56852:7;56821:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;56763:105;56726:142::o:0;34273:193::-;34419:39;34436:4;34442:2;34446:7;34419:39;;;;;;;;;;;;:16;:39::i;:::-;34273:193;;;:::o;50225:44::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55234:235::-;55321:17;;;;;;;;;;;55313:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;55374:16;55393:28;;;;;;;;55401:10;55393:28;;;;;;55413:7;55393:28;;;55374:47;;55432:12;:21;55445:7;55432:21;;;;;;;;;;;55459:1;55432:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;55302:167;55234:235;;:::o;21472:152::-;21544:7;21587:27;21606:7;21587:18;:27::i;:::-;21564:52;;21472:152;;;:::o;54105:150::-;54188:7;54215:17;:23;54233:4;54215:23;;;;;;;;;;;;;;;:32;54239:7;54215:32;;;;;;;;;;;;;;54208:39;;54105:150;;;;:::o;51354:531::-;51435:14;:21;;;;;;;;;;;;51427:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50042:3;51525:6;51509:22;;:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;51501:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;51607:1;51580:14;:23;;;;;;;;;;;;:28;;;:65;;;;51622:14;:23;;;;;;;;;;;;51612:33;;:6;:33;;;;51580:65;51572:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51713:1;51689:14;:20;;;:25;:62;;;;51731:14;:20;;;51718:9;:33;;51689:62;51681:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;51788:14;51819:1;51805:16;;:2;:16;;;:34;;51837:2;51805:34;;;51824:10;51805:34;51788:51;;51852:25;51862:6;51870;51852:25;;:9;:25::i;:::-;51416:469;51354:531;;:::o;51038:306::-;9207:13;:11;:13::i;:::-;51139:1:::1;51131:4;:9;;;51127:210;;;51177:5;51157:17;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51127:210;;;51211:1;51203:4;:9;;;51199:138;;;51251:5;51229:19;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51199:138;;;51285:1;51277:4;:9;;;51273:64;;;51320:5;51303:14;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51273:64;51199:138;51127:210;51038:306:::0;;:::o;17008:242::-;17080:7;17121:1;17104:19;;:5;:19;;;17100:69;;;17125:44;17133:35;;;17125:7;:44::i;:::-;17100:69;11548:13;17187:18;:25;17206:5;17187:25;;;;;;;;;;;;;;;;:55;17180:62;;17008:242;;;:::o;50336:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54727:386::-;54816:17;;;;;;;;;;;54808:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;54897:10;54877:30;;:16;54885:7;54877;:16::i;:::-;:30;;;54869:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;54941:16;:25;54958:7;54941:25;;;;;;;;;;;:37;54967:10;54941:37;;;;;;;;;;;;;;;;;;;;;;;;;54940:38;54932:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;55014:16;55033:28;;;;;;;;55041:10;55033:28;;;;;;55053:7;55033:28;;;55014:47;;55072:16;:25;55089:7;55072:25;;;;;;;;;;;55103:1;55072:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;54797:316;54727:386;;:::o;55477:213::-;55589:5;55558:12;:21;55571:7;55558:21;;;;;;;;;;;:28;;;;:36;55550:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;55659:23;;;;;;;;55675:1;55659:23;;;;;;;;;;;;;;;;;;;;;55628:12;:21;55641:7;55628:21;;;;;;;;;;;55650:5;55628:28;;;;;;;;:::i;:::-;;;;;;;;;;;;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;55477:213;;:::o;54282:297::-;9207:13;:11;:13::i;:::-;54404:1:::1;54386:8;:15;:19;:53;;;;;54428:4;:11;54409:8;:15;:30;54386:53;54378:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;54476:6;54471:101;54492:8;:15;54488:1;:19;54471:101;;;54529:31;54539:8;54548:1;54539:11;;;;;;;;:::i;:::-;;;;;;;;54552:4;54557:1;54552:7;;;;;;;;:::i;:::-;;;;;;;;54529:31;;:9;:31::i;:::-;54509:3;;;;;:::i;:::-;;;;54471:101;;;;54282:297:::0;;:::o;9321:87::-;9367:7;9394:6;;;;;;;;;;;9387:13;;9321:87;:::o;20246:104::-;20302:13;20335:7;20328:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20246:104;:::o;55698:135::-;55764:16;55800;:25;55817:7;55800:25;;;;;;;;;;;55793:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55698:135;;;:::o;50511:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50168:50::-;;;;;;;;;;;;;;;;;:::o;55979:120::-;9207:13;:11;:13::i;:::-;56088:3:::1;56066:10;:19;56077:7;56066:19;;;;;;;;;;;:25;;;;;;;;;;;;:::i;:::-;;55979:120:::0;;:::o;27647:234::-;27794:8;27742:18;:39;27761:19;:17;:19::i;:::-;27742:39;;;;;;;;;;;;;;;:49;27782:8;27742:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27854:8;27818:55;;27833:19;:17;:19::i;:::-;27818:55;;;27864:8;27818:55;;;;;;:::i;:::-;;;;;;;;27647:234;;:::o;54609:110::-;9207:13;:11;:13::i;:::-;54705:6:::1;54685:17;;:26;;;;;;;;;;;;;;;;;;54609:110:::0;:::o;55841:128::-;55904:16;55940:12;:21;55953:7;55940:21;;;;;;;;;;;55933:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55841:128;;;:::o;55121:105::-;9207:13;:11;:13::i;:::-;55212:6:::1;55192:17;;:26;;;;;;;;;;;;;;;;;;55121:105:::0;:::o;50469:35::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52032:873::-;52140:17;:24;;;;;;;;;;;;52132:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50042:3;52236:6;52220:22;;:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;52212:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;52321:1;52291:17;:26;;;;;;;;;;;;:31;;;:71;;;;52336:17;:26;;;;;;;;;;;;52326:36;;:6;:36;;;;52291:71;52283:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;52433:1;52406:17;:23;;;:28;:68;;;;52451:17;:23;;;52438:9;:36;;52406:68;52398:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;52513:14;52544:1;52530:16;;:2;:16;;;:34;;52562:2;52530:34;;;52549:10;52530:34;52513:51;;52583:50;52598:6;52606:19;;52627:5;52583:14;:50::i;:::-;52575:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;52715:1;52681:17;:30;;;;;;;;;;;;:35;;;:105;;;;52756:17;:30;;;;;;;;;;;;52720:66;;52746:6;52720:32;;:15;:23;52736:6;52720:23;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:66;;52681:105;52673:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;52855:6;52828:33;;:15;:23;52844:6;52828:23;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;52872:25;52882:6;52890;52872:25;;:9;:25::i;:::-;52121:784;52032:873;;;:::o;35064:416::-;35239:31;35252:4;35258:2;35262:7;35239:12;:31::i;:::-;35303:1;35285:2;:14;;;:19;35281:192;;35324:56;35355:4;35361:2;35365:7;35374:5;35324:30;:56::i;:::-;35319:154;;35401:56;35409:47;;;35401:7;:56::i;:::-;35319:154;35281:192;35064:416;;;;:::o;53241:856::-;53344:19;:26;;;;;;;;;;;;53336:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50042:3;53441:6;53425:22;;:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;53417:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;53523:1;53496:29;;:15;;;;;;;;;;;:29;;;;53488:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53601:1;53572:19;:25;;;:30;:72;;;;53619:19;:25;;;53606:9;:38;;53572:72;53564:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;53681:14;53712:1;53698:16;;:2;:16;;;:34;;53730:2;53698:34;;;53717:10;53698:34;53681:51;;53797:6;53751:52;;53760:15;;;;;;;;;;;53751:33;;;53785:7;53751:42;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:52;;;53743:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;53878:1;53846:19;:28;;;;;;;;;;;;:33;;;:121;;;;53939:19;:28;;;;;;;;;;;;53883:84;;53929:6;53883:52;;:17;:34;53901:15;;;;;;;;;;;53883:34;;;;;;;;;;;;;;;:43;53918:7;53883:43;;;;;;;;;;;;:52;;;;:::i;:::-;:84;;53846:121;53838:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;54047:6;54000:53;;:17;:34;54018:15;;;;;;;;;;;54000:34;;;;;;;;;;;;;;;:43;54035:7;54000:43;;;;;;;;;;;;:53;;;;;;;:::i;:::-;;;;;;;;54064:25;54074:6;54082;54064:25;;:9;:25::i;:::-;53325:772;53241:856;;;:::o;51916:108::-;9207:13;:11;:13::i;:::-;52012:4:::1;51990:19;:26;;;;51916:108:::0;:::o;50555:32::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50411:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56217:392::-;56290:13;56321:16;56329:7;56321;:16::i;:::-;56316:68;;56339:45;56347:36;;;56339:7;:45::i;:::-;56316:68;56439:1;56408:10;:19;56419:7;56408:19;;;;;;;;;;;56402:33;;;;;:::i;:::-;;;:38;56397:98;;56464:10;:19;56475:7;56464:19;;;;;;;;;;;56457:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56397:98;56539:1;56520:7;56514:21;;;;;:::i;:::-;;;:26;;:87;;;;;;;;;;;;;;;;;56567:7;56576:18;56586:7;56576:9;:18::i;:::-;56550:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56514:87;56507:94;;56217:392;;;;:::o;50006:39::-;50042:3;50006:39;:::o;50276:53::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28038:164::-;28135:4;28159:18;:25;28178:5;28159:25;;;;;;;;;;;;;;;:35;28185:8;28159:35;;;;;;;;;;;;;;;;;;;;;;;;;28152:42;;28038:164;;;;:::o;52913:190::-;53008:4;53031:64;53050:5;53057:4;53090:2;53073:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;53063:31;;;;;;53031:18;:64::i;:::-;53024:71;;52913:190;;;;;:::o;53131:102::-;9207:13;:11;:13::i;:::-;53221:4:::1;53203:15;;:22;;;;;;;;;;;;;;;;;;53131:102:::0;:::o;9773:201::-;9207:13;:11;:13::i;:::-;9882:1:::1;9862:22;;:8;:22;;;;9854:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9938:28;9957:8;9938:18;:28::i;:::-;9773:201:::0;:::o;28460:368::-;28525:11;28572:7;28553:15;:13;:15::i;:::-;:26;28549:272;;28610:13;;28600:7;:23;28596:214;;;28644:14;28677:60;28725:1;28694:17;:26;28712:7;28694:26;;;;;;;;;;;;28685:35;;;28684:42;28677:60;;;28728:9;;;;:::i;:::-;;;28677:60;;;28793:1;12324:8;28765:6;:24;:29;28756:38;;28625:185;28596:214;28549:272;28460:368;;;:::o;47740:165::-;47841:13;47835:4;47828:27;47882:4;47876;47869:18;42916:474;43045:13;43061:16;43069:7;43061;:16::i;:::-;43045:32;;43094:13;:45;;;;;43134:5;43111:28;;:19;:17;:19::i;:::-;:28;;;;43094:45;43090:201;;;43159:44;43176:5;43183:19;:17;:19::i;:::-;43159:16;:44::i;:::-;43154:137;;43224:51;43232:42;;;43224:7;:51::i;:::-;43154:137;43090:201;43336:2;43303:15;:24;43319:7;43303:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43374:7;43370:2;43354:28;;43363:5;43354:28;;;;;;;;;;;;43034:356;42916:474;;;:::o;56617:101::-;56682:7;56709:1;56702:8;;56617:101;:::o;22952:2000::-;23019:14;23069:7;23050:15;:13;:15::i;:::-;:26;23046:1841;;23102:17;:26;23120:7;23102:26;;;;;;;;;;;;23093:35;;23238:1;23228:6;:11;23224:1280;;;23275:13;;23264:7;:24;23260:77;;23290:47;23298:38;;;23290:7;:47::i;:::-;23260:77;23894:595;23964:17;:28;23982:9;;;;;;;23964:28;;;;;;;;;;;;23955:37;;24048:1;24038:6;:11;24034:25;;;24051:8;;24034:25;24114:1;12324:8;24086:6;:24;:29;24082:48;;;24117:13;;24082:48;24422:47;24430:38;;;24422:7;:47::i;:::-;23894:595;;;23224:1280;24859:1;12324:8;24831:6;:24;:29;24827:48;;;24862:13;;24827:48;23046:1841;24897:47;24905:38;;;24897:7;:47::i;:::-;22952:2000;;;;:::o;29697:473::-;29787:27;29816:23;29857:38;29898:15;:24;29914:7;29898:24;;;;;;;;;;;29857:65;;30075:18;30052:41;;30132:19;30126:26;30107:45;;30037:126;29697:473;;;:::o;45789:105::-;45849:7;45876:10;45869:17;;45789:105;:::o;28937:647::-;29086:11;29247:16;29240:5;29236:28;29227:37;;29403:16;29392:9;29388:32;29375:45;;29549:15;29538:9;29535:30;29527:5;29516:9;29513:20;29510:56;29500:66;;28937:647;;;;;:::o;36142:159::-;;;;;:::o;45098:311::-;45233:7;45253:16;12728:3;45279:19;:41;;45253:68;;12728:3;45347:31;45358:4;45364:2;45368:9;45347:10;:31::i;:::-;45339:40;;:62;;45332:69;;;45098:311;;;;;:::o;25500:442::-;25580:14;25744:16;25737:5;25733:28;25724:37;;25917:5;25903:11;25878:23;25874:41;25871:52;25864:5;25861:63;25851:73;;25500:442;;;;:::o;36966:158::-;;;;;:::o;9486:132::-;9561:12;:10;:12::i;:::-;9550:23;;:7;:5;:7::i;:::-;:23;;;9542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9486:132::o;8537:98::-;8590:7;8617:10;8610:17;;8537:98;:::o;41998:112::-;42075:27;42085:2;42089:8;42075:27;;;;;;;;;;;;:9;:27::i;:::-;41998:112;;:::o;37564:691::-;37727:4;37773:2;37748:45;;;37794:19;:17;:19::i;:::-;37815:4;37821:7;37830:5;37748:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37744:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38048:1;38031:6;:13;:18;38027:115;;;38070:56;38078:47;;;38070:7;:56::i;:::-;38027:115;38214:6;38208:13;38199:6;38195:2;38191:15;38184:38;37744:504;37917:54;;;37907:64;;;:6;:64;;;;37900:71;;;37564:691;;;;;;:::o;45996:1677::-;46061:17;46479:4;46472;46466:11;46462:22;46567:1;46561:4;46554:15;46638:4;46635:1;46631:12;46624:19;;46716:1;46711:3;46704:14;46816:3;47043:5;47025:412;47051:1;47025:412;;;47091:1;47086:3;47082:11;47075:18;;47254:2;47248:4;47244:13;47240:2;47236:22;47231:3;47223:36;47344:2;47338:4;47334:13;47326:21;;47407:4;47397:25;;47415:5;;47397:25;47025:412;;;47029:21;47476:3;47471;47467:13;47587:4;47582:3;47578:14;47571:21;;47648:6;47643:3;47636:19;46100:1566;;;45996:1677;;;:::o;48273:190::-;48398:4;48451;48422:25;48435:5;48442:4;48422:12;:25::i;:::-;:33;48415:40;;48273:190;;;;;:::o;10134:191::-;10208:16;10227:6;;;;;;;;;;;10208:25;;10253:8;10244:6;;:17;;;;;;;;;;;;;;;;;;10308:8;10277:40;;10298:8;10277:40;;;;;;;;;;;;10197:128;10134:191;:::o;44799:147::-;44936:6;44799:147;;;;;:::o;41258:656::-;41389:19;41395:2;41399:8;41389:5;:19::i;:::-;41460:1;41442:2;:14;;;:19;41438:462;;41478:11;41492:13;;41478:27;;41520:13;41542:8;41536:3;:14;41520:30;;41565:226;41592:62;41631:1;41635:2;41639:7;;;;;;41648:5;41592:30;:62::i;:::-;41587:168;;41679:56;41687:47;;;41679:7;:56::i;:::-;41587:168;41786:3;41778:5;:11;41565:226;;41865:3;41848:13;;:20;41844:44;;41870:18;41885:1;41878:9;;41870:7;:18::i;:::-;41844:44;41463:437;;41438:462;41258:656;;;:::o;48824:675::-;48907:7;48927:20;48950:4;48927:27;;48970:9;48965:497;48989:5;:12;48985:1;:16;48965:497;;;49023:20;49046:5;49052:1;49046:8;;;;;;;;:::i;:::-;;;;;;;;49023:31;;49089:12;49073;:28;49069:382;;49216:42;49231:12;49245;49216:14;:42::i;:::-;49201:57;;49069:382;;;49393:42;49408:12;49422;49393:14;:42::i;:::-;49378:57;;49069:382;49008:454;49003:3;;;;;:::i;:::-;;;;48965:497;;;;49479:12;49472:19;;;48824:675;;;;:::o;38717:2125::-;38790:20;38813:13;;38790:36;;38853:1;38841:8;:13;38837:53;;;38856:34;38864:25;;;38856:7;:34::i;:::-;38837:53;38903:61;38933:1;38937:2;38941:12;38955:8;38903:21;:61::i;:::-;39409:127;39442:2;39492:33;39515:1;39519:2;39523:1;39492:14;:33::i;:::-;39459:30;39480:8;39459:20;:30::i;:::-;:66;39409:18;:127::i;:::-;39375:17;:31;39393:12;39375:31;;;;;;;;;;;:161;;;;39799:1;11686:2;39769:1;:26;;39768:32;39756:8;:45;39730:18;:22;39749:2;39730:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;39904:16;13006:14;39939:2;39923:20;;:39;39904:58;;39991:1;39979:8;:13;39975:54;;;39994:35;40002:26;;;39994:7;:35::i;:::-;39975:54;40042:11;40071:8;40056:12;:23;40042:37;;40090:15;40108:12;40090:30;;40133:592;40488:7;40452:8;40415:1;40357:25;40302:1;40245;40222:306;40720:3;40707:9;;;;;;:16;;40133:592;;40753:3;40737:13;:19;;;;39148:1616;;;40774:60;40803:1;40807:2;40811:12;40825:8;40774:20;:60::i;:::-;38779:2063;38717:2125;;:::o;49507:224::-;49575:13;49638:1;49632:4;49625:15;49667:1;49661:4;49654:15;49708:4;49702;49692:21;49683:30;;49507:224;;;;:::o;26044:320::-;26114:14;26343:1;26333:8;26330:15;26304:24;26300:46;26290:56;;26044:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1513:719::-;1608:5;1633:80;1649:63;1705:6;1649:63;:::i;:::-;1633:80;:::i;:::-;1624:89;;1733:5;1762:6;1755:5;1748:21;1796:4;1789:5;1785:16;1778:23;;1822:6;1872:3;1864:4;1856:6;1852:17;1847:3;1843:27;1840:36;1837:143;;;1891:79;;:::i;:::-;1837:143;2004:1;1989:237;2014:6;2011:1;2008:13;1989:237;;;2082:3;2111:36;2143:3;2131:10;2111:36;:::i;:::-;2106:3;2099:49;2177:4;2172:3;2168:14;2161:21;;2211:4;2206:3;2202:14;2195:21;;2049:177;2036:1;2033;2029:9;2024:14;;1989:237;;;1993:14;1614:618;;1513:719;;;;;:::o;2238:410::-;2315:5;2340:65;2356:48;2397:6;2356:48;:::i;:::-;2340:65;:::i;:::-;2331:74;;2428:6;2421:5;2414:21;2466:4;2459:5;2455:16;2504:3;2495:6;2490:3;2486:16;2483:25;2480:112;;;2511:79;;:::i;:::-;2480:112;2601:41;2635:6;2630:3;2625;2601:41;:::i;:::-;2321:327;2238:410;;;;;:::o;2654:412::-;2732:5;2757:66;2773:49;2815:6;2773:49;:::i;:::-;2757:66;:::i;:::-;2748:75;;2846:6;2839:5;2832:21;2884:4;2877:5;2873:16;2922:3;2913:6;2908:3;2904:16;2901:25;2898:112;;;2929:79;;:::i;:::-;2898:112;3019:41;3053:6;3048:3;3043;3019:41;:::i;:::-;2738:328;2654:412;;;;;:::o;3072:139::-;3118:5;3156:6;3143:20;3134:29;;3172:33;3199:5;3172:33;:::i;:::-;3072:139;;;;:::o;3217:143::-;3274:5;3305:6;3299:13;3290:22;;3321:33;3348:5;3321:33;:::i;:::-;3217:143;;;;:::o;3383:370::-;3454:5;3503:3;3496:4;3488:6;3484:17;3480:27;3470:122;;3511:79;;:::i;:::-;3470:122;3628:6;3615:20;3653:94;3743:3;3735:6;3728:4;3720:6;3716:17;3653:94;:::i;:::-;3644:103;;3460:293;3383:370;;;;:::o;3776:::-;3847:5;3896:3;3889:4;3881:6;3877:17;3873:27;3863:122;;3904:79;;:::i;:::-;3863:122;4021:6;4008:20;4046:94;4136:3;4128:6;4121:4;4113:6;4109:17;4046:94;:::i;:::-;4037:103;;3853:293;3776:370;;;;:::o;4168:368::-;4238:5;4287:3;4280:4;4272:6;4268:17;4264:27;4254:122;;4295:79;;:::i;:::-;4254:122;4412:6;4399:20;4437:93;4526:3;4518:6;4511:4;4503:6;4499:17;4437:93;:::i;:::-;4428:102;;4244:292;4168:368;;;;:::o;4542:133::-;4585:5;4623:6;4610:20;4601:29;;4639:30;4663:5;4639:30;:::i;:::-;4542:133;;;;:::o;4681:139::-;4727:5;4765:6;4752:20;4743:29;;4781:33;4808:5;4781:33;:::i;:::-;4681:139;;;;:::o;4826:137::-;4871:5;4909:6;4896:20;4887:29;;4925:32;4951:5;4925:32;:::i;:::-;4826:137;;;;:::o;4969:141::-;5025:5;5056:6;5050:13;5041:22;;5072:32;5098:5;5072:32;:::i;:::-;4969:141;;;;:::o;5129:338::-;5184:5;5233:3;5226:4;5218:6;5214:17;5210:27;5200:122;;5241:79;;:::i;:::-;5200:122;5358:6;5345:20;5383:78;5457:3;5449:6;5442:4;5434:6;5430:17;5383:78;:::i;:::-;5374:87;;5190:277;5129:338;;;;:::o;5487:340::-;5543:5;5592:3;5585:4;5577:6;5573:17;5569:27;5559:122;;5600:79;;:::i;:::-;5559:122;5717:6;5704:20;5742:79;5817:3;5809:6;5802:4;5794:6;5790:17;5742:79;:::i;:::-;5733:88;;5549:278;5487:340;;;;:::o;5870:909::-;5947:5;5991:4;5979:9;5974:3;5970:19;5966:30;5963:117;;;5999:79;;:::i;:::-;5963:117;6098:21;6114:4;6098:21;:::i;:::-;6089:30;;6180:1;6220:46;6262:3;6253:6;6242:9;6238:22;6220:46;:::i;:::-;6213:4;6206:5;6202:16;6195:72;6129:149;6341:2;6382:48;6426:3;6417:6;6406:9;6402:22;6382:48;:::i;:::-;6375:4;6368:5;6364:16;6357:74;6288:154;6509:2;6550:48;6594:3;6585:6;6574:9;6570:22;6550:48;:::i;:::-;6543:4;6536:5;6532:16;6525:74;6452:158;6670:2;6711:49;6756:3;6747:6;6736:9;6732:22;6711:49;:::i;:::-;6704:4;6697:5;6693:16;6686:75;6620:152;5870:909;;;;:::o;6785:137::-;6830:5;6868:6;6855:20;6846:29;;6884:32;6910:5;6884:32;:::i;:::-;6785:137;;;;:::o;6928:139::-;6974:5;7012:6;6999:20;6990:29;;7028:33;7055:5;7028:33;:::i;:::-;6928:139;;;;:::o;7073:329::-;7132:6;7181:2;7169:9;7160:7;7156:23;7152:32;7149:119;;;7187:79;;:::i;:::-;7149:119;7307:1;7332:53;7377:7;7368:6;7357:9;7353:22;7332:53;:::i;:::-;7322:63;;7278:117;7073:329;;;;:::o;7408:351::-;7478:6;7527:2;7515:9;7506:7;7502:23;7498:32;7495:119;;;7533:79;;:::i;:::-;7495:119;7653:1;7678:64;7734:7;7725:6;7714:9;7710:22;7678:64;:::i;:::-;7668:74;;7624:128;7408:351;;;;:::o;7765:474::-;7833:6;7841;7890:2;7878:9;7869:7;7865:23;7861:32;7858:119;;;7896:79;;:::i;:::-;7858:119;8016:1;8041:53;8086:7;8077:6;8066:9;8062:22;8041:53;:::i;:::-;8031:63;;7987:117;8143:2;8169:53;8214:7;8205:6;8194:9;8190:22;8169:53;:::i;:::-;8159:63;;8114:118;7765:474;;;;;:::o;8245:619::-;8322:6;8330;8338;8387:2;8375:9;8366:7;8362:23;8358:32;8355:119;;;8393:79;;:::i;:::-;8355:119;8513:1;8538:53;8583:7;8574:6;8563:9;8559:22;8538:53;:::i;:::-;8528:63;;8484:117;8640:2;8666:53;8711:7;8702:6;8691:9;8687:22;8666:53;:::i;:::-;8656:63;;8611:118;8768:2;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8739:118;8245:619;;;;;:::o;8870:943::-;8965:6;8973;8981;8989;9038:3;9026:9;9017:7;9013:23;9009:33;9006:120;;;9045:79;;:::i;:::-;9006:120;9165:1;9190:53;9235:7;9226:6;9215:9;9211:22;9190:53;:::i;:::-;9180:63;;9136:117;9292:2;9318:53;9363:7;9354:6;9343:9;9339:22;9318:53;:::i;:::-;9308:63;;9263:118;9420:2;9446:53;9491:7;9482:6;9471:9;9467:22;9446:53;:::i;:::-;9436:63;;9391:118;9576:2;9565:9;9561:18;9548:32;9607:18;9599:6;9596:30;9593:117;;;9629:79;;:::i;:::-;9593:117;9734:62;9788:7;9779:6;9768:9;9764:22;9734:62;:::i;:::-;9724:72;;9519:287;8870:943;;;;;;;:::o;9819:468::-;9884:6;9892;9941:2;9929:9;9920:7;9916:23;9912:32;9909:119;;;9947:79;;:::i;:::-;9909:119;10067:1;10092:53;10137:7;10128:6;10117:9;10113:22;10092:53;:::i;:::-;10082:63;;10038:117;10194:2;10220:50;10262:7;10253:6;10242:9;10238:22;10220:50;:::i;:::-;10210:60;;10165:115;9819:468;;;;;:::o;10293:829::-;10395:6;10403;10411;10460:2;10448:9;10439:7;10435:23;10431:32;10428:119;;;10466:79;;:::i;:::-;10428:119;10586:1;10611:53;10656:7;10647:6;10636:9;10632:22;10611:53;:::i;:::-;10601:63;;10557:117;10713:2;10739:53;10784:7;10775:6;10764:9;10760:22;10739:53;:::i;:::-;10729:63;;10684:118;10869:2;10858:9;10854:18;10841:32;10900:18;10892:6;10889:30;10886:117;;;10922:79;;:::i;:::-;10886:117;11027:78;11097:7;11088:6;11077:9;11073:22;11027:78;:::i;:::-;11017:88;;10812:303;10293:829;;;;;:::o;11128:472::-;11195:6;11203;11252:2;11240:9;11231:7;11227:23;11223:32;11220:119;;;11258:79;;:::i;:::-;11220:119;11378:1;11403:53;11448:7;11439:6;11428:9;11424:22;11403:53;:::i;:::-;11393:63;;11349:117;11505:2;11531:52;11575:7;11566:6;11555:9;11551:22;11531:52;:::i;:::-;11521:62;;11476:117;11128:472;;;;;:::o;11606:827::-;11707:6;11715;11723;11772:2;11760:9;11751:7;11747:23;11743:32;11740:119;;;11778:79;;:::i;:::-;11740:119;11898:1;11923:53;11968:7;11959:6;11948:9;11944:22;11923:53;:::i;:::-;11913:63;;11869:117;12025:2;12051:52;12095:7;12086:6;12075:9;12071:22;12051:52;:::i;:::-;12041:62;;11996:117;12180:2;12169:9;12165:18;12152:32;12211:18;12203:6;12200:30;12197:117;;;12233:79;;:::i;:::-;12197:117;12338:78;12408:7;12399:6;12388:9;12384:22;12338:78;:::i;:::-;12328:88;;12123:303;11606:827;;;;;:::o;12439:474::-;12507:6;12515;12564:2;12552:9;12543:7;12539:23;12535:32;12532:119;;;12570:79;;:::i;:::-;12532:119;12690:1;12715:53;12760:7;12751:6;12740:9;12736:22;12715:53;:::i;:::-;12705:63;;12661:117;12817:2;12843:53;12888:7;12879:6;12868:9;12864:22;12843:53;:::i;:::-;12833:63;;12788:118;12439:474;;;;;:::o;12919:617::-;12995:6;13003;13011;13060:2;13048:9;13039:7;13035:23;13031:32;13028:119;;;13066:79;;:::i;:::-;13028:119;13186:1;13211:53;13256:7;13247:6;13236:9;13232:22;13211:53;:::i;:::-;13201:63;;13157:117;13313:2;13339:53;13384:7;13375:6;13364:9;13360:22;13339:53;:::i;:::-;13329:63;;13284:118;13441:2;13467:52;13511:7;13502:6;13491:9;13487:22;13467:52;:::i;:::-;13457:62;;13412:117;12919:617;;;;;:::o;13542:892::-;13659:6;13667;13716:2;13704:9;13695:7;13691:23;13687:32;13684:119;;;13722:79;;:::i;:::-;13684:119;13870:1;13859:9;13855:17;13842:31;13900:18;13892:6;13889:30;13886:117;;;13922:79;;:::i;:::-;13886:117;14027:78;14097:7;14088:6;14077:9;14073:22;14027:78;:::i;:::-;14017:88;;13813:302;14182:2;14171:9;14167:18;14154:32;14213:18;14205:6;14202:30;14199:117;;;14235:79;;:::i;:::-;14199:117;14340:77;14409:7;14400:6;14389:9;14385:22;14340:77;:::i;:::-;14330:87;;14125:302;13542:892;;;;;:::o;14440:323::-;14496:6;14545:2;14533:9;14524:7;14520:23;14516:32;14513:119;;;14551:79;;:::i;:::-;14513:119;14671:1;14696:50;14738:7;14729:6;14718:9;14714:22;14696:50;:::i;:::-;14686:60;;14642:114;14440:323;;;;:::o;14769:329::-;14828:6;14877:2;14865:9;14856:7;14852:23;14848:32;14845:119;;;14883:79;;:::i;:::-;14845:119;15003:1;15028:53;15073:7;15064:6;15053:9;15049:22;15028:53;:::i;:::-;15018:63;;14974:117;14769:329;;;;:::o;15104:327::-;15162:6;15211:2;15199:9;15190:7;15186:23;15182:32;15179:119;;;15217:79;;:::i;:::-;15179:119;15337:1;15362:52;15406:7;15397:6;15386:9;15382:22;15362:52;:::i;:::-;15352:62;;15308:116;15104:327;;;;:::o;15437:349::-;15506:6;15555:2;15543:9;15534:7;15530:23;15526:32;15523:119;;;15561:79;;:::i;:::-;15523:119;15681:1;15706:63;15761:7;15752:6;15741:9;15737:22;15706:63;:::i;:::-;15696:73;;15652:127;15437:349;;;;:::o;15792:509::-;15861:6;15910:2;15898:9;15889:7;15885:23;15881:32;15878:119;;;15916:79;;:::i;:::-;15878:119;16064:1;16053:9;16049:17;16036:31;16094:18;16086:6;16083:30;16080:117;;;16116:79;;:::i;:::-;16080:117;16221:63;16276:7;16267:6;16256:9;16252:22;16221:63;:::i;:::-;16211:73;;16007:287;15792:509;;;;:::o;16307:529::-;16402:6;16410;16459:3;16447:9;16438:7;16434:23;16430:33;16427:120;;;16466:79;;:::i;:::-;16427:120;16586:1;16611:52;16655:7;16646:6;16635:9;16631:22;16611:52;:::i;:::-;16601:62;;16557:116;16712:2;16738:81;16811:7;16802:6;16791:9;16787:22;16738:81;:::i;:::-;16728:91;;16683:146;16307:529;;;;;:::o;16842:329::-;16901:6;16950:2;16938:9;16929:7;16925:23;16921:32;16918:119;;;16956:79;;:::i;:::-;16918:119;17076:1;17101:53;17146:7;17137:6;17126:9;17122:22;17101:53;:::i;:::-;17091:63;;17047:117;16842:329;;;;:::o;17177:474::-;17245:6;17253;17302:2;17290:9;17281:7;17277:23;17273:32;17270:119;;;17308:79;;:::i;:::-;17270:119;17428:1;17453:53;17498:7;17489:6;17478:9;17474:22;17453:53;:::i;:::-;17443:63;;17399:117;17555:2;17581:53;17626:7;17617:6;17606:9;17602:22;17581:53;:::i;:::-;17571:63;;17526:118;17177:474;;;;;:::o;17657:654::-;17735:6;17743;17792:2;17780:9;17771:7;17767:23;17763:32;17760:119;;;17798:79;;:::i;:::-;17760:119;17918:1;17943:53;17988:7;17979:6;17968:9;17964:22;17943:53;:::i;:::-;17933:63;;17889:117;18073:2;18062:9;18058:18;18045:32;18104:18;18096:6;18093:30;18090:117;;;18126:79;;:::i;:::-;18090:117;18231:63;18286:7;18277:6;18266:9;18262:22;18231:63;:::i;:::-;18221:73;;18016:288;17657:654;;;;;:::o;18317:474::-;18385:6;18393;18442:2;18430:9;18421:7;18417:23;18413:32;18410:119;;;18448:79;;:::i;:::-;18410:119;18568:1;18593:53;18638:7;18629:6;18618:9;18614:22;18593:53;:::i;:::-;18583:63;;18539:117;18695:2;18721:53;18766:7;18757:6;18746:9;18742:22;18721:53;:::i;:::-;18711:63;;18666:118;18317:474;;;;;:::o;18797:256::-;18916:10;18951:96;19043:3;19035:6;18951:96;:::i;:::-;18937:110;;18797:256;;;;:::o;19059:108::-;19136:24;19154:5;19136:24;:::i;:::-;19131:3;19124:37;19059:108;;:::o;19173:118::-;19260:24;19278:5;19260:24;:::i;:::-;19255:3;19248:37;19173:118;;:::o;19297:157::-;19402:45;19422:24;19440:5;19422:24;:::i;:::-;19402:45;:::i;:::-;19397:3;19390:58;19297:157;;:::o;19528:1111::-;19697:3;19726:79;19799:5;19726:79;:::i;:::-;19821:111;19925:6;19920:3;19821:111;:::i;:::-;19814:118;;19958:3;20003:4;19995:6;19991:17;19986:3;19982:27;20033:81;20108:5;20033:81;:::i;:::-;20137:7;20168:1;20153:441;20178:6;20175:1;20172:13;20153:441;;;20249:9;20243:4;20239:20;20234:3;20227:33;20300:6;20294:13;20328:114;20437:4;20422:13;20328:114;:::i;:::-;20320:122;;20465:85;20543:6;20465:85;:::i;:::-;20455:95;;20579:4;20574:3;20570:14;20563:21;;20213:381;20200:1;20197;20193:9;20188:14;;20153:441;;;20157:14;20610:4;20603:11;;20630:3;20623:10;;19702:937;;;;;19528:1111;;;;:::o;20645:109::-;20726:21;20741:5;20726:21;:::i;:::-;20721:3;20714:34;20645:109;;:::o;20760:360::-;20846:3;20874:38;20906:5;20874:38;:::i;:::-;20928:70;20991:6;20986:3;20928:70;:::i;:::-;20921:77;;21007:52;21052:6;21047:3;21040:4;21033:5;21029:16;21007:52;:::i;:::-;21084:29;21106:6;21084:29;:::i;:::-;21079:3;21075:39;21068:46;;20850:270;20760:360;;;;:::o;21126:344::-;21204:3;21232:39;21265:5;21232:39;:::i;:::-;21287:61;21341:6;21336:3;21287:61;:::i;:::-;21280:68;;21357:52;21402:6;21397:3;21390:4;21383:5;21379:16;21357:52;:::i;:::-;21434:29;21456:6;21434:29;:::i;:::-;21429:3;21425:39;21418:46;;21208:262;21126:344;;;;:::o;21476:364::-;21564:3;21592:39;21625:5;21592:39;:::i;:::-;21647:71;21711:6;21706:3;21647:71;:::i;:::-;21640:78;;21727:52;21772:6;21767:3;21760:4;21753:5;21749:16;21727:52;:::i;:::-;21804:29;21826:6;21804:29;:::i;:::-;21799:3;21795:39;21788:46;;21568:272;21476:364;;;;:::o;21846:377::-;21952:3;21980:39;22013:5;21980:39;:::i;:::-;22035:89;22117:6;22112:3;22035:89;:::i;:::-;22028:96;;22133:52;22178:6;22173:3;22166:4;22159:5;22155:16;22133:52;:::i;:::-;22210:6;22205:3;22201:16;22194:23;;21956:267;21846:377;;;;:::o;22253:845::-;22356:3;22393:5;22387:12;22422:36;22448:9;22422:36;:::i;:::-;22474:89;22556:6;22551:3;22474:89;:::i;:::-;22467:96;;22594:1;22583:9;22579:17;22610:1;22605:137;;;;22756:1;22751:341;;;;22572:520;;22605:137;22689:4;22685:9;22674;22670:25;22665:3;22658:38;22725:6;22720:3;22716:16;22709:23;;22605:137;;22751:341;22818:38;22850:5;22818:38;:::i;:::-;22878:1;22892:154;22906:6;22903:1;22900:13;22892:154;;;22980:7;22974:14;22970:1;22965:3;22961:11;22954:35;23030:1;23021:7;23017:15;23006:26;;22928:4;22925:1;22921:12;22916:17;;22892:154;;;23075:6;23070:3;23066:16;23059:23;;22758:334;;22572:520;;22360:738;;22253:845;;;;:::o;23104:366::-;23246:3;23267:67;23331:2;23326:3;23267:67;:::i;:::-;23260:74;;23343:93;23432:3;23343:93;:::i;:::-;23461:2;23456:3;23452:12;23445:19;;23104:366;;;:::o;23476:::-;23618:3;23639:67;23703:2;23698:3;23639:67;:::i;:::-;23632:74;;23715:93;23804:3;23715:93;:::i;:::-;23833:2;23828:3;23824:12;23817:19;;23476:366;;;:::o;23848:::-;23990:3;24011:67;24075:2;24070:3;24011:67;:::i;:::-;24004:74;;24087:93;24176:3;24087:93;:::i;:::-;24205:2;24200:3;24196:12;24189:19;;23848:366;;;:::o;24220:::-;24362:3;24383:67;24447:2;24442:3;24383:67;:::i;:::-;24376:74;;24459:93;24548:3;24459:93;:::i;:::-;24577:2;24572:3;24568:12;24561:19;;24220:366;;;:::o;24592:::-;24734:3;24755:67;24819:2;24814:3;24755:67;:::i;:::-;24748:74;;24831:93;24920:3;24831:93;:::i;:::-;24949:2;24944:3;24940:12;24933:19;;24592:366;;;:::o;24964:::-;25106:3;25127:67;25191:2;25186:3;25127:67;:::i;:::-;25120:74;;25203:93;25292:3;25203:93;:::i;:::-;25321:2;25316:3;25312:12;25305:19;;24964:366;;;:::o;25336:::-;25478:3;25499:67;25563:2;25558:3;25499:67;:::i;:::-;25492:74;;25575:93;25664:3;25575:93;:::i;:::-;25693:2;25688:3;25684:12;25677:19;;25336:366;;;:::o;25708:::-;25850:3;25871:67;25935:2;25930:3;25871:67;:::i;:::-;25864:74;;25947:93;26036:3;25947:93;:::i;:::-;26065:2;26060:3;26056:12;26049:19;;25708:366;;;:::o;26080:::-;26222:3;26243:67;26307:2;26302:3;26243:67;:::i;:::-;26236:74;;26319:93;26408:3;26319:93;:::i;:::-;26437:2;26432:3;26428:12;26421:19;;26080:366;;;:::o;26452:::-;26594:3;26615:67;26679:2;26674:3;26615:67;:::i;:::-;26608:74;;26691:93;26780:3;26691:93;:::i;:::-;26809:2;26804:3;26800:12;26793:19;;26452:366;;;:::o;26824:::-;26966:3;26987:67;27051:2;27046:3;26987:67;:::i;:::-;26980:74;;27063:93;27152:3;27063:93;:::i;:::-;27181:2;27176:3;27172:12;27165:19;;26824:366;;;:::o;27196:::-;27338:3;27359:67;27423:2;27418:3;27359:67;:::i;:::-;27352:74;;27435:93;27524:3;27435:93;:::i;:::-;27553:2;27548:3;27544:12;27537:19;;27196:366;;;:::o;27568:::-;27710:3;27731:67;27795:2;27790:3;27731:67;:::i;:::-;27724:74;;27807:93;27896:3;27807:93;:::i;:::-;27925:2;27920:3;27916:12;27909:19;;27568:366;;;:::o;27940:::-;28082:3;28103:67;28167:2;28162:3;28103:67;:::i;:::-;28096:74;;28179:93;28268:3;28179:93;:::i;:::-;28297:2;28292:3;28288:12;28281:19;;27940:366;;;:::o;28312:::-;28454:3;28475:67;28539:2;28534:3;28475:67;:::i;:::-;28468:74;;28551:93;28640:3;28551:93;:::i;:::-;28669:2;28664:3;28660:12;28653:19;;28312:366;;;:::o;28684:::-;28826:3;28847:67;28911:2;28906:3;28847:67;:::i;:::-;28840:74;;28923:93;29012:3;28923:93;:::i;:::-;29041:2;29036:3;29032:12;29025:19;;28684:366;;;:::o;29056:::-;29198:3;29219:67;29283:2;29278:3;29219:67;:::i;:::-;29212:74;;29295:93;29384:3;29295:93;:::i;:::-;29413:2;29408:3;29404:12;29397:19;;29056:366;;;:::o;29428:365::-;29570:3;29591:66;29655:1;29650:3;29591:66;:::i;:::-;29584:73;;29666:93;29755:3;29666:93;:::i;:::-;29784:2;29779:3;29775:12;29768:19;;29428:365;;;:::o;29799:366::-;29941:3;29962:67;30026:2;30021:3;29962:67;:::i;:::-;29955:74;;30038:93;30127:3;30038:93;:::i;:::-;30156:2;30151:3;30147:12;30140:19;;29799:366;;;:::o;30235:599::-;30344:3;30380:4;30375:3;30371:14;30467:4;30460:5;30456:16;30450:23;30486:63;30543:4;30538:3;30534:14;30520:12;30486:63;:::i;:::-;30395:164;30644:4;30637:5;30633:16;30627:23;30697:3;30691:4;30687:14;30680:4;30675:3;30671:14;30664:38;30723:73;30791:4;30777:12;30723:73;:::i;:::-;30715:81;;30569:238;30824:4;30817:11;;30349:485;30235:599;;;;:::o;30840:115::-;30925:23;30942:5;30925:23;:::i;:::-;30920:3;30913:36;30840:115;;:::o;30961:118::-;31048:24;31066:5;31048:24;:::i;:::-;31043:3;31036:37;30961:118;;:::o;31085:256::-;31197:3;31212:75;31283:3;31274:6;31212:75;:::i;:::-;31312:2;31307:3;31303:12;31296:19;;31332:3;31325:10;;31085:256;;;;:::o;31347:429::-;31524:3;31546:92;31634:3;31625:6;31546:92;:::i;:::-;31539:99;;31655:95;31746:3;31737:6;31655:95;:::i;:::-;31648:102;;31767:3;31760:10;;31347:429;;;;;:::o;31782:222::-;31875:4;31913:2;31902:9;31898:18;31890:26;;31926:71;31994:1;31983:9;31979:17;31970:6;31926:71;:::i;:::-;31782:222;;;;:::o;32010:640::-;32205:4;32243:3;32232:9;32228:19;32220:27;;32257:71;32325:1;32314:9;32310:17;32301:6;32257:71;:::i;:::-;32338:72;32406:2;32395:9;32391:18;32382:6;32338:72;:::i;:::-;32420;32488:2;32477:9;32473:18;32464:6;32420:72;:::i;:::-;32539:9;32533:4;32529:20;32524:2;32513:9;32509:18;32502:48;32567:76;32638:4;32629:6;32567:76;:::i;:::-;32559:84;;32010:640;;;;;;;:::o;32656:423::-;32797:4;32835:2;32824:9;32820:18;32812:26;;32848:71;32916:1;32905:9;32901:17;32892:6;32848:71;:::i;:::-;32966:9;32960:4;32956:20;32951:2;32940:9;32936:18;32929:48;32994:78;33067:4;33058:6;32994:78;:::i;:::-;32986:86;;32656:423;;;;;:::o;33085:473::-;33278:4;33316:2;33305:9;33301:18;33293:26;;33365:9;33359:4;33355:20;33351:1;33340:9;33336:17;33329:47;33393:158;33546:4;33537:6;33393:158;:::i;:::-;33385:166;;33085:473;;;;:::o;33564:210::-;33651:4;33689:2;33678:9;33674:18;33666:26;;33702:65;33764:1;33753:9;33749:17;33740:6;33702:65;:::i;:::-;33564:210;;;;:::o;33780:533::-;33947:4;33985:3;33974:9;33970:19;33962:27;;33999:65;34061:1;34050:9;34046:17;34037:6;33999:65;:::i;:::-;34074:70;34140:2;34129:9;34125:18;34116:6;34074:70;:::i;:::-;34154;34220:2;34209:9;34205:18;34196:6;34154:70;:::i;:::-;34234:72;34302:2;34291:9;34287:18;34278:6;34234:72;:::i;:::-;33780:533;;;;;;;:::o;34319:313::-;34432:4;34470:2;34459:9;34455:18;34447:26;;34519:9;34513:4;34509:20;34505:1;34494:9;34490:17;34483:47;34547:78;34620:4;34611:6;34547:78;:::i;:::-;34539:86;;34319:313;;;;:::o;34638:419::-;34804:4;34842:2;34831:9;34827:18;34819:26;;34891:9;34885:4;34881:20;34877:1;34866:9;34862:17;34855:47;34919:131;35045:4;34919:131;:::i;:::-;34911:139;;34638:419;;;:::o;35063:::-;35229:4;35267:2;35256:9;35252:18;35244:26;;35316:9;35310:4;35306:20;35302:1;35291:9;35287:17;35280:47;35344:131;35470:4;35344:131;:::i;:::-;35336:139;;35063:419;;;:::o;35488:::-;35654:4;35692:2;35681:9;35677:18;35669:26;;35741:9;35735:4;35731:20;35727:1;35716:9;35712:17;35705:47;35769:131;35895:4;35769:131;:::i;:::-;35761:139;;35488:419;;;:::o;35913:::-;36079:4;36117:2;36106:9;36102:18;36094:26;;36166:9;36160:4;36156:20;36152:1;36141:9;36137:17;36130:47;36194:131;36320:4;36194:131;:::i;:::-;36186:139;;35913:419;;;:::o;36338:::-;36504:4;36542:2;36531:9;36527:18;36519:26;;36591:9;36585:4;36581:20;36577:1;36566:9;36562:17;36555:47;36619:131;36745:4;36619:131;:::i;:::-;36611:139;;36338:419;;;:::o;36763:::-;36929:4;36967:2;36956:9;36952:18;36944:26;;37016:9;37010:4;37006:20;37002:1;36991:9;36987:17;36980:47;37044:131;37170:4;37044:131;:::i;:::-;37036:139;;36763:419;;;:::o;37188:::-;37354:4;37392:2;37381:9;37377:18;37369:26;;37441:9;37435:4;37431:20;37427:1;37416:9;37412:17;37405:47;37469:131;37595:4;37469:131;:::i;:::-;37461:139;;37188:419;;;:::o;37613:::-;37779:4;37817:2;37806:9;37802:18;37794:26;;37866:9;37860:4;37856:20;37852:1;37841:9;37837:17;37830:47;37894:131;38020:4;37894:131;:::i;:::-;37886:139;;37613:419;;;:::o;38038:::-;38204:4;38242:2;38231:9;38227:18;38219:26;;38291:9;38285:4;38281:20;38277:1;38266:9;38262:17;38255:47;38319:131;38445:4;38319:131;:::i;:::-;38311:139;;38038:419;;;:::o;38463:::-;38629:4;38667:2;38656:9;38652:18;38644:26;;38716:9;38710:4;38706:20;38702:1;38691:9;38687:17;38680:47;38744:131;38870:4;38744:131;:::i;:::-;38736:139;;38463:419;;;:::o;38888:::-;39054:4;39092:2;39081:9;39077:18;39069:26;;39141:9;39135:4;39131:20;39127:1;39116:9;39112:17;39105:47;39169:131;39295:4;39169:131;:::i;:::-;39161:139;;38888:419;;;:::o;39313:::-;39479:4;39517:2;39506:9;39502:18;39494:26;;39566:9;39560:4;39556:20;39552:1;39541:9;39537:17;39530:47;39594:131;39720:4;39594:131;:::i;:::-;39586:139;;39313:419;;;:::o;39738:::-;39904:4;39942:2;39931:9;39927:18;39919:26;;39991:9;39985:4;39981:20;39977:1;39966:9;39962:17;39955:47;40019:131;40145:4;40019:131;:::i;:::-;40011:139;;39738:419;;;:::o;40163:::-;40329:4;40367:2;40356:9;40352:18;40344:26;;40416:9;40410:4;40406:20;40402:1;40391:9;40387:17;40380:47;40444:131;40570:4;40444:131;:::i;:::-;40436:139;;40163:419;;;:::o;40588:::-;40754:4;40792:2;40781:9;40777:18;40769:26;;40841:9;40835:4;40831:20;40827:1;40816:9;40812:17;40805:47;40869:131;40995:4;40869:131;:::i;:::-;40861:139;;40588:419;;;:::o;41013:::-;41179:4;41217:2;41206:9;41202:18;41194:26;;41266:9;41260:4;41256:20;41252:1;41241:9;41237:17;41230:47;41294:131;41420:4;41294:131;:::i;:::-;41286:139;;41013:419;;;:::o;41438:::-;41604:4;41642:2;41631:9;41627:18;41619:26;;41691:9;41685:4;41681:20;41677:1;41666:9;41662:17;41655:47;41719:131;41845:4;41719:131;:::i;:::-;41711:139;;41438:419;;;:::o;41863:::-;42029:4;42067:2;42056:9;42052:18;42044:26;;42116:9;42110:4;42106:20;42102:1;42091:9;42087:17;42080:47;42144:131;42270:4;42144:131;:::i;:::-;42136:139;;41863:419;;;:::o;42288:::-;42454:4;42492:2;42481:9;42477:18;42469:26;;42541:9;42535:4;42531:20;42527:1;42516:9;42512:17;42505:47;42569:131;42695:4;42569:131;:::i;:::-;42561:139;;42288:419;;;:::o;42713:222::-;42806:4;42844:2;42833:9;42829:18;42821:26;;42857:71;42925:1;42914:9;42910:17;42901:6;42857:71;:::i;:::-;42713:222;;;;:::o;42941:129::-;42975:6;43002:20;;:::i;:::-;42992:30;;43031:33;43059:4;43051:6;43031:33;:::i;:::-;42941:129;;;:::o;43076:75::-;43109:6;43142:2;43136:9;43126:19;;43076:75;:::o;43157:311::-;43234:4;43324:18;43316:6;43313:30;43310:56;;;43346:18;;:::i;:::-;43310:56;43396:4;43388:6;43384:17;43376:25;;43456:4;43450;43446:15;43438:23;;43157:311;;;:::o;43474:::-;43551:4;43641:18;43633:6;43630:30;43627:56;;;43663:18;;:::i;:::-;43627:56;43713:4;43705:6;43701:17;43693:25;;43773:4;43767;43763:15;43755:23;;43474:311;;;:::o;43791:310::-;43867:4;43957:18;43949:6;43946:30;43943:56;;;43979:18;;:::i;:::-;43943:56;44029:4;44021:6;44017:17;44009:25;;44089:4;44083;44079:15;44071:23;;43791:310;;;:::o;44107:307::-;44168:4;44258:18;44250:6;44247:30;44244:56;;;44280:18;;:::i;:::-;44244:56;44318:29;44340:6;44318:29;:::i;:::-;44310:37;;44402:4;44396;44392:15;44384:23;;44107:307;;;:::o;44420:308::-;44482:4;44572:18;44564:6;44561:30;44558:56;;;44594:18;;:::i;:::-;44558:56;44632:29;44654:6;44632:29;:::i;:::-;44624:37;;44716:4;44710;44706:15;44698:23;;44420:308;;;:::o;44734:157::-;44826:4;44849:3;44841:11;;44879:4;44874:3;44870:14;44862:22;;44734:157;;;:::o;44897:141::-;44946:4;44969:3;44961:11;;44992:3;44989:1;44982:14;45026:4;45023:1;45013:18;45005:26;;44897:141;;;:::o;45044:139::-;45136:6;45170:5;45164:12;45154:22;;45044:139;;;:::o;45189:98::-;45240:6;45274:5;45268:12;45258:22;;45189:98;;;:::o;45293:99::-;45345:6;45379:5;45373:12;45363:22;;45293:99;;;:::o;45398:138::-;45493:4;45525;45520:3;45516:14;45508:22;;45398:138;;;:::o;45542:209::-;45666:11;45700:6;45695:3;45688:19;45740:4;45735:3;45731:14;45716:29;;45542:209;;;;:::o;45757:168::-;45840:11;45874:6;45869:3;45862:19;45914:4;45909:3;45905:14;45890:29;;45757:168;;;;:::o;45931:159::-;46005:11;46039:6;46034:3;46027:19;46079:4;46074:3;46070:14;46055:29;;45931:159;;;;:::o;46096:169::-;46180:11;46214:6;46209:3;46202:19;46254:4;46249:3;46245:14;46230:29;;46096:169;;;;:::o;46271:148::-;46373:11;46410:3;46395:18;;46271:148;;;;:::o;46425:305::-;46465:3;46484:20;46502:1;46484:20;:::i;:::-;46479:25;;46518:20;46536:1;46518:20;:::i;:::-;46513:25;;46672:1;46604:66;46600:74;46597:1;46594:81;46591:107;;;46678:18;;:::i;:::-;46591:107;46722:1;46719;46715:9;46708:16;;46425:305;;;;:::o;46736:96::-;46773:7;46802:24;46820:5;46802:24;:::i;:::-;46791:35;;46736:96;;;:::o;46838:90::-;46872:7;46915:5;46908:13;46901:21;46890:32;;46838:90;;;:::o;46934:77::-;46971:7;47000:5;46989:16;;46934:77;;;:::o;47017:149::-;47053:7;47093:66;47086:5;47082:78;47071:89;;47017:149;;;:::o;47172:89::-;47208:7;47248:6;47241:5;47237:18;47226:29;;47172:89;;;:::o;47267:126::-;47304:7;47344:42;47337:5;47333:54;47322:65;;47267:126;;;:::o;47399:77::-;47436:7;47465:5;47454:16;;47399:77;;;:::o;47482:154::-;47566:6;47561:3;47556;47543:30;47628:1;47619:6;47614:3;47610:16;47603:27;47482:154;;;:::o;47642:307::-;47710:1;47720:113;47734:6;47731:1;47728:13;47720:113;;;47819:1;47814:3;47810:11;47804:18;47800:1;47795:3;47791:11;47784:39;47756:2;47753:1;47749:10;47744:15;;47720:113;;;47851:6;47848:1;47845:13;47842:101;;;47931:1;47922:6;47917:3;47913:16;47906:27;47842:101;47691:258;47642:307;;;:::o;47955:171::-;47994:3;48017:24;48035:5;48017:24;:::i;:::-;48008:33;;48063:4;48056:5;48053:15;48050:41;;;48071:18;;:::i;:::-;48050:41;48118:1;48111:5;48107:13;48100:20;;47955:171;;;:::o;48132:320::-;48176:6;48213:1;48207:4;48203:12;48193:22;;48260:1;48254:4;48250:12;48281:18;48271:81;;48337:4;48329:6;48325:17;48315:27;;48271:81;48399:2;48391:6;48388:14;48368:18;48365:38;48362:84;;;48418:18;;:::i;:::-;48362:84;48183:269;48132:320;;;:::o;48458:281::-;48541:27;48563:4;48541:27;:::i;:::-;48533:6;48529:40;48671:6;48659:10;48656:22;48635:18;48623:10;48620:34;48617:62;48614:88;;;48682:18;;:::i;:::-;48614:88;48722:10;48718:2;48711:22;48501:238;48458:281;;:::o;48745:233::-;48784:3;48807:24;48825:5;48807:24;:::i;:::-;48798:33;;48853:66;48846:5;48843:77;48840:103;;;48923:18;;:::i;:::-;48840:103;48970:1;48963:5;48959:13;48952:20;;48745:233;;;:::o;48984:100::-;49023:7;49052:26;49072:5;49052:26;:::i;:::-;49041:37;;48984:100;;;:::o;49090:94::-;49129:7;49158:20;49172:5;49158:20;:::i;:::-;49147:31;;49090:94;;;:::o;49190:180::-;49238:77;49235:1;49228:88;49335:4;49332:1;49325:15;49359:4;49356:1;49349:15;49376:180;49424:77;49421:1;49414:88;49521:4;49518:1;49511:15;49545:4;49542:1;49535:15;49562:180;49610:77;49607:1;49600:88;49707:4;49704:1;49697:15;49731:4;49728:1;49721:15;49748:180;49796:77;49793:1;49786:88;49893:4;49890:1;49883:15;49917:4;49914:1;49907:15;49934:117;50043:1;50040;50033:12;50057:117;50166:1;50163;50156:12;50303:117;50412:1;50409;50402:12;50426:117;50535:1;50532;50525:12;50549:117;50658:1;50655;50648:12;50672:117;50781:1;50778;50771:12;50795:102;50836:6;50887:2;50883:7;50878:2;50871:5;50867:14;50863:28;50853:38;;50795:102;;;:::o;50903:94::-;50936:8;50984:5;50980:2;50976:14;50955:35;;50903:94;;;:::o;51003:225::-;51143:34;51139:1;51131:6;51127:14;51120:58;51212:8;51207:2;51199:6;51195:15;51188:33;51003:225;:::o;51234:170::-;51374:22;51370:1;51362:6;51358:14;51351:46;51234:170;:::o;51410:169::-;51550:21;51546:1;51538:6;51534:14;51527:45;51410:169;:::o;51585:174::-;51725:26;51721:1;51713:6;51709:14;51702:50;51585:174;:::o;51765:::-;51905:26;51901:1;51893:6;51889:14;51882:50;51765:174;:::o;51945:162::-;52085:14;52081:1;52073:6;52069:14;52062:38;51945:162;:::o;52113:168::-;52253:20;52249:1;52241:6;52237:14;52230:44;52113:168;:::o;52287:181::-;52427:33;52423:1;52415:6;52411:14;52404:57;52287:181;:::o;52474:166::-;52614:18;52610:1;52602:6;52598:14;52591:42;52474:166;:::o;52646:182::-;52786:34;52782:1;52774:6;52770:14;52763:58;52646:182;:::o;52834:165::-;52974:17;52970:1;52962:6;52958:14;52951:41;52834:165;:::o;53005:182::-;53145:34;53141:1;53133:6;53129:14;53122:58;53005:182;:::o;53193:179::-;53333:31;53329:1;53321:6;53317:14;53310:55;53193:179;:::o;53378:168::-;53518:20;53514:1;53506:6;53502:14;53495:44;53378:168;:::o;53552:169::-;53692:21;53688:1;53680:6;53676:14;53669:45;53552:169;:::o;53727:170::-;53867:22;53863:1;53855:6;53851:14;53844:46;53727:170;:::o;53903:::-;54043:22;54039:1;54031:6;54027:14;54020:46;53903:170;:::o;54079:159::-;54219:11;54215:1;54207:6;54203:14;54196:35;54079:159;:::o;54244:173::-;54384:25;54380:1;54372:6;54368:14;54361:49;54244:173;:::o;54423:122::-;54496:24;54514:5;54496:24;:::i;:::-;54489:5;54486:35;54476:63;;54535:1;54532;54525:12;54476:63;54423:122;:::o;54551:116::-;54621:21;54636:5;54621:21;:::i;:::-;54614:5;54611:32;54601:60;;54657:1;54654;54647:12;54601:60;54551:116;:::o;54673:122::-;54746:24;54764:5;54746:24;:::i;:::-;54739:5;54736:35;54726:63;;54785:1;54782;54775:12;54726:63;54673:122;:::o;54801:120::-;54873:23;54890:5;54873:23;:::i;:::-;54866:5;54863:34;54853:62;;54911:1;54908;54901:12;54853:62;54801:120;:::o;54927:::-;54999:23;55016:5;54999:23;:::i;:::-;54992:5;54989:34;54979:62;;55037:1;55034;55027:12;54979:62;54927:120;:::o;55053:122::-;55126:24;55144:5;55126:24;:::i;:::-;55119:5;55116:35;55106:63;;55165:1;55162;55155:12;55106:63;55053:122;:::o

Swarm Source

ipfs://7216314de062421fad5a11a6fa6481d2862cfdeb2d7f15d552acefbce95e129b
Loading...
Loading
Loading...
Loading
[ 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.