ETH Price: $2,407.36 (-0.37%)

Token

BlockBeards (BB)
 

Overview

Max Total Supply

49 BB

Holders

17

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
gmi0x.eth
Balance
4 BB
0xa9ffa6b04565e9ef06271ae636cecf466d637201
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BlockBeards is a multilevel NFT collection inspired by classic TCG Games. Season 1: Free the BlockBeards. Build your collection of Level 1,2,3 BlockBeards and summon the ultra rare Elder.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BBL1

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-03
*/

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


// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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
    ) external;

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/BBL1.sol


pragma solidity ^0.8.0;



contract BBL1 is ERC721Enumerable, Ownable {

//BB Variables
  using Strings for uint256;
  uint256 public cost = 0.04 ether;
  uint16 public cmMaxSupply = 9261;
  uint16 public cmCount; 
  uint16 private maxLB = 1900;
  uint16 private maxSB = 1850;
  uint16 private maxCB = 1876;
  uint16 private maxSTB = 1798;
  uint16 private maxMB = 1837;
  uint16 public pLmt = 500;
  uint8 private cmBeardTypeCount = 5;
  mapping(uint8 => uint8) private cmBeardTypeStatus;
  mapping(uint8 => uint16) private countByBt;
  mapping(uint16 => Bb) public tokenIDToBB;
  string private baseURIL1;
  string private baseURIL2;
  string private baseURIL3;
  string private baseURIL4;
  string private baseURILx;
  string private notRevealedURI;
  address private cbContractAddress;
  address private ccContractAddress;
  address private ceContractAddress;
  address private cxContractAddress;
  bool private revealed = false;
  bool private cmEnabled = false; 
  bool private preSale = true;
 
  event mintSuccessful(address indexed usr, uint16 cnt, uint8 indexed bt, uint8 indexed lvl);
  
  struct Bb {
    uint16 dna;
    uint8 bearedType;
    uint8 level;
  }

  constructor(string memory _name, string memory _symbol, string memory _initBaseURIL1, string memory _notRevealedURI) ERC721(_name, _symbol) {
    setBaseURIL1(_initBaseURIL1);
    setNotRevealedURL(_notRevealedURI);
    _fillBeardStatusM();
    }

    function _fillBeardStatusM() private {
        cmBeardTypeStatus[0] = 0;
        cmBeardTypeStatus[1] = 1;
        cmBeardTypeStatus[2] = 2;
        cmBeardTypeStatus[3] = 3;
        cmBeardTypeStatus[4] = 4;
    }
 //Random generation of BB
    function _createRandomNum(uint8 _mod) private view returns(uint256){
        uint256 randomNum = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender, block.coinbase, block.difficulty, block.gaslimit, totalSupply() )));
        return randomNum % _mod;
    }
 
    function _removeBeardTypeM(uint8 _position) private {
        for (uint8 i=_position; i<cmBeardTypeCount; i++) {
            cmBeardTypeStatus[i] = cmBeardTypeStatus[i + 1];
        }
        cmBeardTypeCount -=1;
    }

    function _checkIfZeroM(uint8 _bT) private returns(bool) {
        if (_bT == 0) {maxLB-=1;
            if(maxLB == 0) {return false;}
        } else
        if (_bT == 1) {maxSB-=1;
            if(maxSB == 0) {return false;}
        } else
        if (_bT == 2) {maxCB-=1;
            if(maxCB == 0) {return false;}
        } else
        if (_bT == 3) {maxSTB-=1;
            if(maxSTB == 0) {return false;}
        } else
        if (_bT == 4) {maxMB-=1;
            if(maxMB == 0) {return false;}
        }
        return true;
    }
//Mint function
    function _createRandomClansMen(address _to, uint8 _mintAmount) private {
        require(cmEnabled, "Minting off");
        require(_mintAmount > 0, "invalid amount");
        require(_mintAmount <= 5, "max 5");
        require(cmCount + _mintAmount <= cmMaxSupply, "Max reached");
        if(_to != owner()) {
            if(preSale) {
                require(pLmt > 0, " Pre-Sale limit not set");
                require(cmCount + _mintAmount <= pLmt, "pre-sale max reached"); 
                uint ownerTokenBalance = balanceOf(_to);
                require(ownerTokenBalance + _mintAmount <= 5, "5 mints per person during pre-sale");
            }
            require(msg.value >= cost * _mintAmount);
        }
        for (uint256 i = 1; i <= _mintAmount; i++) {
            uint8 _randomBeardPosition = uint8(_createRandomNum(cmBeardTypeCount)); 
            uint8 _rbt = cmBeardTypeStatus[_randomBeardPosition];
            _safeMint(_to, totalSupply() + 1);
            cmCount+=1;
            uint16 _countByType = countByBt[_rbt];
            _countByType+=1;
            tokenIDToBB[uint16(totalSupply())] = Bb({dna: _countByType, bearedType: _rbt , level: 1});
            emit mintSuccessful(_to,_countByType,_rbt,1);
            countByBt[_rbt] = _countByType;
            if (!_checkIfZeroM(_rbt)) {
                _removeBeardTypeM(_randomBeardPosition);
            }
        }
    }
      
    function mintRandomClansMen(uint8 _mintAmount) public payable {
        _createRandomClansMen(msg.sender, _mintAmount);
    }
    
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI;
        uint8 _level = tokenIDToBB[uint16(_tokenId)].level;
        if (!revealed) {
            return notRevealedURI;  
        }    
        if (_level == 1) {
            currentBaseURI = baseURIL1;
        } else
        if (_level == 2) {
            currentBaseURI = baseURIL2;
        } else
        if (_level == 3 ) {
            currentBaseURI = baseURIL3;
        } else
        if (_level == 4 ) {
            currentBaseURI = baseURIL4;
        } else
        {
            currentBaseURI = baseURILx;
        }
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, uint256(tokenIDToBB[uint16(_tokenId)].bearedType).toString(), uint256(tokenIDToBB[uint16(_tokenId)].dna).toString(), ".json"))
            : "";
    }

 // Setters...... 

    function setPreSale(bool _setPreSale) public onlyOwner {
            preSale = _setPreSale;
    }

    function setRevealed() public onlyOwner {
            revealed = true;
    }
    function setNotRevealedURL(string memory _notRevealedURI) public onlyOwner {
        notRevealedURI = _notRevealedURI;
    }
    
    function setBaseURIL1(string memory _initialBaseURI) public onlyOwner {
        baseURIL1 = _initialBaseURI;
    }
    
    function setBaseURIL2(string memory _initialBaseURI) public onlyOwner {
        baseURIL2 = _initialBaseURI;
    }
    
    function setBaseURIL3(string memory _initialBaseURI) public onlyOwner {
        baseURIL3 = _initialBaseURI;
    }
    
    function setBaseURIL4(string memory _initialBaseURI) public onlyOwner {
        baseURIL3 = _initialBaseURI;
    }
    
    function setBaseURILx(string memory _initialBaseURI) public onlyOwner {
        baseURILx = _initialBaseURI;
    }

    function setMaxBTypeClansM(uint16 _maxLongBSupply, uint16 _maxShortBSupply, uint16 _maxCurlyBSupply, uint16 _maxSpikeBSupply, uint16 _maxMushBSupply) public onlyOwner {
        _fillBeardStatusM();
        cmBeardTypeCount = 5;
        maxLB = _maxLongBSupply;
        maxSB = _maxShortBSupply;
        maxCB = _maxCurlyBSupply;
        maxSTB = _maxSpikeBSupply;
        maxMB = _maxMushBSupply;
    }
      
    function mintingStatus(bool _status) public onlyOwner {
            cmEnabled = _status;
    }

    function setFee(uint64 baseCost) public onlyOwner {
        cost = baseCost;
    }
    
    function setCBContractAddress(address _cbContractAddress) public onlyOwner {
        cbContractAddress = _cbContractAddress;
    }
    
    function setCCContractAddress(address _ccContractAddress) public onlyOwner {
        ccContractAddress = _ccContractAddress;
    }
    
    function setCEContractAddress(address _ceContractAddress) public onlyOwner {
        ceContractAddress = _ceContractAddress;
    }
    
    function setCXContractAddress(address _cxContractAddress) public onlyOwner {
        cxContractAddress = _cxContractAddress;
    }
    
    function setpLmt(uint16 _pLmt) public onlyOwner {
        pLmt = _pLmt;
    }
    
    
 // Getters.....
    function getcmBeardDistribution() public view onlyOwner returns(uint,uint,uint,uint,uint) {
        return (maxLB,maxSB,maxCB,maxSTB,maxMB);
    }
    
    function getCBContractAddress()public view onlyOwner returns(address) {
        return cbContractAddress;
    }
    
    function getCCContractAddress()public view onlyOwner returns(address) {
        return ccContractAddress;
    }
    
    function getCEContractAddress()public view onlyOwner returns(address) {
        return ceContractAddress;
    }
    
    function getCXContractAddress()public view onlyOwner returns(address) {
        return cxContractAddress;
    }
    //frontend getter
    function getOwnerBB(address _owner) external view returns (Bb[] memory) {
        uint16 _ownerB = uint16(balanceOf(_owner));
        Bb[] memory ownerBB = new Bb[](_ownerB);
        for (uint16 i=0; i<_ownerB; i++) {
            uint16 _tokenId = uint16(tokenOfOwnerByIndex(_owner, i));
            ownerBB[i] = tokenIDToBB[_tokenId];
        }
        return ownerBB;
    }
     //Interface functions
    function getOwnerBBTokenIDs(address _owner) external view returns (uint16[] memory) {
        uint16 _ownerB = uint16(balanceOf(_owner));
        uint16[] memory ownerTokenIDs = new uint16[](_ownerB);
        for (uint16 i=0; i<_ownerB; i++) {
            ownerTokenIDs[i] = uint16(tokenOfOwnerByIndex(_owner, i));
        }
        return ownerTokenIDs;
    }
    
    function getOwnerBBDetails(uint16 _tokenId) external view returns (uint8, uint8) {
        return (tokenIDToBB[_tokenId].bearedType, tokenIDToBB[_tokenId].level);
    }

    function mintARandomL2(address _to, uint8 _bt, uint16 _count) external returns(uint16) {
        require(msg.sender == cbContractAddress, "BB Contracts Only");
        _safeMint(_to, totalSupply() + 1);
        tokenIDToBB[uint16(totalSupply())] = Bb({dna: _count, bearedType: _bt, level: 2});
        return uint16(totalSupply());
    }
    
    function mintARandomL3(address _to, uint8 _bt, uint16 _count) external returns(uint16) {
        require(msg.sender == ccContractAddress, "BB Contracts Only");
        _safeMint(_to, totalSupply() + 1);
        tokenIDToBB[uint16(totalSupply())] = Bb({dna:_count, bearedType: _bt, level: 3});
        return uint16(totalSupply());
    }
    
    function mintARandomL4(address _to, uint8 _bt, uint16 _count) external returns(uint16) {
        require(msg.sender == ceContractAddress, "BB Contracts Only");
        _safeMint(_to, totalSupply() + 1);
        tokenIDToBB[uint16(totalSupply())] = Bb({dna:_count, bearedType: _bt, level: 4});
        return uint16(totalSupply());
    }
    
    function mintARandomLx(address _to, uint8 _bt, uint16 _count, uint8 _level) external returns(uint16) {
        require(msg.sender == cxContractAddress, "BB Contracts Only");
        _safeMint(_to, totalSupply() + 1);
        tokenIDToBB[uint16(totalSupply())] = Bb({dna:_count, bearedType: _bt, level: _level});
        return uint16(totalSupply());
    }
 
    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURIL1","type":"string"},{"internalType":"string","name":"_notRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"usr","type":"address"},{"indexed":false,"internalType":"uint16","name":"cnt","type":"uint16"},{"indexed":true,"internalType":"uint8","name":"bt","type":"uint8"},{"indexed":true,"internalType":"uint8","name":"lvl","type":"uint8"}],"name":"mintSuccessful","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cmCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cmMaxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCBContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCCContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCEContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCXContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getOwnerBB","outputs":[{"components":[{"internalType":"uint16","name":"dna","type":"uint16"},{"internalType":"uint8","name":"bearedType","type":"uint8"},{"internalType":"uint8","name":"level","type":"uint8"}],"internalType":"struct BBL1.Bb[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_tokenId","type":"uint16"}],"name":"getOwnerBBDetails","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getOwnerBBTokenIDs","outputs":[{"internalType":"uint16[]","name":"","type":"uint16[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getcmBeardDistribution","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint8","name":"_bt","type":"uint8"},{"internalType":"uint16","name":"_count","type":"uint16"}],"name":"mintARandomL2","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint8","name":"_bt","type":"uint8"},{"internalType":"uint16","name":"_count","type":"uint16"}],"name":"mintARandomL3","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint8","name":"_bt","type":"uint8"},{"internalType":"uint16","name":"_count","type":"uint16"}],"name":"mintARandomL4","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint8","name":"_bt","type":"uint8"},{"internalType":"uint16","name":"_count","type":"uint16"},{"internalType":"uint8","name":"_level","type":"uint8"}],"name":"mintARandomLx","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mintRandomClansMen","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"mintingStatus","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":[],"name":"pLmt","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"}],"name":"setBaseURIL1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"}],"name":"setBaseURIL2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"}],"name":"setBaseURIL3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"}],"name":"setBaseURIL4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"}],"name":"setBaseURILx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_cbContractAddress","type":"address"}],"name":"setCBContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ccContractAddress","type":"address"}],"name":"setCCContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ceContractAddress","type":"address"}],"name":"setCEContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_cxContractAddress","type":"address"}],"name":"setCXContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"baseCost","type":"uint64"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxLongBSupply","type":"uint16"},{"internalType":"uint16","name":"_maxShortBSupply","type":"uint16"},{"internalType":"uint16","name":"_maxCurlyBSupply","type":"uint16"},{"internalType":"uint16","name":"_maxSpikeBSupply","type":"uint16"},{"internalType":"uint16","name":"_maxMushBSupply","type":"uint16"}],"name":"setMaxBTypeClansM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_setPreSale","type":"bool"}],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_pLmt","type":"uint16"}],"name":"setpLmt","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"tokenIDToBB","outputs":[{"internalType":"uint16","name":"dna","type":"uint16"},{"internalType":"uint8","name":"bearedType","type":"uint8"},{"internalType":"uint8","name":"level","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052668e1bc9bf040000600b55600c8054700501f4072d07060754073a076c0000242d63ffff0001600160881b03199091161790556019805462ffffff60a01b1916600160b01b1790553480156200005957600080fd5b5060405162004124380380620041248339810160408190526200007c9162000443565b83518490849062000095906000906020850190620002e6565b508051620000ab906001906020840190620002e6565b505050620000c8620000c2620001cd60201b60201c565b620001d1565b620000d38262000223565b620000de816200028b565b620001c3600d6020527f81955a0a11e65eac625c29e8882660bae4e165a75d72780094acae8ece9a29ee805460ff199081169091557ffd54ff1ed53f34a900b24c5ba64f85761163b5d82d98a47b9bd80e45466993c58054821660011790557f10a81eed9d63d16face5e76357905348e6253d3394086026bb2bf2145d7cc2498054821660021790557f26b4a10d0f0b04925c23bd4480ee147c916e5e87a7d68206a533dad160ac81e2805482166003179055600460008190527fafafe8948a4ed9d478b1e9a5780b119b5edd00ea7d07bc35bef7c814824eb94b8054909216179055565b505050506200054f565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002725760405162461bcd60e51b815260206004820181905260248201526000805160206200410483398151915260448201526064015b60405180910390fd5b805162000287906010906020840190620002e6565b5050565b600a546001600160a01b03163314620002d65760405162461bcd60e51b8152602060048201819052602482015260008051602062004104833981519152604482015260640162000269565b8051620002879060159060208401905b828054620002f490620004fc565b90600052602060002090601f01602090048101928262000318576000855562000363565b82601f106200033357805160ff191683800117855562000363565b8280016001018555821562000363579182015b828111156200036357825182559160200191906001019062000346565b506200037192915062000375565b5090565b5b8082111562000371576000815560010162000376565b600082601f8301126200039e57600080fd5b81516001600160401b0380821115620003bb57620003bb62000539565b604051601f8301601f19908116603f01168101908282118183101715620003e657620003e662000539565b816040528381526020925086838588010111156200040357600080fd5b600091505b8382101562000427578582018301518183018401529082019062000408565b83821115620004395760008385830101525b9695505050505050565b600080600080608085870312156200045a57600080fd5b84516001600160401b03808211156200047257600080fd5b62000480888389016200038c565b955060208701519150808211156200049757600080fd5b620004a5888389016200038c565b94506040870151915080821115620004bc57600080fd5b620004ca888389016200038c565b93506060870151915080821115620004e157600080fd5b50620004f0878288016200038c565b91505092959194509250565b600181811c908216806200051157607f821691505b602082108114156200053357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613ba5806200055f6000396000f3fe6080604052600436106103355760003560e01c806367cf050f116101ab578063c216464a116100f7578063f00fe57f11610095578063f86179cf1161006f578063f86179cf14610a15578063f8d4dfe014610a35578063fb67ac2814610a55578063fcfacce414610a7557600080fd5b8063f00fe57f146109c0578063f2fde38b146109d5578063f775de0d146109f557600080fd5b8063de363e87116100d1578063de363e87146108f0578063dea36e2814610905578063e985e9c514610964578063ebf4a721146109ad57600080fd5b8063c216464a14610890578063c87b56dd146108b0578063d8652cda146108d057600080fd5b80638142d29a1161016457806395d89b411161013e57806395d89b41146107d1578063a22cb465146107e6578063a9a4ad2014610806578063b88d4fde1461087057600080fd5b80638142d29a146107985780638ca18991146106d65780638da5cb5b146107b357600080fd5b806367cf050f146106d65780636ac88b58146106f657806370a0823114610716578063715018a61461073657806372a5e9431461074b5780637815827e1461076b57600080fd5b806323b872dd116102855780634f8d83691161022357806356210d12116101fd57806356210d12146106375780635a630d7a1461067457806362ca6ea7146106945780636352211e146106b657600080fd5b80634f8d8369146105ca57806350dd25b7146105ea57806354667f091461060a57600080fd5b80633ccfd60b1161025f5780633ccfd60b1461056257806342842e0e1461056a5780634c35ae301461058a5780634f6ccce7146105aa57600080fd5b806323b872dd1461050d5780632f745c591461052d5780633bd649681461054d57600080fd5b8063110b777b116102f257806318160ddd116102cc57806318160ddd146104985780631adee8af146104ad5780631b090e83146104cd5780631d1eebd3146104ed57600080fd5b8063110b777b1461043f578063135c11151461045457806313faede61461047457600080fd5b806301ffc9a71461033a5780630251c6ff1461036f57806306fdde03146103a3578063081812fc146103c5578063095ea7b3146103fd5780630d95ccc91461041f575b600080fd5b34801561034657600080fd5b5061035a610355366004613541565b610a8a565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50600c546103909062010000900461ffff1681565b60405161ffff9091168152602001610366565b3480156103af57600080fd5b506103b8610ab5565b604051610366919061380a565b3480156103d157600080fd5b506103e56103e0366004613644565b610b47565b6040516001600160a01b039091168152602001610366565b34801561040957600080fd5b5061041d610418366004613465565b610be1565b005b34801561042b57600080fd5b5061041d61043a366004613526565b610cf7565b34801561044b57600080fd5b506103e5610d3f565b34801561046057600080fd5b5061041d61046f366004613335565b610d7c565b34801561048057600080fd5b5061048a600b5481565b604051908152602001610366565b3480156104a457600080fd5b5060085461048a565b3480156104b957600080fd5b506103906104c836600461348f565b610dc8565b3480156104d957600080fd5b5061041d6104e83660046135c4565b610eac565b3480156104f957600080fd5b5061041d61050836600461357b565b610ef8565b34801561051957600080fd5b5061041d610528366004613383565b610f39565b34801561053957600080fd5b5061048a610548366004613465565b610f6a565b34801561055957600080fd5b5061041d611000565b61041d61103f565b34801561057657600080fd5b5061041d610585366004613383565b61108f565b34801561059657600080fd5b5061041d6105a536600461357b565b6110aa565b3480156105b657600080fd5b5061048a6105c5366004613644565b6110e7565b3480156105d657600080fd5b5061041d6105e536600461357b565b61117a565b3480156105f657600080fd5b5061041d610605366004613335565b6111b7565b34801561061657600080fd5b5061062a610625366004613335565b611203565b604051610366919061375e565b34801561064357600080fd5b5061064c61132b565b604080519586526020860194909452928401919091526060830152608082015260a001610366565b34801561068057600080fd5b5061041d61068f36600461365d565b6113b6565b3480156106a057600080fd5b50600c5461039090600160701b900461ffff1681565b3480156106c257600080fd5b506103e56106d1366004613644565b6113ef565b3480156106e257600080fd5b5061041d6106f136600461357b565b611466565b34801561070257600080fd5b5061041d610711366004613335565b6114a3565b34801561072257600080fd5b5061048a610731366004613335565b6114ef565b34801561074257600080fd5b5061041d611576565b34801561075757600080fd5b5061041d61076636600461357b565b6115aa565b34801561077757600080fd5b5061078b610786366004613335565b6115e7565b60405161036691906137c2565b3480156107a457600080fd5b50600c546103909061ffff1681565b3480156107bf57600080fd5b50600a546001600160a01b03166103e5565b3480156107dd57600080fd5b506103b861169d565b3480156107f257600080fd5b5061041d61080136600461343b565b6116ac565b34801561081257600080fd5b5061084c6108213660046135c4565b600f6020526000908152604090205461ffff81169060ff620100008204811691630100000090041683565b6040805161ffff909416845260ff9283166020850152911690820152606001610366565b34801561087c57600080fd5b5061041d61088b3660046133bf565b6116b7565b34801561089c57600080fd5b506103906108ab3660046134d2565b6116ef565b3480156108bc57600080fd5b506103b86108cb366004613644565b6117c3565b3480156108dc57600080fd5b5061041d6108eb366004613526565b611b0e565b3480156108fc57600080fd5b506103e5611b56565b34801561091157600080fd5b5061094a6109203660046135c4565b61ffff166000908152600f602052604090205460ff62010000820481169263010000009092041690565b6040805160ff938416815292909116602083015201610366565b34801561097057600080fd5b5061035a61097f366004613350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61041d6109bb366004613687565b611b93565b3480156109cc57600080fd5b506103e5611ba0565b3480156109e157600080fd5b5061041d6109f0366004613335565b611bdd565b348015610a0157600080fd5b50610390610a1036600461348f565b611c75565b348015610a2157600080fd5b50610390610a3036600461348f565b611ce2565b348015610a4157600080fd5b5061041d610a503660046135df565b611d4f565b348015610a6157600080fd5b5061041d610a70366004613335565b611ef9565b348015610a8157600080fd5b506103e5611f45565b60006001600160e01b0319821663780e9d6360e01b1480610aaf5750610aaf82611f82565b92915050565b606060008054610ac490613a3f565b80601f0160208091040260200160405190810160405280929190818152602001828054610af090613a3f565b8015610b3d5780601f10610b1257610100808354040283529160200191610b3d565b820191906000526020600020905b815481529060010190602001808311610b2057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bc55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610bec826113ef565b9050806001600160a01b0316836001600160a01b03161415610c5a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bbc565b336001600160a01b0382161480610c765750610c76813361097f565b610ce85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bbc565b610cf28383611fd2565b505050565b600a546001600160a01b03163314610d215760405162461bcd60e51b8152600401610bbc9061389a565b60198054911515600160b01b0260ff60b01b19909216919091179055565b600a546000906001600160a01b03163314610d6c5760405162461bcd60e51b8152600401610bbc9061389a565b506019546001600160a01b031690565b600a546001600160a01b03163314610da65760405162461bcd60e51b8152600401610bbc9061389a565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6018546000906001600160a01b03163314610df55760405162461bcd60e51b8152600401610bbc9061386f565b610e1284610e0260085490565b610e0d906001613946565b612040565b60405180606001604052808361ffff1681526020018460ff168152602001600460ff16815250600f6000610e4560085490565b61ffff90811682526020808301939093526040918201600020845181549486015195909301519290911662ffffff19909316929092176201000060ff948516021763ff0000001916630100000093909116929092029190911790556008545b949350505050565b600a546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610bbc9061389a565b600c805461ffff909216600160701b0261ffff60701b19909216919091179055565b600a546001600160a01b03163314610f225760405162461bcd60e51b8152600401610bbc9061389a565b8051610f359060109060208401906131d7565b5050565b610f43338261205a565b610f5f5760405162461bcd60e51b8152600401610bbc906138cf565b610cf283838361214d565b6000610f75836114ef565b8210610fd75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bbc565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461102a5760405162461bcd60e51b8152600401610bbc9061389a565b6019805460ff60a01b1916600160a01b179055565b600a546001600160a01b031633146110695760405162461bcd60e51b8152600401610bbc9061389a565b60405133904780156108fc02916000818181858888f1935050505061108d57600080fd5b565b610cf2838383604051806020016040528060008152506116b7565b600a546001600160a01b031633146110d45760405162461bcd60e51b8152600401610bbc9061389a565b8051610f359060119060208401906131d7565b60006110f260085490565b82106111555760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bbc565b6008828154811061116857611168613b2d565b90600052602060002001549050919050565b600a546001600160a01b031633146111a45760405162461bcd60e51b8152600401610bbc9061389a565b8051610f359060159060208401906131d7565b600a546001600160a01b031633146111e15760405162461bcd60e51b8152600401610bbc9061389a565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b60606000611210836114ef565b905060008161ffff1667ffffffffffffffff81111561123157611231613b43565b60405190808252806020026020018201604052801561127c57816020015b604080516060810182526000808252602080830182905292820152825260001990920191018161124f5790505b50905060005b8261ffff168161ffff1610156113235760006112a2868361ffff16610f6a565b61ffff8082166000908152600f602090815260409182902082516060810184529054808516825260ff62010000820481169383019390935263010000009004909116918101919091528551929350918591851690811061130457611304613b2d565b602002602001018190525050808061131b90613a7a565b915050611282565b509392505050565b600080808080336001600160a01b031661134d600a546001600160a01b031690565b6001600160a01b0316146113735760405162461bcd60e51b8152600401610bbc9061389a565b5050600c5461ffff64010000000082048116956601000000000000830482169550600160401b830482169450600160501b830482169350600160601b9092041690565b600a546001600160a01b031633146113e05760405162461bcd60e51b8152600401610bbc9061389a565b67ffffffffffffffff16600b55565b6000818152600260205260408120546001600160a01b031680610aaf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bbc565b600a546001600160a01b031633146114905760405162461bcd60e51b8152600401610bbc9061389a565b8051610f359060129060208401906131d7565b600a546001600160a01b031633146114cd5760405162461bcd60e51b8152600401610bbc9061389a565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03821661155a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bbc565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146115a05760405162461bcd60e51b8152600401610bbc9061389a565b61108d60006122f8565b600a546001600160a01b031633146115d45760405162461bcd60e51b8152600401610bbc9061389a565b8051610f359060149060208401906131d7565b606060006115f4836114ef565b905060008161ffff1667ffffffffffffffff81111561161557611615613b43565b60405190808252806020026020018201604052801561163e578160200160208202803683370190505b50905060005b8261ffff168161ffff16101561132357611662858261ffff16610f6a565b828261ffff168151811061167857611678613b2d565b61ffff909216602092830291909101909101528061169581613a7a565b915050611644565b606060018054610ac490613a3f565b610f3533838361234a565b6116c1338361205a565b6116dd5760405162461bcd60e51b8152600401610bbc906138cf565b6116e984848484612419565b50505050565b6019546000906001600160a01b0316331461171c5760405162461bcd60e51b8152600401610bbc9061386f565b61172985610e0260085490565b60405180606001604052808461ffff1681526020018560ff1681526020018360ff16815250600f600061175b60085490565b61ffff90811682526020808301939093526040918201600020845181549486015195909301519290911662ffffff19909316929092176201000060ff948516021763ff0000001916630100000093909116929092029190911790556008549050949350505050565b6000818152600260205260409020546060906001600160a01b03166118425760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bbc565b61ffff82166000908152600f602052604090205460195460609160ff6301000000909104811691600160a01b900416611909576015805461188290613a3f565b80601f01602080910402602001604051908101604052809291908181526020018280546118ae90613a3f565b80156118fb5780601f106118d0576101008083540402835291602001916118fb565b820191906000526020600020905b8154815290600101906020018083116118de57829003601f168201915b505050505092505050919050565b8060ff16600114156119a7576010805461192290613a3f565b80601f016020809104026020016040519081016040528092919081815260200182805461194e90613a3f565b801561199b5780601f106119705761010080835404028352916020019161199b565b820191906000526020600020905b81548152906001019060200180831161197e57829003601f168201915b50505050509150611a80565b8060ff16600214156119c0576011805461192290613a3f565b8060ff16600314156119d9576012805461192290613a3f565b8060ff16600414156119f2576013805461192290613a3f565b601480546119ff90613a3f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b90613a3f565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b505050505091505b6000825111611a9e5760405180602001604052806000815250610ea4565b61ffff84166000908152600f60205260409020548290611ac69062010000900460ff1661244c565b61ffff8087166000908152600f6020526040902054611ae5911661244c565b604051602001611af7939291906136ce565b604051602081830303815290604052949350505050565b600a546001600160a01b03163314611b385760405162461bcd60e51b8152600401610bbc9061389a565b60198054911515600160a81b0260ff60a81b19909216919091179055565b600a546000906001600160a01b03163314611b835760405162461bcd60e51b8152600401610bbc9061389a565b506017546001600160a01b031690565b611b9d338261254a565b50565b600a546000906001600160a01b03163314611bcd5760405162461bcd60e51b8152600401610bbc9061389a565b506016546001600160a01b031690565b600a546001600160a01b03163314611c075760405162461bcd60e51b8152600401610bbc9061389a565b6001600160a01b038116611c6c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbc565b611b9d816122f8565b6016546000906001600160a01b03163314611ca25760405162461bcd60e51b8152600401610bbc9061386f565b611caf84610e0260085490565b60405180606001604052808361ffff1681526020018460ff168152602001600260ff16815250600f6000610e4560085490565b6017546000906001600160a01b03163314611d0f5760405162461bcd60e51b8152600401610bbc9061386f565b611d1c84610e0260085490565b60405180606001604052808361ffff1681526020018460ff168152602001600360ff16815250600f6000610e4560085490565b600a546001600160a01b03163314611d795760405162461bcd60e51b8152600401610bbc9061389a565b611e5d600d6020527f81955a0a11e65eac625c29e8882660bae4e165a75d72780094acae8ece9a29ee805460ff199081169091557ffd54ff1ed53f34a900b24c5ba64f85761163b5d82d98a47b9bd80e45466993c58054821660011790557f10a81eed9d63d16face5e76357905348e6253d3394086026bb2bf2145d7cc2498054821660021790557f26b4a10d0f0b04925c23bd4480ee147c916e5e87a7d68206a533dad160ac81e2805482166003179055600460008190527fafafe8948a4ed9d478b1e9a5780b119b5edd00ea7d07bc35bef7c814824eb94b8054909216179055565b600c8054600560801b70ff00000000000000000000ffff000000001990911664010000000061ffff98891602171769ffffffff000000000000191666010000000000009587169590950269ffff0000000000000000191694909417600160401b938616939093029290921763ffffffff60501b1916600160501b9185169190910261ffff60601b191617600160601b9190931602919091179055565b600a546001600160a01b03163314611f235760405162461bcd60e51b8152600401610bbc9061389a565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b600a546000906001600160a01b03163314611f725760405162461bcd60e51b8152600401610bbc9061389a565b506018546001600160a01b031690565b60006001600160e01b031982166380ac58cd60e01b1480611fb357506001600160e01b03198216635b5e139f60e01b145b80610aaf57506301ffc9a760e01b6001600160e01b0319831614610aaf565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612007826113ef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610f358282604051806020016040528060008152506129b1565b6000818152600260205260408120546001600160a01b03166120d35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bbc565b60006120de836113ef565b9050806001600160a01b0316846001600160a01b031614806121195750836001600160a01b031661210e84610b47565b6001600160a01b0316145b80610ea457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610ea4565b826001600160a01b0316612160826113ef565b6001600160a01b0316146121c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bbc565b6001600160a01b03821661222a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bbc565b6122358383836129e4565b612240600082611fd2565b6001600160a01b03831660009081526003602052604081208054600192906122699084906139d9565b90915550506001600160a01b0382166000908152600360205260408120805460019290612297908490613946565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156123ac5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bbc565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61242484848461214d565b61243084848484612a9c565b6116e95760405162461bcd60e51b8152600401610bbc9061381d565b6060816124705750506040805180820190915260018152600360fc1b602082015290565b8160005b811561249a578061248481613a9c565b91506124939050600a83613983565b9150612474565b60008167ffffffffffffffff8111156124b5576124b5613b43565b6040519080825280601f01601f1916602001820160405280156124df576020820181803683370190505b5090505b8415610ea4576124f46001836139d9565b9150612501600a86613ad7565b61250c906030613946565b60f81b81838151811061252157612521613b2d565b60200101906001600160f81b031916908160001a905350612543600a86613983565b94506124e3565b601954600160a81b900460ff166125915760405162461bcd60e51b815260206004820152600b60248201526a26b4b73a34b7339037b33360a91b6044820152606401610bbc565b60008160ff16116125d55760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a5908185b5bdd5b9d60921b6044820152606401610bbc565b60058160ff1611156126115760405162461bcd60e51b81526020600482015260056024820152646d6178203560d81b6044820152606401610bbc565b600c5461ffff808216916126309160ff85169162010000900416613920565b61ffff1611156126705760405162461bcd60e51b815260206004820152600b60248201526a13585e081c995858da195960aa1b6044820152606401610bbc565b600a546001600160a01b038381169116146127f357601954600160b01b900460ff16156127d657600c54600160701b900461ffff166126f15760405162461bcd60e51b815260206004820152601760248201527f205072652d53616c65206c696d6974206e6f74207365740000000000000000006044820152606401610bbc565b600c5461ffff600160701b82048116916127169160ff85169162010000900416613920565b61ffff16111561275f5760405162461bcd60e51b81526020600482015260146024820152731c1c994b5cd85b19481b585e081c995858da195960621b6044820152606401610bbc565b600061276a836114ef565b9050600561277b60ff841683613946565b11156127d45760405162461bcd60e51b815260206004820152602260248201527f35206d696e74732070657220706572736f6e20647572696e67207072652d73616044820152616c6560f01b6064820152608401610bbc565b505b8060ff16600b546127e79190613997565b3410156127f357600080fd5b60015b8160ff168111610cf257600c5460009061281990600160801b900460ff16612ba6565b60ff8082166000908152600d60205260409020549192501661283e85610e0260085490565b6001600c60028282829054906101000a900461ffff1661285e9190613920565b82546101009290920a61ffff81810219909316918316021790915560ff83166000908152600e602052604090205416905061289a600182613920565b905060405180606001604052808261ffff1681526020018360ff168152602001600160ff16815250600f60006128cf60085490565b61ffff9081168252602080830193909352604091820160002084518154868601519685015191841662ffffff19909116176201000060ff978816021763ff0000001916630100000091871691909102179055905190841681526001928516916001600160a01b038a16917f38378d41dddad323a12c2cae3dba6d8dea362aca48ff1db53604d8bcc64510c5910160405180910390a460ff82166000908152600e60205260409020805461ffff191661ffff831617905561298e82612c2b565b61299b5761299b83612e4a565b50505080806129a990613a9c565b9150506127f6565b6129bb8383612ef9565b6129c86000848484612a9c565b610cf25760405162461bcd60e51b8152600401610bbc9061381d565b6001600160a01b038316612a3f57612a3a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612a62565b816001600160a01b0316836001600160a01b031614612a6257612a628382613047565b6001600160a01b038216612a7957610cf2816130e4565b826001600160a01b0316826001600160a01b031614610cf257610cf28282613193565b60006001600160a01b0384163b15612b9e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ae0903390899088908890600401613721565b602060405180830381600087803b158015612afa57600080fd5b505af1925050508015612b2a575060408051601f3d908101601f19168201909252612b279181019061355e565b60015b612b84573d808015612b58576040519150601f19603f3d011682016040523d82523d6000602084013e612b5d565b606091505b508051612b7c5760405162461bcd60e51b8152600401610bbc9061381d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ea4565b506001610ea4565b6000804233414445612bb760085490565b6040805160208101979097526bffffffffffffffffffffffff19606096871b8116918801919091529390941b90921660548501526068840152608883015260a882015260c80160408051601f1981840301815291905280516020909101209050612c2460ff841682613ad7565b9392505050565b600060ff8216612c99576001600c60048282829054906101000a900461ffff16612c5591906139b6565b92506101000a81548161ffff021916908361ffff160217905550600c60049054906101000a900461ffff1661ffff1660001415612c9457506000919050565b612e42565b8160ff1660011415612d04576001600c60068282829054906101000a900461ffff16612cc591906139b6565b92506101000a81548161ffff021916908361ffff160217905550600c60069054906101000a900461ffff1661ffff1660001415612c9457506000919050565b8160ff1660021415612d6f576001600c60088282829054906101000a900461ffff16612d3091906139b6565b92506101000a81548161ffff021916908361ffff160217905550600c60089054906101000a900461ffff1661ffff1660001415612c9457506000919050565b8160ff1660031415612dda576001600c600a8282829054906101000a900461ffff16612d9b91906139b6565b92506101000a81548161ffff021916908361ffff160217905550600c600a9054906101000a900461ffff1661ffff1660001415612c9457506000919050565b8160ff1660041415612e42576001600c808282829054906101000a900461ffff16612e0591906139b6565b92506101000a81548161ffff021916908361ffff160217905550600c8054906101000a900461ffff1661ffff1660001415612e4257506000919050565b506001919050565b805b600c5460ff600160801b90910481169082161015612ebe57600d6000612e7383600161395e565b60ff908116825260208083019390935260409182016000908120548583168252600d90945291909120805460ff19169290911691909117905580612eb681613ab7565b915050612e4c565b506001600c60108282829054906101000a900460ff16612ede91906139f0565b92506101000a81548160ff021916908360ff16021790555050565b6001600160a01b038216612f4f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bbc565b6000818152600260205260409020546001600160a01b031615612fb45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bbc565b612fc0600083836129e4565b6001600160a01b0382166000908152600360205260408120805460019290612fe9908490613946565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613054846114ef565b61305e91906139d9565b6000838152600760205260409020549091508082146130b1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906130f6906001906139d9565b6000838152600960205260408120546008805493945090928490811061311e5761311e613b2d565b90600052602060002001549050806008838154811061313f5761313f613b2d565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061317757613177613b17565b6001900381819060005260206000200160009055905550505050565b600061319e836114ef565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546131e390613a3f565b90600052602060002090601f016020900481019282613205576000855561324b565b82601f1061321e57805160ff191683800117855561324b565b8280016001018555821561324b579182015b8281111561324b578251825591602001919060010190613230565b5061325792915061325b565b5090565b5b80821115613257576000815560010161325c565b600067ffffffffffffffff8084111561328b5761328b613b43565b604051601f8501601f19908116603f011681019082821181831017156132b3576132b3613b43565b816040528093508581528686860111156132cc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146132fd57600080fd5b919050565b803580151581146132fd57600080fd5b803561ffff811681146132fd57600080fd5b803560ff811681146132fd57600080fd5b60006020828403121561334757600080fd5b612c24826132e6565b6000806040838503121561336357600080fd5b61336c836132e6565b915061337a602084016132e6565b90509250929050565b60008060006060848603121561339857600080fd5b6133a1846132e6565b92506133af602085016132e6565b9150604084013590509250925092565b600080600080608085870312156133d557600080fd5b6133de856132e6565b93506133ec602086016132e6565b925060408501359150606085013567ffffffffffffffff81111561340f57600080fd5b8501601f8101871361342057600080fd5b61342f87823560208401613270565b91505092959194509250565b6000806040838503121561344e57600080fd5b613457836132e6565b915061337a60208401613302565b6000806040838503121561347857600080fd5b613481836132e6565b946020939093013593505050565b6000806000606084860312156134a457600080fd5b6134ad846132e6565b92506134bb60208501613324565b91506134c960408501613312565b90509250925092565b600080600080608085870312156134e857600080fd5b6134f1856132e6565b93506134ff60208601613324565b925061350d60408601613312565b915061351b60608601613324565b905092959194509250565b60006020828403121561353857600080fd5b612c2482613302565b60006020828403121561355357600080fd5b8135612c2481613b59565b60006020828403121561357057600080fd5b8151612c2481613b59565b60006020828403121561358d57600080fd5b813567ffffffffffffffff8111156135a457600080fd5b8201601f810184136135b557600080fd5b610ea484823560208401613270565b6000602082840312156135d657600080fd5b612c2482613312565b600080600080600060a086880312156135f757600080fd5b61360086613312565b945061360e60208701613312565b935061361c60408701613312565b925061362a60608701613312565b915061363860808701613312565b90509295509295909350565b60006020828403121561365657600080fd5b5035919050565b60006020828403121561366f57600080fd5b813567ffffffffffffffff81168114612c2457600080fd5b60006020828403121561369957600080fd5b612c2482613324565b600081518084526136ba816020860160208601613a13565b601f01601f19169290920160200192915050565b600084516136e0818460208901613a13565b8451908301906136f4818360208901613a13565b8451910190613707818360208801613a13565b64173539b7b760d91b910190815260050195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613754908301846136a2565b9695505050505050565b602080825282518282018190526000919060409081850190868401855b828110156137b5578151805161ffff1685528681015160ff908116888701529086015116858501526060909301929085019060010161377b565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156137fe57835161ffff16835292840192918401916001016137de565b50909695505050505050565b602081526000612c2460208301846136a2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260119082015270424220436f6e747261637473204f6e6c7960781b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff80831681851680830382111561393d5761393d613aeb565b01949350505050565b6000821982111561395957613959613aeb565b500190565b600060ff821660ff84168060ff0382111561397b5761397b613aeb565b019392505050565b60008261399257613992613b01565b500490565b60008160001904831182151516156139b1576139b1613aeb565b500290565b600061ffff838116908316818110156139d1576139d1613aeb565b039392505050565b6000828210156139eb576139eb613aeb565b500390565b600060ff821660ff841680821015613a0a57613a0a613aeb565b90039392505050565b60005b83811015613a2e578181015183820152602001613a16565b838111156116e95750506000910152565b600181811c90821680613a5357607f821691505b60208210811415613a7457634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415613a9257613a92613aeb565b6001019392505050565b6000600019821415613ab057613ab0613aeb565b5060010190565b600060ff821660ff811415613ace57613ace613aeb565b60010192915050565b600082613ae657613ae6613b01565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611b9d57600080fdfea26469706673582212200c4bd113ef76a36a4416a8571d0df617108c7a56325a36e083213ace702facf564736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b426c6f636b426561726473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000242420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54446743354c414e6d6d66513133477252594b6455614572694d4352567451666e644236566e396d7a6862532f000000000000000000000000000000000000000000000000000000000000000000000000000000000046697066733a2f2f516d4e594e78515358417641443534575633446a5867684e35374c733846556246487161396850716576454a67642f706c616365686f6c6465722e6a736f6e0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103355760003560e01c806367cf050f116101ab578063c216464a116100f7578063f00fe57f11610095578063f86179cf1161006f578063f86179cf14610a15578063f8d4dfe014610a35578063fb67ac2814610a55578063fcfacce414610a7557600080fd5b8063f00fe57f146109c0578063f2fde38b146109d5578063f775de0d146109f557600080fd5b8063de363e87116100d1578063de363e87146108f0578063dea36e2814610905578063e985e9c514610964578063ebf4a721146109ad57600080fd5b8063c216464a14610890578063c87b56dd146108b0578063d8652cda146108d057600080fd5b80638142d29a1161016457806395d89b411161013e57806395d89b41146107d1578063a22cb465146107e6578063a9a4ad2014610806578063b88d4fde1461087057600080fd5b80638142d29a146107985780638ca18991146106d65780638da5cb5b146107b357600080fd5b806367cf050f146106d65780636ac88b58146106f657806370a0823114610716578063715018a61461073657806372a5e9431461074b5780637815827e1461076b57600080fd5b806323b872dd116102855780634f8d83691161022357806356210d12116101fd57806356210d12146106375780635a630d7a1461067457806362ca6ea7146106945780636352211e146106b657600080fd5b80634f8d8369146105ca57806350dd25b7146105ea57806354667f091461060a57600080fd5b80633ccfd60b1161025f5780633ccfd60b1461056257806342842e0e1461056a5780634c35ae301461058a5780634f6ccce7146105aa57600080fd5b806323b872dd1461050d5780632f745c591461052d5780633bd649681461054d57600080fd5b8063110b777b116102f257806318160ddd116102cc57806318160ddd146104985780631adee8af146104ad5780631b090e83146104cd5780631d1eebd3146104ed57600080fd5b8063110b777b1461043f578063135c11151461045457806313faede61461047457600080fd5b806301ffc9a71461033a5780630251c6ff1461036f57806306fdde03146103a3578063081812fc146103c5578063095ea7b3146103fd5780630d95ccc91461041f575b600080fd5b34801561034657600080fd5b5061035a610355366004613541565b610a8a565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50600c546103909062010000900461ffff1681565b60405161ffff9091168152602001610366565b3480156103af57600080fd5b506103b8610ab5565b604051610366919061380a565b3480156103d157600080fd5b506103e56103e0366004613644565b610b47565b6040516001600160a01b039091168152602001610366565b34801561040957600080fd5b5061041d610418366004613465565b610be1565b005b34801561042b57600080fd5b5061041d61043a366004613526565b610cf7565b34801561044b57600080fd5b506103e5610d3f565b34801561046057600080fd5b5061041d61046f366004613335565b610d7c565b34801561048057600080fd5b5061048a600b5481565b604051908152602001610366565b3480156104a457600080fd5b5060085461048a565b3480156104b957600080fd5b506103906104c836600461348f565b610dc8565b3480156104d957600080fd5b5061041d6104e83660046135c4565b610eac565b3480156104f957600080fd5b5061041d61050836600461357b565b610ef8565b34801561051957600080fd5b5061041d610528366004613383565b610f39565b34801561053957600080fd5b5061048a610548366004613465565b610f6a565b34801561055957600080fd5b5061041d611000565b61041d61103f565b34801561057657600080fd5b5061041d610585366004613383565b61108f565b34801561059657600080fd5b5061041d6105a536600461357b565b6110aa565b3480156105b657600080fd5b5061048a6105c5366004613644565b6110e7565b3480156105d657600080fd5b5061041d6105e536600461357b565b61117a565b3480156105f657600080fd5b5061041d610605366004613335565b6111b7565b34801561061657600080fd5b5061062a610625366004613335565b611203565b604051610366919061375e565b34801561064357600080fd5b5061064c61132b565b604080519586526020860194909452928401919091526060830152608082015260a001610366565b34801561068057600080fd5b5061041d61068f36600461365d565b6113b6565b3480156106a057600080fd5b50600c5461039090600160701b900461ffff1681565b3480156106c257600080fd5b506103e56106d1366004613644565b6113ef565b3480156106e257600080fd5b5061041d6106f136600461357b565b611466565b34801561070257600080fd5b5061041d610711366004613335565b6114a3565b34801561072257600080fd5b5061048a610731366004613335565b6114ef565b34801561074257600080fd5b5061041d611576565b34801561075757600080fd5b5061041d61076636600461357b565b6115aa565b34801561077757600080fd5b5061078b610786366004613335565b6115e7565b60405161036691906137c2565b3480156107a457600080fd5b50600c546103909061ffff1681565b3480156107bf57600080fd5b50600a546001600160a01b03166103e5565b3480156107dd57600080fd5b506103b861169d565b3480156107f257600080fd5b5061041d61080136600461343b565b6116ac565b34801561081257600080fd5b5061084c6108213660046135c4565b600f6020526000908152604090205461ffff81169060ff620100008204811691630100000090041683565b6040805161ffff909416845260ff9283166020850152911690820152606001610366565b34801561087c57600080fd5b5061041d61088b3660046133bf565b6116b7565b34801561089c57600080fd5b506103906108ab3660046134d2565b6116ef565b3480156108bc57600080fd5b506103b86108cb366004613644565b6117c3565b3480156108dc57600080fd5b5061041d6108eb366004613526565b611b0e565b3480156108fc57600080fd5b506103e5611b56565b34801561091157600080fd5b5061094a6109203660046135c4565b61ffff166000908152600f602052604090205460ff62010000820481169263010000009092041690565b6040805160ff938416815292909116602083015201610366565b34801561097057600080fd5b5061035a61097f366004613350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61041d6109bb366004613687565b611b93565b3480156109cc57600080fd5b506103e5611ba0565b3480156109e157600080fd5b5061041d6109f0366004613335565b611bdd565b348015610a0157600080fd5b50610390610a1036600461348f565b611c75565b348015610a2157600080fd5b50610390610a3036600461348f565b611ce2565b348015610a4157600080fd5b5061041d610a503660046135df565b611d4f565b348015610a6157600080fd5b5061041d610a70366004613335565b611ef9565b348015610a8157600080fd5b506103e5611f45565b60006001600160e01b0319821663780e9d6360e01b1480610aaf5750610aaf82611f82565b92915050565b606060008054610ac490613a3f565b80601f0160208091040260200160405190810160405280929190818152602001828054610af090613a3f565b8015610b3d5780601f10610b1257610100808354040283529160200191610b3d565b820191906000526020600020905b815481529060010190602001808311610b2057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bc55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610bec826113ef565b9050806001600160a01b0316836001600160a01b03161415610c5a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bbc565b336001600160a01b0382161480610c765750610c76813361097f565b610ce85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bbc565b610cf28383611fd2565b505050565b600a546001600160a01b03163314610d215760405162461bcd60e51b8152600401610bbc9061389a565b60198054911515600160b01b0260ff60b01b19909216919091179055565b600a546000906001600160a01b03163314610d6c5760405162461bcd60e51b8152600401610bbc9061389a565b506019546001600160a01b031690565b600a546001600160a01b03163314610da65760405162461bcd60e51b8152600401610bbc9061389a565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6018546000906001600160a01b03163314610df55760405162461bcd60e51b8152600401610bbc9061386f565b610e1284610e0260085490565b610e0d906001613946565b612040565b60405180606001604052808361ffff1681526020018460ff168152602001600460ff16815250600f6000610e4560085490565b61ffff90811682526020808301939093526040918201600020845181549486015195909301519290911662ffffff19909316929092176201000060ff948516021763ff0000001916630100000093909116929092029190911790556008545b949350505050565b600a546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610bbc9061389a565b600c805461ffff909216600160701b0261ffff60701b19909216919091179055565b600a546001600160a01b03163314610f225760405162461bcd60e51b8152600401610bbc9061389a565b8051610f359060109060208401906131d7565b5050565b610f43338261205a565b610f5f5760405162461bcd60e51b8152600401610bbc906138cf565b610cf283838361214d565b6000610f75836114ef565b8210610fd75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bbc565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461102a5760405162461bcd60e51b8152600401610bbc9061389a565b6019805460ff60a01b1916600160a01b179055565b600a546001600160a01b031633146110695760405162461bcd60e51b8152600401610bbc9061389a565b60405133904780156108fc02916000818181858888f1935050505061108d57600080fd5b565b610cf2838383604051806020016040528060008152506116b7565b600a546001600160a01b031633146110d45760405162461bcd60e51b8152600401610bbc9061389a565b8051610f359060119060208401906131d7565b60006110f260085490565b82106111555760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bbc565b6008828154811061116857611168613b2d565b90600052602060002001549050919050565b600a546001600160a01b031633146111a45760405162461bcd60e51b8152600401610bbc9061389a565b8051610f359060159060208401906131d7565b600a546001600160a01b031633146111e15760405162461bcd60e51b8152600401610bbc9061389a565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b60606000611210836114ef565b905060008161ffff1667ffffffffffffffff81111561123157611231613b43565b60405190808252806020026020018201604052801561127c57816020015b604080516060810182526000808252602080830182905292820152825260001990920191018161124f5790505b50905060005b8261ffff168161ffff1610156113235760006112a2868361ffff16610f6a565b61ffff8082166000908152600f602090815260409182902082516060810184529054808516825260ff62010000820481169383019390935263010000009004909116918101919091528551929350918591851690811061130457611304613b2d565b602002602001018190525050808061131b90613a7a565b915050611282565b509392505050565b600080808080336001600160a01b031661134d600a546001600160a01b031690565b6001600160a01b0316146113735760405162461bcd60e51b8152600401610bbc9061389a565b5050600c5461ffff64010000000082048116956601000000000000830482169550600160401b830482169450600160501b830482169350600160601b9092041690565b600a546001600160a01b031633146113e05760405162461bcd60e51b8152600401610bbc9061389a565b67ffffffffffffffff16600b55565b6000818152600260205260408120546001600160a01b031680610aaf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bbc565b600a546001600160a01b031633146114905760405162461bcd60e51b8152600401610bbc9061389a565b8051610f359060129060208401906131d7565b600a546001600160a01b031633146114cd5760405162461bcd60e51b8152600401610bbc9061389a565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03821661155a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bbc565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146115a05760405162461bcd60e51b8152600401610bbc9061389a565b61108d60006122f8565b600a546001600160a01b031633146115d45760405162461bcd60e51b8152600401610bbc9061389a565b8051610f359060149060208401906131d7565b606060006115f4836114ef565b905060008161ffff1667ffffffffffffffff81111561161557611615613b43565b60405190808252806020026020018201604052801561163e578160200160208202803683370190505b50905060005b8261ffff168161ffff16101561132357611662858261ffff16610f6a565b828261ffff168151811061167857611678613b2d565b61ffff909216602092830291909101909101528061169581613a7a565b915050611644565b606060018054610ac490613a3f565b610f3533838361234a565b6116c1338361205a565b6116dd5760405162461bcd60e51b8152600401610bbc906138cf565b6116e984848484612419565b50505050565b6019546000906001600160a01b0316331461171c5760405162461bcd60e51b8152600401610bbc9061386f565b61172985610e0260085490565b60405180606001604052808461ffff1681526020018560ff1681526020018360ff16815250600f600061175b60085490565b61ffff90811682526020808301939093526040918201600020845181549486015195909301519290911662ffffff19909316929092176201000060ff948516021763ff0000001916630100000093909116929092029190911790556008549050949350505050565b6000818152600260205260409020546060906001600160a01b03166118425760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bbc565b61ffff82166000908152600f602052604090205460195460609160ff6301000000909104811691600160a01b900416611909576015805461188290613a3f565b80601f01602080910402602001604051908101604052809291908181526020018280546118ae90613a3f565b80156118fb5780601f106118d0576101008083540402835291602001916118fb565b820191906000526020600020905b8154815290600101906020018083116118de57829003601f168201915b505050505092505050919050565b8060ff16600114156119a7576010805461192290613a3f565b80601f016020809104026020016040519081016040528092919081815260200182805461194e90613a3f565b801561199b5780601f106119705761010080835404028352916020019161199b565b820191906000526020600020905b81548152906001019060200180831161197e57829003601f168201915b50505050509150611a80565b8060ff16600214156119c0576011805461192290613a3f565b8060ff16600314156119d9576012805461192290613a3f565b8060ff16600414156119f2576013805461192290613a3f565b601480546119ff90613a3f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b90613a3f565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b505050505091505b6000825111611a9e5760405180602001604052806000815250610ea4565b61ffff84166000908152600f60205260409020548290611ac69062010000900460ff1661244c565b61ffff8087166000908152600f6020526040902054611ae5911661244c565b604051602001611af7939291906136ce565b604051602081830303815290604052949350505050565b600a546001600160a01b03163314611b385760405162461bcd60e51b8152600401610bbc9061389a565b60198054911515600160a81b0260ff60a81b19909216919091179055565b600a546000906001600160a01b03163314611b835760405162461bcd60e51b8152600401610bbc9061389a565b506017546001600160a01b031690565b611b9d338261254a565b50565b600a546000906001600160a01b03163314611bcd5760405162461bcd60e51b8152600401610bbc9061389a565b506016546001600160a01b031690565b600a546001600160a01b03163314611c075760405162461bcd60e51b8152600401610bbc9061389a565b6001600160a01b038116611c6c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbc565b611b9d816122f8565b6016546000906001600160a01b03163314611ca25760405162461bcd60e51b8152600401610bbc9061386f565b611caf84610e0260085490565b60405180606001604052808361ffff1681526020018460ff168152602001600260ff16815250600f6000610e4560085490565b6017546000906001600160a01b03163314611d0f5760405162461bcd60e51b8152600401610bbc9061386f565b611d1c84610e0260085490565b60405180606001604052808361ffff1681526020018460ff168152602001600360ff16815250600f6000610e4560085490565b600a546001600160a01b03163314611d795760405162461bcd60e51b8152600401610bbc9061389a565b611e5d600d6020527f81955a0a11e65eac625c29e8882660bae4e165a75d72780094acae8ece9a29ee805460ff199081169091557ffd54ff1ed53f34a900b24c5ba64f85761163b5d82d98a47b9bd80e45466993c58054821660011790557f10a81eed9d63d16face5e76357905348e6253d3394086026bb2bf2145d7cc2498054821660021790557f26b4a10d0f0b04925c23bd4480ee147c916e5e87a7d68206a533dad160ac81e2805482166003179055600460008190527fafafe8948a4ed9d478b1e9a5780b119b5edd00ea7d07bc35bef7c814824eb94b8054909216179055565b600c8054600560801b70ff00000000000000000000ffff000000001990911664010000000061ffff98891602171769ffffffff000000000000191666010000000000009587169590950269ffff0000000000000000191694909417600160401b938616939093029290921763ffffffff60501b1916600160501b9185169190910261ffff60601b191617600160601b9190931602919091179055565b600a546001600160a01b03163314611f235760405162461bcd60e51b8152600401610bbc9061389a565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b600a546000906001600160a01b03163314611f725760405162461bcd60e51b8152600401610bbc9061389a565b506018546001600160a01b031690565b60006001600160e01b031982166380ac58cd60e01b1480611fb357506001600160e01b03198216635b5e139f60e01b145b80610aaf57506301ffc9a760e01b6001600160e01b0319831614610aaf565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612007826113ef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610f358282604051806020016040528060008152506129b1565b6000818152600260205260408120546001600160a01b03166120d35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bbc565b60006120de836113ef565b9050806001600160a01b0316846001600160a01b031614806121195750836001600160a01b031661210e84610b47565b6001600160a01b0316145b80610ea457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610ea4565b826001600160a01b0316612160826113ef565b6001600160a01b0316146121c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bbc565b6001600160a01b03821661222a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bbc565b6122358383836129e4565b612240600082611fd2565b6001600160a01b03831660009081526003602052604081208054600192906122699084906139d9565b90915550506001600160a01b0382166000908152600360205260408120805460019290612297908490613946565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156123ac5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bbc565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61242484848461214d565b61243084848484612a9c565b6116e95760405162461bcd60e51b8152600401610bbc9061381d565b6060816124705750506040805180820190915260018152600360fc1b602082015290565b8160005b811561249a578061248481613a9c565b91506124939050600a83613983565b9150612474565b60008167ffffffffffffffff8111156124b5576124b5613b43565b6040519080825280601f01601f1916602001820160405280156124df576020820181803683370190505b5090505b8415610ea4576124f46001836139d9565b9150612501600a86613ad7565b61250c906030613946565b60f81b81838151811061252157612521613b2d565b60200101906001600160f81b031916908160001a905350612543600a86613983565b94506124e3565b601954600160a81b900460ff166125915760405162461bcd60e51b815260206004820152600b60248201526a26b4b73a34b7339037b33360a91b6044820152606401610bbc565b60008160ff16116125d55760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a5908185b5bdd5b9d60921b6044820152606401610bbc565b60058160ff1611156126115760405162461bcd60e51b81526020600482015260056024820152646d6178203560d81b6044820152606401610bbc565b600c5461ffff808216916126309160ff85169162010000900416613920565b61ffff1611156126705760405162461bcd60e51b815260206004820152600b60248201526a13585e081c995858da195960aa1b6044820152606401610bbc565b600a546001600160a01b038381169116146127f357601954600160b01b900460ff16156127d657600c54600160701b900461ffff166126f15760405162461bcd60e51b815260206004820152601760248201527f205072652d53616c65206c696d6974206e6f74207365740000000000000000006044820152606401610bbc565b600c5461ffff600160701b82048116916127169160ff85169162010000900416613920565b61ffff16111561275f5760405162461bcd60e51b81526020600482015260146024820152731c1c994b5cd85b19481b585e081c995858da195960621b6044820152606401610bbc565b600061276a836114ef565b9050600561277b60ff841683613946565b11156127d45760405162461bcd60e51b815260206004820152602260248201527f35206d696e74732070657220706572736f6e20647572696e67207072652d73616044820152616c6560f01b6064820152608401610bbc565b505b8060ff16600b546127e79190613997565b3410156127f357600080fd5b60015b8160ff168111610cf257600c5460009061281990600160801b900460ff16612ba6565b60ff8082166000908152600d60205260409020549192501661283e85610e0260085490565b6001600c60028282829054906101000a900461ffff1661285e9190613920565b82546101009290920a61ffff81810219909316918316021790915560ff83166000908152600e602052604090205416905061289a600182613920565b905060405180606001604052808261ffff1681526020018360ff168152602001600160ff16815250600f60006128cf60085490565b61ffff9081168252602080830193909352604091820160002084518154868601519685015191841662ffffff19909116176201000060ff978816021763ff0000001916630100000091871691909102179055905190841681526001928516916001600160a01b038a16917f38378d41dddad323a12c2cae3dba6d8dea362aca48ff1db53604d8bcc64510c5910160405180910390a460ff82166000908152600e60205260409020805461ffff191661ffff831617905561298e82612c2b565b61299b5761299b83612e4a565b50505080806129a990613a9c565b9150506127f6565b6129bb8383612ef9565b6129c86000848484612a9c565b610cf25760405162461bcd60e51b8152600401610bbc9061381d565b6001600160a01b038316612a3f57612a3a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612a62565b816001600160a01b0316836001600160a01b031614612a6257612a628382613047565b6001600160a01b038216612a7957610cf2816130e4565b826001600160a01b0316826001600160a01b031614610cf257610cf28282613193565b60006001600160a01b0384163b15612b9e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ae0903390899088908890600401613721565b602060405180830381600087803b158015612afa57600080fd5b505af1925050508015612b2a575060408051601f3d908101601f19168201909252612b279181019061355e565b60015b612b84573d808015612b58576040519150601f19603f3d011682016040523d82523d6000602084013e612b5d565b606091505b508051612b7c5760405162461bcd60e51b8152600401610bbc9061381d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ea4565b506001610ea4565b6000804233414445612bb760085490565b6040805160208101979097526bffffffffffffffffffffffff19606096871b8116918801919091529390941b90921660548501526068840152608883015260a882015260c80160408051601f1981840301815291905280516020909101209050612c2460ff841682613ad7565b9392505050565b600060ff8216612c99576001600c60048282829054906101000a900461ffff16612c5591906139b6565b92506101000a81548161ffff021916908361ffff160217905550600c60049054906101000a900461ffff1661ffff1660001415612c9457506000919050565b612e42565b8160ff1660011415612d04576001600c60068282829054906101000a900461ffff16612cc591906139b6565b92506101000a81548161ffff021916908361ffff160217905550600c60069054906101000a900461ffff1661ffff1660001415612c9457506000919050565b8160ff1660021415612d6f576001600c60088282829054906101000a900461ffff16612d3091906139b6565b92506101000a81548161ffff021916908361ffff160217905550600c60089054906101000a900461ffff1661ffff1660001415612c9457506000919050565b8160ff1660031415612dda576001600c600a8282829054906101000a900461ffff16612d9b91906139b6565b92506101000a81548161ffff021916908361ffff160217905550600c600a9054906101000a900461ffff1661ffff1660001415612c9457506000919050565b8160ff1660041415612e42576001600c808282829054906101000a900461ffff16612e0591906139b6565b92506101000a81548161ffff021916908361ffff160217905550600c8054906101000a900461ffff1661ffff1660001415612e4257506000919050565b506001919050565b805b600c5460ff600160801b90910481169082161015612ebe57600d6000612e7383600161395e565b60ff908116825260208083019390935260409182016000908120548583168252600d90945291909120805460ff19169290911691909117905580612eb681613ab7565b915050612e4c565b506001600c60108282829054906101000a900460ff16612ede91906139f0565b92506101000a81548160ff021916908360ff16021790555050565b6001600160a01b038216612f4f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bbc565b6000818152600260205260409020546001600160a01b031615612fb45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bbc565b612fc0600083836129e4565b6001600160a01b0382166000908152600360205260408120805460019290612fe9908490613946565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613054846114ef565b61305e91906139d9565b6000838152600760205260409020549091508082146130b1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906130f6906001906139d9565b6000838152600960205260408120546008805493945090928490811061311e5761311e613b2d565b90600052602060002001549050806008838154811061313f5761313f613b2d565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061317757613177613b17565b6001900381819060005260206000200160009055905550505050565b600061319e836114ef565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546131e390613a3f565b90600052602060002090601f016020900481019282613205576000855561324b565b82601f1061321e57805160ff191683800117855561324b565b8280016001018555821561324b579182015b8281111561324b578251825591602001919060010190613230565b5061325792915061325b565b5090565b5b80821115613257576000815560010161325c565b600067ffffffffffffffff8084111561328b5761328b613b43565b604051601f8501601f19908116603f011681019082821181831017156132b3576132b3613b43565b816040528093508581528686860111156132cc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146132fd57600080fd5b919050565b803580151581146132fd57600080fd5b803561ffff811681146132fd57600080fd5b803560ff811681146132fd57600080fd5b60006020828403121561334757600080fd5b612c24826132e6565b6000806040838503121561336357600080fd5b61336c836132e6565b915061337a602084016132e6565b90509250929050565b60008060006060848603121561339857600080fd5b6133a1846132e6565b92506133af602085016132e6565b9150604084013590509250925092565b600080600080608085870312156133d557600080fd5b6133de856132e6565b93506133ec602086016132e6565b925060408501359150606085013567ffffffffffffffff81111561340f57600080fd5b8501601f8101871361342057600080fd5b61342f87823560208401613270565b91505092959194509250565b6000806040838503121561344e57600080fd5b613457836132e6565b915061337a60208401613302565b6000806040838503121561347857600080fd5b613481836132e6565b946020939093013593505050565b6000806000606084860312156134a457600080fd5b6134ad846132e6565b92506134bb60208501613324565b91506134c960408501613312565b90509250925092565b600080600080608085870312156134e857600080fd5b6134f1856132e6565b93506134ff60208601613324565b925061350d60408601613312565b915061351b60608601613324565b905092959194509250565b60006020828403121561353857600080fd5b612c2482613302565b60006020828403121561355357600080fd5b8135612c2481613b59565b60006020828403121561357057600080fd5b8151612c2481613b59565b60006020828403121561358d57600080fd5b813567ffffffffffffffff8111156135a457600080fd5b8201601f810184136135b557600080fd5b610ea484823560208401613270565b6000602082840312156135d657600080fd5b612c2482613312565b600080600080600060a086880312156135f757600080fd5b61360086613312565b945061360e60208701613312565b935061361c60408701613312565b925061362a60608701613312565b915061363860808701613312565b90509295509295909350565b60006020828403121561365657600080fd5b5035919050565b60006020828403121561366f57600080fd5b813567ffffffffffffffff81168114612c2457600080fd5b60006020828403121561369957600080fd5b612c2482613324565b600081518084526136ba816020860160208601613a13565b601f01601f19169290920160200192915050565b600084516136e0818460208901613a13565b8451908301906136f4818360208901613a13565b8451910190613707818360208801613a13565b64173539b7b760d91b910190815260050195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613754908301846136a2565b9695505050505050565b602080825282518282018190526000919060409081850190868401855b828110156137b5578151805161ffff1685528681015160ff908116888701529086015116858501526060909301929085019060010161377b565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156137fe57835161ffff16835292840192918401916001016137de565b50909695505050505050565b602081526000612c2460208301846136a2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260119082015270424220436f6e747261637473204f6e6c7960781b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff80831681851680830382111561393d5761393d613aeb565b01949350505050565b6000821982111561395957613959613aeb565b500190565b600060ff821660ff84168060ff0382111561397b5761397b613aeb565b019392505050565b60008261399257613992613b01565b500490565b60008160001904831182151516156139b1576139b1613aeb565b500290565b600061ffff838116908316818110156139d1576139d1613aeb565b039392505050565b6000828210156139eb576139eb613aeb565b500390565b600060ff821660ff841680821015613a0a57613a0a613aeb565b90039392505050565b60005b83811015613a2e578181015183820152602001613a16565b838111156116e95750506000910152565b600181811c90821680613a5357607f821691505b60208210811415613a7457634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415613a9257613a92613aeb565b6001019392505050565b6000600019821415613ab057613ab0613aeb565b5060010190565b600060ff821660ff811415613ace57613ace613aeb565b60010192915050565b600082613ae657613ae6613b01565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611b9d57600080fdfea26469706673582212200c4bd113ef76a36a4416a8571d0df617108c7a56325a36e083213ace702facf564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000b426c6f636b426561726473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000242420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54446743354c414e6d6d66513133477252594b6455614572694d4352567451666e644236566e396d7a6862532f000000000000000000000000000000000000000000000000000000000000000000000000000000000046697066733a2f2f516d4e594e78515358417641443534575633446a5867684e35374c733846556246487161396850716576454a67642f706c616365686f6c6465722e6a736f6e0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): BlockBeards
Arg [1] : _symbol (string): BB
Arg [2] : _initBaseURIL1 (string): ipfs://QmTDgC5LANmmfQ13GrRYKdUaEriMCRVtQfndB6Vn9mzhbS/
Arg [3] : _notRevealedURI (string): ipfs://QmNYNxQSXAvAD54WV3DjXghN57Ls8FUbFHqa9hPqevEJgd/placeholder.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 426c6f636b426561726473000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4242000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d54446743354c414e6d6d66513133477252594b64556145
Arg [10] : 72694d4352567451666e644236566e396d7a6862532f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000046
Arg [12] : 697066733a2f2f516d4e594e78515358417641443534575633446a5867684e35
Arg [13] : 374c733846556246487161396850716576454a67642f706c616365686f6c6465
Arg [14] : 722e6a736f6e0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44478:10907:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38266:224;;;;;;;;;;-1:-1:-1;38266:224:0;;;;;:::i;:::-;;:::i;:::-;;;10676:14:1;;10669:22;10651:41;;10639:2;10624:18;38266:224:0;;;;;;;;44648:21;;;;;;;;;;-1:-1:-1;44648:21:0;;;;;;;;;;;;;;21114:6:1;21102:19;;;21084:38;;21072:2;21057:18;44648:21:0;20940:188:1;25760:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27319:221::-;;;;;;;;;;-1:-1:-1;27319:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8385:32:1;;;8367:51;;8355:2;8340:18;27319:221:0;8221:203:1;26842:411:0;;;;;;;;;;-1:-1:-1;26842:411:0;;;;;:::i;:::-;;:::i;:::-;;49896:99;;;;;;;;;;-1:-1:-1;49896:99:0;;;;;:::i;:::-;;:::i;52711:113::-;;;;;;;;;;;;;:::i;51629:132::-;;;;;;;;;;-1:-1:-1;51629:132:0;;;;;:::i;:::-;;:::i;44574:32::-;;;;;;;;;;;;;;;;;;;21628:25:1;;;21616:2;21601:18;44574:32:0;21482:177:1;38906:113:0;;;;;;;;;;-1:-1:-1;38994:10:0;:17;38906:113;;54534:341;;;;;;;;;;-1:-1:-1;54534:341:0;;;;;:::i;:::-;;:::i;52061:79::-;;;;;;;;;;-1:-1:-1;52061:79:0;;;;;:::i;:::-;;:::i;50225:116::-;;;;;;;;;;-1:-1:-1;50225:116:0;;;;;:::i;:::-;;:::i;28069:339::-;;;;;;;;;;-1:-1:-1;28069:339:0;;;;;:::i;:::-;;:::i;38574:256::-;;;;;;;;;;-1:-1:-1;38574:256:0;;;;;:::i;:::-;;:::i;50003:78::-;;;;;;;;;;;;;:::i;55256:120::-;;;:::i;28479:185::-;;;;;;;;;;-1:-1:-1;28479:185:0;;;;;:::i;:::-;;:::i;50353:116::-;;;;;;;;;;-1:-1:-1;50353:116:0;;;;;:::i;:::-;;:::i;39096:233::-;;;;;;;;;;-1:-1:-1;39096:233:0;;;;;:::i;:::-;;:::i;50087:126::-;;;;;;;;;;-1:-1:-1;50087:126:0;;;;;:::i;:::-;;:::i;51773:132::-;;;;;;;;;;-1:-1:-1;51773:132:0;;;;;:::i;:::-;;:::i;52853:383::-;;;;;;;;;;-1:-1:-1;52853:383:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52176:148::-;;;;;;;;;;;;;:::i;:::-;;;;21923:25:1;;;21979:2;21964:18;;21957:34;;;;22007:18;;;22000:34;;;;22065:2;22050:18;;22043:34;22108:3;22093:19;;22086:35;21910:3;21895:19;52176:148:0;21664:463:1;51389:84:0;;;;;;;;;;-1:-1:-1;51389:84:0;;;;;:::i;:::-;;:::i;44836:24::-;;;;;;;;;;-1:-1:-1;44836:24:0;;;;-1:-1:-1;;;44836:24:0;;;;;;25454:239;;;;;;;;;;-1:-1:-1;25454:239:0;;;;;:::i;:::-;;:::i;50609:116::-;;;;;;;;;;-1:-1:-1;50609:116:0;;;;;:::i;:::-;;:::i;51485:132::-;;;;;;;;;;-1:-1:-1;51485:132:0;;;;;:::i;:::-;;:::i;25184:208::-;;;;;;;;;;-1:-1:-1;25184:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;50737:116::-;;;;;;;;;;-1:-1:-1;50737:116:0;;;;;:::i;:::-;;:::i;53270:367::-;;;;;;;;;;-1:-1:-1;53270:367:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44611:32::-;;;;;;;;;;-1:-1:-1;44611:32:0;;;;;;;;4079:87;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;25929:104;;;;;;;;;;;;;:::i;27612:155::-;;;;;;;;;;-1:-1:-1;27612:155:0;;;;;:::i;:::-;;:::i;45005:40::-;;;;;;;;;;-1:-1:-1;45005:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21355:6:1;21343:19;;;21325:38;;21411:4;21399:17;;;21394:2;21379:18;;21372:45;21453:17;;21433:18;;;21426:45;21313:2;21298:18;45005:40:0;21133:344:1;28735:328:0;;;;;;;;;;-1:-1:-1;28735:328:0;;;;;:::i;:::-;;:::i;54887:360::-;;;;;;;;;;-1:-1:-1;54887:360:0;;;;;:::i;:::-;;:::i;48848:1018::-;;;;;;;;;;-1:-1:-1;48848:1018:0;;;;;:::i;:::-;;:::i;51285:96::-;;;;;;;;;;-1:-1:-1;51285:96:0;;;;;:::i;:::-;;:::i;52461:113::-;;;;;;;;;;;;;:::i;53649:170::-;;;;;;;;;;-1:-1:-1;53649:170:0;;;;;:::i;:::-;53749:21;;53716:5;53749:21;;;:11;:21;;;;;:32;;;;;;;;53783:27;;;;;;53649:170;;;;;22328:4:1;22316:17;;;22298:36;;22370:17;;;;22365:2;22350:18;;22343:45;22271:18;53649:170:0;22132:262:1;27838:164:0;;;;;;;;;;-1:-1:-1;27838:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27959:25:0;;;27935:4;27959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27838:164;48709:127;;;;;;:::i;:::-;;:::i;52336:113::-;;;;;;;;;;;;;:::i;4988:201::-;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;53827:342::-;;;;;;;;;;-1:-1:-1;53827:342:0;;;;;:::i;:::-;;:::i;54181:341::-;;;;;;;;;;-1:-1:-1;54181:341:0;;;;;:::i;:::-;;:::i;50861:410::-;;;;;;;;;;-1:-1:-1;50861:410:0;;;;;:::i;:::-;;:::i;51917:132::-;;;;;;;;;;-1:-1:-1;51917:132:0;;;;;:::i;:::-;;:::i;52586:113::-;;;;;;;;;;;;;:::i;38266:224::-;38368:4;-1:-1:-1;;;;;;38392:50:0;;-1:-1:-1;;;38392:50:0;;:90;;;38446:36;38470:11;38446:23;:36::i;:::-;38385:97;38266:224;-1:-1:-1;;38266:224:0:o;25760:100::-;25814:13;25847:5;25840:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25760:100;:::o;27319:221::-;27395:7;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;27415:73;;;;-1:-1:-1;;;27415:73:0;;17287:2:1;27415:73:0;;;17269:21:1;17326:2;17306:18;;;17299:30;17365:34;17345:18;;;17338:62;-1:-1:-1;;;17416:18:1;;;17409:42;17468:19;;27415:73:0;;;;;;;;;-1:-1:-1;27508:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27508:24:0;;27319:221::o;26842:411::-;26923:13;26939:23;26954:7;26939:14;:23::i;:::-;26923:39;;26987:5;-1:-1:-1;;;;;26981:11:0;:2;-1:-1:-1;;;;;26981:11:0;;;26973:57;;;;-1:-1:-1;;;26973:57:0;;19576:2:1;26973:57:0;;;19558:21:1;19615:2;19595:18;;;19588:30;19654:34;19634:18;;;19627:62;-1:-1:-1;;;19705:18:1;;;19698:31;19746:19;;26973:57:0;19374:397:1;26973:57:0;2883:10;-1:-1:-1;;;;;27065:21:0;;;;:62;;-1:-1:-1;27090:37:0;27107:5;2883:10;27838:164;:::i;27090:37::-;27043:168;;;;-1:-1:-1;;;27043:168:0;;14925:2:1;27043:168:0;;;14907:21:1;14964:2;14944:18;;;14937:30;15003:34;14983:18;;;14976:62;15074:26;15054:18;;;15047:54;15118:19;;27043:168:0;14723:420:1;27043:168:0;27224:21;27233:2;27237:7;27224:8;:21::i;:::-;26912:341;26842:411;;:::o;49896:99::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49966:7:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;49966:21:0::1;-1:-1:-1::0;;;;49966:21:0;;::::1;::::0;;;::::1;::::0;;49896:99::o;52711:113::-;4152:6;;52772:7;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;52799:17:0::1;::::0;-1:-1:-1;;;;;52799:17:0::1;52711:113:::0;:::o;51629:132::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51715:17:::1;:38:::0;;-1:-1:-1;;;;;;51715:38:0::1;-1:-1:-1::0;;;;;51715:38:0;;;::::1;::::0;;;::::1;::::0;;51629:132::o;54534:341::-;54654:17;;54613:6;;-1:-1:-1;;;;;54654:17:0;54640:10;:31;54632:61;;;;-1:-1:-1;;;54632:61:0;;;;;;;:::i;:::-;54704:33;54714:3;54719:13;38994:10;:17;;38906:113;54719:13;:17;;54735:1;54719:17;:::i;:::-;54704:9;:33::i;:::-;54785:43;;;;;;;;54793:6;54785:43;;;;;;54813:3;54785:43;;;;;;54825:1;54785:43;;;;;54748:11;:34;54767:13;38994:10;:17;;38906:113;54767:13;54748:34;;;;;;;;;;;;;;;;;;-1:-1:-1;54748:34:0;:80;;;;;;;;;;;;;;;;;-1:-1:-1;;54748:80:0;;;;;;;;;;;;;;-1:-1:-1;;54748:80:0;;;;;;;;;;;;;;;;38994:10;:17;54853:13;54839:28;54534:341;-1:-1:-1;;;;54534:341:0:o;52061:79::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;52120:4:::1;:12:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;52120:12:0::1;-1:-1:-1::0;;;;52120:12:0;;::::1;::::0;;;::::1;::::0;;52061:79::o;50225:116::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50306:27;;::::1;::::0;:9:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50225:116:::0;:::o;28069:339::-;28264:41;2883:10;28297:7;28264:18;:41::i;:::-;28256:103;;;;-1:-1:-1;;;28256:103:0;;;;;;;:::i;:::-;28372:28;28382:4;28388:2;28392:7;28372:9;:28::i;38574:256::-;38671:7;38707:23;38724:5;38707:16;:23::i;:::-;38699:5;:31;38691:87;;;;-1:-1:-1;;;38691:87:0;;11129:2:1;38691:87:0;;;11111:21:1;11168:2;11148:18;;;11141:30;11207:34;11187:18;;;11180:62;-1:-1:-1;;;11258:18:1;;;11251:41;11309:19;;38691:87:0;10927:407:1;38691:87:0;-1:-1:-1;;;;;;38796:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38574:256::o;50003:78::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50058:8:::1;:15:::0;;-1:-1:-1;;;;50058:15:0::1;-1:-1:-1::0;;;50058:15:0::1;::::0;;50003:78::o;55256:120::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;55320:47:::1;::::0;55328:10:::1;::::0;55345:21:::1;55320:47:::0;::::1;;;::::0;::::1;::::0;;;55345:21;55328:10;55320:47;::::1;;;;;;55312:56;;;::::0;::::1;;55256:120::o:0;28479:185::-;28617:39;28634:4;28640:2;28644:7;28617:39;;;;;;;;;;;;:16;:39::i;50353:116::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50434:27;;::::1;::::0;:9:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;39096:233::-:0;39171:7;39207:30;38994:10;:17;;38906:113;39207:30;39199:5;:38;39191:95;;;;-1:-1:-1;;;39191:95:0;;20396:2:1;39191:95:0;;;20378:21:1;20435:2;20415:18;;;20408:30;20474:34;20454:18;;;20447:62;-1:-1:-1;;;20525:18:1;;;20518:42;20577:19;;39191:95:0;20194:408:1;39191:95:0;39304:10;39315:5;39304:17;;;;;;;;:::i;:::-;;;;;;;;;39297:24;;39096:233;;;:::o;50087:126::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50173:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;51773:132::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51859:17:::1;:38:::0;;-1:-1:-1;;;;;;51859:38:0::1;-1:-1:-1::0;;;;;51859:38:0;;;::::1;::::0;;;::::1;::::0;;51773:132::o;52853:383::-;52912:11;52936:14;52960:17;52970:6;52960:9;:17::i;:::-;52936:42;;52989:19;53020:7;53011:17;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;53011:17:0;;-1:-1:-1;;53011:17:0;;;;;;;;;;;;52989:39;;53044:8;53039:165;53058:7;53056:9;;:1;:9;;;53039:165;;;53087:15;53112:30;53132:6;53140:1;53112:30;;:19;:30::i;:::-;53171:21;;;;;;;;:11;:21;;;;;;;;;53158:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:10;;53087:56;;-1:-1:-1;53158:34:0;:7;;:10;;;;;;;;;:::i;:::-;;;;;;:34;;;;53072:132;53067:3;;;;;:::i;:::-;;;;53039:165;;;-1:-1:-1;53221:7:0;52853:383;-1:-1:-1;;;52853:383:0:o;52176:148::-;52240:4;;;;;2883:10;-1:-1:-1;;;;;4299:23:0;:7;4152:6;;-1:-1:-1;;;;;4152:6:0;;4079:87;4299:7;-1:-1:-1;;;;;4299:23:0;;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;52285:5:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;52291;;::::1;::::0;::::1;::::0;-1:-1:-1;;;;52297:5:0;::::1;::::0;::::1;::::0;-1:-1:-1;;;;52303:6:0;::::1;::::0;::::1;::::0;-1:-1:-1;;;;52310:5:0;;::::1;;::::0;52176:148::o;51389:84::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51450:15:::1;;:4;:15:::0;51389:84::o;25454:239::-;25526:7;25562:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25562:16:0;25597:19;25589:73;;;;-1:-1:-1;;;25589:73:0;;16113:2:1;25589:73:0;;;16095:21:1;16152:2;16132:18;;;16125:30;16191:34;16171:18;;;16164:62;-1:-1:-1;;;16242:18:1;;;16235:39;16291:19;;25589:73:0;15911:405:1;50609:116:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50690:27;;::::1;::::0;:9:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;51485:132::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51571:17:::1;:38:::0;;-1:-1:-1;;;;;;51571:38:0::1;-1:-1:-1::0;;;;;51571:38:0;;;::::1;::::0;;;::::1;::::0;;51485:132::o;25184:208::-;25256:7;-1:-1:-1;;;;;25284:19:0;;25276:74;;;;-1:-1:-1;;;25276:74:0;;15702:2:1;25276:74:0;;;15684:21:1;15741:2;15721:18;;;15714:30;15780:34;15760:18;;;15753:62;-1:-1:-1;;;15831:18:1;;;15824:40;15881:19;;25276:74:0;15500:406:1;25276:74:0;-1:-1:-1;;;;;;25368:16:0;;;;;:9;:16;;;;;;;25184:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;50737:116::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;50818:27;;::::1;::::0;:9:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;53270:367::-:0;53337:15;53365:14;53389:17;53399:6;53389:9;:17::i;:::-;53365:42;;53418:29;53463:7;53450:21;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53450:21:0;;53418:53;;53487:8;53482:117;53501:7;53499:9;;:1;:9;;;53482:117;;;53556:30;53576:6;53584:1;53556:30;;:19;:30::i;:::-;53530:13;53544:1;53530:16;;;;;;;;;;:::i;:::-;:57;;;;:16;;;;;;;;;;;:57;53510:3;;;;:::i;:::-;;;;53482:117;;25929:104;25985:13;26018:7;26011:14;;;;;:::i;27612:155::-;27707:52;2883:10;27740:8;27750;27707:18;:52::i;28735:328::-;28910:41;2883:10;28943:7;28910:18;:41::i;:::-;28902:103;;;;-1:-1:-1;;;28902:103:0;;;;;;;:::i;:::-;29016:39;29030:4;29036:2;29040:7;29049:5;29016:13;:39::i;:::-;28735:328;;;;:::o;54887:360::-;55021:17;;54980:6;;-1:-1:-1;;;;;55021:17:0;55007:10;:31;54999:61;;;;-1:-1:-1;;;54999:61:0;;;;;;;:::i;:::-;55071:33;55081:3;55086:13;38994:10;:17;;38906:113;55071:33;55152:48;;;;;;;;55160:6;55152:48;;;;;;55180:3;55152:48;;;;;;55192:6;55152:48;;;;;55115:11;:34;55134:13;38994:10;:17;;38906:113;55134:13;55115:34;;;;;;;;;;;;;;;;;;-1:-1:-1;55115:34:0;:85;;;;;;;;;;;;;;;;;-1:-1:-1;;55115:85:0;;;;;;;;;;;;;;-1:-1:-1;;55115:85:0;;;;;;;;;;;;;;;;38994:10;:17;55211:28;;54887:360;;;;;;:::o;48848:1018::-;30638:4;30662:16;;;:7;:16;;;;;;48922:13;;-1:-1:-1;;;;;30662:16:0;48948:76;;;;-1:-1:-1;;;48948:76:0;;19160:2:1;48948:76:0;;;19142:21:1;19199:2;19179:18;;;19172:30;19238:34;19218:18;;;19211:62;-1:-1:-1;;;19289:18:1;;;19282:45;19344:19;;48948:76:0;18958:411:1;48948:76:0;49089:29;;;49074:12;49089:29;;;:11;:29;;;;;:35;49140:8;;49035:28;;49089:35;;;;;;;;-1:-1:-1;;;49140:8:0;;;49135:65;;49172:14;49165:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48848:1018;;;:::o;49135:65::-;49218:6;:11;;49228:1;49218:11;49214:395;;;49263:9;49246:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49214:395;;;49303:6;:11;;49313:1;49303:11;49299:310;;;49348:9;49331:26;;;;;:::i;49299:310::-;49388:6;:11;;49398:1;49388:11;49384:225;;;49434:9;49417:26;;;;;:::i;49384:225::-;49474:6;:11;;49484:1;49474:11;49470:139;;;49520:9;49503:26;;;;;:::i;49470:139::-;49588:9;49571:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49470:139;49657:1;49632:14;49626:28;:32;:232;;;;;;;;;;;;;;;;;49722:29;;;;;;;:11;:29;;;;;:40;49698:14;;49714:60;;49722:40;;;;;49714:58;:60::i;:::-;49784:29;;;;;;;;:11;:29;;;;;:33;49776:53;;49784:33;49776:51;:53::i;:::-;49681:158;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49619:239;48848:1018;-1:-1:-1;;;;48848:1018:0:o;51285:96::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51354:9:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;51354:19:0::1;-1:-1:-1::0;;;;51354:19:0;;::::1;::::0;;;::::1;::::0;;51285:96::o;52461:113::-;4152:6;;52522:7;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;52549:17:0::1;::::0;-1:-1:-1;;;;;52549:17:0::1;52461:113:::0;:::o;48709:127::-;48782:46;48804:10;48816:11;48782:21;:46::i;:::-;48709:127;:::o;52336:113::-;4152:6;;52397:7;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;52424:17:0::1;::::0;-1:-1:-1;;;;;52424:17:0::1;52336:113:::0;:::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;11960:2:1;5069:73:0::1;::::0;::::1;11942:21:1::0;11999:2;11979:18;;;11972:30;12038:34;12018:18;;;12011:62;-1:-1:-1;;;12089:18:1;;;12082:36;12135:19;;5069:73:0::1;11758:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;53827:342::-:0;53947:17;;53906:6;;-1:-1:-1;;;;;53947:17:0;53933:10;:31;53925:61;;;;-1:-1:-1;;;53925:61:0;;;;;;;:::i;:::-;53997:33;54007:3;54012:13;38994:10;:17;;38906:113;53997:33;54078:44;;;;;;;;54087:6;54078:44;;;;;;54107:3;54078:44;;;;;;54119:1;54078:44;;;;;54041:11;:34;54060:13;38994:10;:17;;38906:113;54181:341;54301:17;;54260:6;;-1:-1:-1;;;;;54301:17:0;54287:10;:31;54279:61;;;;-1:-1:-1;;;54279:61:0;;;;;;;:::i;:::-;54351:33;54361:3;54366:13;38994:10;:17;;38906:113;54351:33;54432:43;;;;;;;;54440:6;54432:43;;;;;;54460:3;54432:43;;;;;;54472:1;54432:43;;;;;54395:11;:34;54414:13;38994:10;:17;;38906:113;50861:410;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;51039:19:::1;45971:17:::0;:20;;;:24;;-1:-1:-1;;45971:24:0;;;;;;46006:20;:24;;;;45971;46006;;;46041:20;:24;;;;46064:1;46041:24;;;46076:20;:24;;;;46099:1;46076:24;;;46134:1;45994;46111:20;;;;:24;;;;;;;;45923:220;51039:19:::1;51069:16;:20:::0;;-1:-1:-1;;;;;51100:23:0;;;;::::1;::::0;;::::1;;::::0;;-1:-1:-1;;51169:24:0;51134;;;::::1;::::0;;;::::1;-1:-1:-1::0;;51169:24:0;;;;;-1:-1:-1;;;51169:24:0;;::::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;51240:23:0;-1:-1:-1;;;51204:25:0;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;51240:23:0;;-1:-1:-1;;;51240:23:0;;;::::1;;::::0;;;::::1;::::0;;50861:410::o;51917:132::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;52003:17:::1;:38:::0;;-1:-1:-1;;;;;;52003:38:0::1;-1:-1:-1::0;;;;;52003:38:0;;;::::1;::::0;;;::::1;::::0;;51917:132::o;52586:113::-;4152:6;;52647:7;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;52674:17:0::1;::::0;-1:-1:-1;;;;;52674:17:0::1;52586:113:::0;:::o;24815:305::-;24917:4;-1:-1:-1;;;;;;24954:40:0;;-1:-1:-1;;;24954:40:0;;:105;;-1:-1:-1;;;;;;;25011:48:0;;-1:-1:-1;;;25011:48:0;24954:105;:158;;;-1:-1:-1;;;;;;;;;;16620:40:0;;;25076:36;16511:157;34555:174;34630:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34630:29:0;-1:-1:-1;;;;;34630:29:0;;;;;;;;:24;;34684:23;34630:24;34684:14;:23::i;:::-;-1:-1:-1;;;;;34675:46:0;;;;;;;;;;;34555:174;;:::o;31557:110::-;31633:26;31643:2;31647:7;31633:26;;;;;;;;;;;;:9;:26::i;30867:348::-;30960:4;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;30977:73;;;;-1:-1:-1;;;30977:73:0;;14512:2:1;30977:73:0;;;14494:21:1;14551:2;14531:18;;;14524:30;14590:34;14570:18;;;14563:62;-1:-1:-1;;;14641:18:1;;;14634:42;14693:19;;30977:73:0;14310:408:1;30977:73:0;31061:13;31077:23;31092:7;31077:14;:23::i;:::-;31061:39;;31130:5;-1:-1:-1;;;;;31119:16:0;:7;-1:-1:-1;;;;;31119:16:0;;:51;;;;31163:7;-1:-1:-1;;;;;31139:31:0;:20;31151:7;31139:11;:20::i;:::-;-1:-1:-1;;;;;31139:31:0;;31119:51;:87;;;-1:-1:-1;;;;;;27959:25:0;;;27935:4;27959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31174:32;27838:164;33859:578;34018:4;-1:-1:-1;;;;;33991:31:0;:23;34006:7;33991:14;:23::i;:::-;-1:-1:-1;;;;;33991:31:0;;33983:85;;;;-1:-1:-1;;;33983:85:0;;18750:2:1;33983:85:0;;;18732:21:1;18789:2;18769:18;;;18762:30;18828:34;18808:18;;;18801:62;-1:-1:-1;;;18879:18:1;;;18872:39;18928:19;;33983:85:0;18548:405:1;33983:85:0;-1:-1:-1;;;;;34087:16:0;;34079:65;;;;-1:-1:-1;;;34079:65:0;;13753:2:1;34079:65:0;;;13735:21:1;13792:2;13772:18;;;13765:30;13831:34;13811:18;;;13804:62;-1:-1:-1;;;13882:18:1;;;13875:34;13926:19;;34079:65:0;13551:400:1;34079:65:0;34157:39;34178:4;34184:2;34188:7;34157:20;:39::i;:::-;34261:29;34278:1;34282:7;34261:8;:29::i;:::-;-1:-1:-1;;;;;34303:15:0;;;;;;:9;:15;;;;;:20;;34322:1;;34303:15;:20;;34322:1;;34303:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34334:13:0;;;;;;:9;:13;;;;;:18;;34351:1;;34334:13;:18;;34351:1;;34334:18;:::i;:::-;;;;-1:-1:-1;;34363:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34363:21:0;-1:-1:-1;;;;;34363:21:0;;;;;;;;;34402:27;;34363:16;;34402:27;;;;;;;33859:578;;;:::o;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;34871:315::-;35026:8;-1:-1:-1;;;;;35017:17:0;:5;-1:-1:-1;;;;;35017:17:0;;;35009:55;;;;-1:-1:-1;;;35009:55:0;;14158:2:1;35009:55:0;;;14140:21:1;14197:2;14177:18;;;14170:30;14236:27;14216:18;;;14209:55;14281:18;;35009:55:0;13956:349:1;35009:55:0;-1:-1:-1;;;;;35075:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35075:46:0;;;;;;;;;;35137:41;;10651::1;;;35137::0;;10624:18:1;35137:41:0;;;;;;;34871:315;;;:::o;29945:::-;30102:28;30112:4;30118:2;30122:7;30102:9;:28::i;:::-;30149:48;30172:4;30178:2;30182:7;30191:5;30149:22;:48::i;:::-;30141:111;;;;-1:-1:-1;;;30141:111:0;;;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;47265:1430;47355:9;;-1:-1:-1;;;47355:9:0;;;;47347:33;;;;-1:-1:-1;;;47347:33:0;;12724:2:1;47347:33:0;;;12706:21:1;12763:2;12743:18;;;12736:30;-1:-1:-1;;;12782:18:1;;;12775:41;12833:18;;47347:33:0;12522:335:1;47347:33:0;47413:1;47399:11;:15;;;47391:42;;;;-1:-1:-1;;;47391:42:0;;13410:2:1;47391:42:0;;;13392:21:1;13449:2;13429:18;;;13422:30;-1:-1:-1;;;13468:18:1;;;13461:44;13522:18;;47391:42:0;13208:338:1;47391:42:0;47467:1;47452:11;:16;;;;47444:34;;;;-1:-1:-1;;;47444:34:0;;20809:2:1;47444:34:0;;;20791:21:1;20848:1;20828:18;;;20821:29;-1:-1:-1;;;20866:18:1;;;20859:35;20911:18;;47444:34:0;20607:328:1;47444:34:0;47522:11;;;;;;;47497:21;;;;;;:7;;;;:21;:::i;:::-;:36;;;;47489:60;;;;-1:-1:-1;;;47489:60:0;;17700:2:1;47489:60:0;;;17682:21:1;17739:2;17719:18;;;17712:30;-1:-1:-1;;;17758:18:1;;;17751:41;17809:18;;47489:60:0;17498:335:1;47489:60:0;4152:6;;-1:-1:-1;;;;;47563:14:0;;;4152:6;;47563:14;47560:433;;47597:7;;-1:-1:-1;;;47597:7:0;;;;47594:333;;;47633:4;;-1:-1:-1;;;47633:4:0;;;;47625:44;;;;-1:-1:-1;;;47625:44:0;;15350:2:1;47625:44:0;;;15332:21:1;15389:2;15369:18;;;15362:30;15428:25;15408:18;;;15401:53;15471:18;;47625:44:0;15148:347:1;47625:44:0;47721:4;;;-1:-1:-1;;;47721:4:0;;;;;47696:21;;;;;;:7;;;;:21;:::i;:::-;:29;;;;47688:62;;;;-1:-1:-1;;;47688:62:0;;18401:2:1;47688:62:0;;;18383:21:1;18440:2;18420:18;;;18413:30;-1:-1:-1;;;18459:18:1;;;18452:50;18519:18;;47688:62:0;18199:344:1;47688:62:0;47770:22;47795:14;47805:3;47795:9;:14::i;:::-;47770:39;-1:-1:-1;47871:1:0;47836:31;;;;47770:39;47836:31;:::i;:::-;:36;;47828:83;;;;-1:-1:-1;;;47828:83:0;;16523:2:1;47828:83:0;;;16505:21:1;16562:2;16542:18;;;16535:30;16601:34;16581:18;;;16574:62;-1:-1:-1;;;16652:18:1;;;16645:32;16694:19;;47828:83:0;16321:398:1;47828:83:0;47606:321;47594:333;47969:11;47962:18;;:4;;:18;;;;:::i;:::-;47949:9;:31;;47941:40;;;;;;48020:1;48003:685;48028:11;48023:16;;:1;:16;48003:685;;48113:16;;48061:26;;48096:34;;-1:-1:-1;;;48113:16:0;;;;48096;:34::i;:::-;48160:39;;;;48147:10;48160:39;;;:17;:39;;;;;;48061:70;;-1:-1:-1;48160:39:0;48214:33;48224:3;48229:13;38994:10;:17;;38906:113;48214:33;48271:1;48262:7;;:10;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;48309:15;;;-1:-1:-1;48309:15:0;;;:9;:15;;;;;;;;-1:-1:-1;48339:15:0;-1:-1:-1;48309:15:0;48339;:::i;:::-;;;48406:52;;;;;;;;48415:12;48406:52;;;;;;48441:4;48406:52;;;;;;48455:1;48406:52;;;;;48369:11;:34;48388:13;38994:10;:17;;38906:113;48388:13;48369:34;;;;;;;;;;;;;;;;;;-1:-1:-1;48369:34:0;:89;;;;;;;;;;;;;;;-1:-1:-1;;48369:89:0;;;;;;;;;;;-1:-1:-1;;48369:89:0;;;;;;;;;;;;48478:39;;21102:19:1;;;21084:38;;-1:-1:-1;;48478:39:0;;;-1:-1:-1;;;;;48478:39:0;;;;;21057:18:1;48478:39:0;;;;;;;48532:15;;;;;;;:9;:15;;;;;:30;;-1:-1:-1;;48532:30:0;;;;;;;48582:19;48532:15;48582:13;:19::i;:::-;48577:100;;48622:39;48640:20;48622:17;:39::i;:::-;48046:642;;;48041:3;;;;;:::i;:::-;;;;48003:685;;31894:321;32024:18;32030:2;32034:7;32024:5;:18::i;:::-;32075:54;32106:1;32110:2;32114:7;32123:5;32075:22;:54::i;:::-;32053:154;;;;-1:-1:-1;;;32053:154:0;;;;;;;:::i;39942:589::-;-1:-1:-1;;;;;40148:18:0;;40144:187;;40183:40;40215:7;41358:10;:17;;41331:24;;;;:15;:24;;;;;:44;;;41386:24;;;;;;;;;;;;41254:164;40183:40;40144:187;;;40253:2;-1:-1:-1;;;;;40245:10:0;:4;-1:-1:-1;;;;;40245:10:0;;40241:90;;40272:47;40305:4;40311:7;40272:32;:47::i;:::-;-1:-1:-1;;;;;40345:16:0;;40341:183;;40378:45;40415:7;40378:36;:45::i;40341:183::-;40451:4;-1:-1:-1;;;;;40445:10:0;:2;-1:-1:-1;;;;;40445:10:0;;40441:83;;40472:40;40500:2;40504:7;40472:27;:40::i;35751:799::-;35906:4;-1:-1:-1;;;;;35927:13:0;;6690:20;6738:8;35923:620;;35963:72;;-1:-1:-1;;;35963:72:0;;-1:-1:-1;;;;;35963:36:0;;;;;:72;;2883:10;;36014:4;;36020:7;;36029:5;;35963:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35963:72:0;;;;;;;;-1:-1:-1;;35963:72:0;;;;;;;;;;;;:::i;:::-;;;35959:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36205:13:0;;36201:272;;36248:60;;-1:-1:-1;;;36248:60:0;;;;;;;:::i;36201:272::-;36423:6;36417:13;36408:6;36404:2;36400:15;36393:38;35959:529;-1:-1:-1;;;;;;36086:51:0;-1:-1:-1;;;36086:51:0;;-1:-1:-1;36079:58:0;;35923:620;-1:-1:-1;36527:4:0;36520:11;;46177:271;46236:7;46255:17;46310:15;46327:10;46339:14;46355:16;46373:14;46389:13;38994:10;:17;;38906:113;46389:13;46293:111;;;;;;7889:19:1;;;;-1:-1:-1;;7996:2:1;7992:15;;;7988:24;;7974:12;;;7967:46;;;;8047:15;;;;8043:24;;;8029:12;;;8022:46;8084:12;;;8077:28;8121:13;;;8114:29;8159:13;;;8152:29;8197:13;;46293:111:0;;;-1:-1:-1;;46293:111:0;;;;;;;;;46283:122;;46293:111;46283:122;;;;;-1:-1:-1;46424:16:0;;;;46283:122;46424:16;:::i;:::-;46417:23;46177:271;-1:-1:-1;;;46177:271:0:o;46689:553::-;46739:4;46760:8;;;46756:457;;46778:1;46771:5;;:8;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46797:5;;;;;;;;;;;:10;;46806:1;46797:10;46794:30;;;-1:-1:-1;46817:5:0;;46689:553;-1:-1:-1;46689:553:0:o;46794:30::-;46756:457;;;46854:3;:8;;46861:1;46854:8;46850:363;;;46872:1;46865:5;;:8;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46891:5;;;;;;;;;;;:10;;46900:1;46891:10;46888:30;;;-1:-1:-1;46911:5:0;;46689:553;-1:-1:-1;46689:553:0:o;46850:363::-;46948:3;:8;;46955:1;46948:8;46944:269;;;46966:1;46959:5;;:8;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46985:5;;;;;;;;;;;:10;;46994:1;46985:10;46982:30;;;-1:-1:-1;47005:5:0;;46689:553;-1:-1:-1;46689:553:0:o;46944:269::-;47042:3;:8;;47049:1;47042:8;47038:175;;;47061:1;47053:6;;:9;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47080:6;;;;;;;;;;;:11;;47090:1;47080:11;47077:31;;;-1:-1:-1;47101:5:0;;46689:553;-1:-1:-1;46689:553:0:o;47038:175::-;47138:3;:8;;47145:1;47138:8;47134:79;;;47156:1;47149:5;;:8;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47175:5;;;;;;;;;;:10;;47184:1;47175:10;47172:30;;;-1:-1:-1;47195:5:0;;46689:553;-1:-1:-1;46689:553:0:o;47172:30::-;-1:-1:-1;47230:4:0;;46689:553;-1:-1:-1;46689:553:0:o;46457:224::-;46533:9;46520:123;46546:16;;;-1:-1:-1;;;46546:16:0;;;;;46544:18;;;;46520:123;;;46607:17;:24;46625:5;:1;46629;46625:5;:::i;:::-;46607:24;;;;;;;;;;;;;;;;;;-1:-1:-1;46607:24:0;;;;46584:20;;;;;:17;:20;;;;;;;:47;;-1:-1:-1;;46584:47:0;46607:24;;;;46584:47;;;;;;46602:1;46564:3;46602:1;46564:3;:::i;:::-;;;;46520:123;;;;46672:1;46653:16;;:20;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46457:224;:::o;32551:382::-;-1:-1:-1;;;;;32631:16:0;;32623:61;;;;-1:-1:-1;;;32623:61:0;;16926:2:1;32623:61:0;;;16908:21:1;;;16945:18;;;16938:30;17004:34;16984:18;;;16977:62;17056:18;;32623:61:0;16724:356:1;32623:61:0;30638:4;30662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30662:16:0;:30;32695:58;;;;-1:-1:-1;;;32695:58:0;;12367:2:1;32695:58:0;;;12349:21:1;12406:2;12386:18;;;12379:30;12445;12425:18;;;12418:58;12493:18;;32695:58:0;12165:352:1;32695:58:0;32766:45;32795:1;32799:2;32803:7;32766:20;:45::i;:::-;-1:-1:-1;;;;;32824:13:0;;;;;;:9;:13;;;;;:18;;32841:1;;32824:13;:18;;32841:1;;32824:18;:::i;:::-;;;;-1:-1:-1;;32853:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32853:21:0;-1:-1:-1;;;;;32853:21:0;;;;;;;;32892:33;;32853:16;;;32892:33;;32853:16;;32892:33;32551:382;;:::o;42045:988::-;42311:22;42361:1;42336:22;42353:4;42336:16;:22::i;:::-;:26;;;;:::i;:::-;42373:18;42394:26;;;:17;:26;;;;;;42311:51;;-1:-1:-1;42527:28:0;;;42523:328;;-1:-1:-1;;;;;42594:18:0;;42572:19;42594:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42645:30;;;;;;:44;;;42762:30;;:17;:30;;;;;:43;;;42523:328;-1:-1:-1;42947:26:0;;;;:17;:26;;;;;;;;42940:33;;;-1:-1:-1;;;;;42991:18:0;;;;;:12;:18;;;;;:34;;;;;;;42984:41;42045:988::o;43328:1079::-;43606:10;:17;43581:22;;43606:21;;43626:1;;43606:21;:::i;:::-;43638:18;43659:24;;;:15;:24;;;;;;44032:10;:26;;43581:46;;-1:-1:-1;43659:24:0;;43581:46;;44032:26;;;;;;:::i;:::-;;;;;;;;;44010:48;;44096:11;44071:10;44082;44071:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44176:28;;;:15;:28;;;;;;;:41;;;44348:24;;;;;44341:31;44383:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43399:1008;;;43328:1079;:::o;40832:221::-;40917:14;40934:20;40951:2;40934:16;:20::i;:::-;-1:-1:-1;;;;;40965:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41010:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40832:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:159;1060:20;;1120:6;1109:18;;1099:29;;1089:57;;1142:1;1139;1132:12;1157:156;1223:20;;1283:4;1272:16;;1262:27;;1252:55;;1303:1;1300;1293:12;1318:186;1377:6;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;1509:260::-;1577:6;1585;1638:2;1626:9;1617:7;1613:23;1609:32;1606:52;;;1654:1;1651;1644:12;1606:52;1677:29;1696:9;1677:29;:::i;:::-;1667:39;;1725:38;1759:2;1748:9;1744:18;1725:38;:::i;:::-;1715:48;;1509:260;;;;;:::o;1774:328::-;1851:6;1859;1867;1920:2;1908:9;1899:7;1895:23;1891:32;1888:52;;;1936:1;1933;1926:12;1888:52;1959:29;1978:9;1959:29;:::i;:::-;1949:39;;2007:38;2041:2;2030:9;2026:18;2007:38;:::i;:::-;1997:48;;2092:2;2081:9;2077:18;2064:32;2054:42;;1774:328;;;;;:::o;2107:666::-;2202:6;2210;2218;2226;2279:3;2267:9;2258:7;2254:23;2250:33;2247:53;;;2296:1;2293;2286:12;2247:53;2319:29;2338:9;2319:29;:::i;:::-;2309:39;;2367:38;2401:2;2390:9;2386:18;2367:38;:::i;:::-;2357:48;;2452:2;2441:9;2437:18;2424:32;2414:42;;2507:2;2496:9;2492:18;2479:32;2534:18;2526:6;2523:30;2520:50;;;2566:1;2563;2556:12;2520:50;2589:22;;2642:4;2634:13;;2630:27;-1:-1:-1;2620:55:1;;2671:1;2668;2661:12;2620:55;2694:73;2759:7;2754:2;2741:16;2736:2;2732;2728:11;2694:73;:::i;:::-;2684:83;;;2107:666;;;;;;;:::o;2778:254::-;2843:6;2851;2904:2;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2943:29;2962:9;2943:29;:::i;:::-;2933:39;;2991:35;3022:2;3011:9;3007:18;2991:35;:::i;3037:254::-;3105:6;3113;3166:2;3154:9;3145:7;3141:23;3137:32;3134:52;;;3182:1;3179;3172:12;3134:52;3205:29;3224:9;3205:29;:::i;:::-;3195:39;3281:2;3266:18;;;;3253:32;;-1:-1:-1;;;3037:254:1:o;3296:328::-;3370:6;3378;3386;3439:2;3427:9;3418:7;3414:23;3410:32;3407:52;;;3455:1;3452;3445:12;3407:52;3478:29;3497:9;3478:29;:::i;:::-;3468:39;;3526:36;3558:2;3547:9;3543:18;3526:36;:::i;:::-;3516:46;;3581:37;3614:2;3603:9;3599:18;3581:37;:::i;:::-;3571:47;;3296:328;;;;;:::o;3629:399::-;3710:6;3718;3726;3734;3787:3;3775:9;3766:7;3762:23;3758:33;3755:53;;;3804:1;3801;3794:12;3755:53;3827:29;3846:9;3827:29;:::i;:::-;3817:39;;3875:36;3907:2;3896:9;3892:18;3875:36;:::i;:::-;3865:46;;3930:37;3963:2;3952:9;3948:18;3930:37;:::i;:::-;3920:47;;3986:36;4018:2;4007:9;4003:18;3986:36;:::i;:::-;3976:46;;3629:399;;;;;;;:::o;4033:180::-;4089:6;4142:2;4130:9;4121:7;4117:23;4113:32;4110:52;;;4158:1;4155;4148:12;4110:52;4181:26;4197:9;4181:26;:::i;4218:245::-;4276:6;4329:2;4317:9;4308:7;4304:23;4300:32;4297:52;;;4345:1;4342;4335:12;4297:52;4384:9;4371:23;4403:30;4427:5;4403:30;:::i;4468:249::-;4537:6;4590:2;4578:9;4569:7;4565:23;4561:32;4558:52;;;4606:1;4603;4596:12;4558:52;4638:9;4632:16;4657:30;4681:5;4657:30;:::i;4722:450::-;4791:6;4844:2;4832:9;4823:7;4819:23;4815:32;4812:52;;;4860:1;4857;4850:12;4812:52;4900:9;4887:23;4933:18;4925:6;4922:30;4919:50;;;4965:1;4962;4955:12;4919:50;4988:22;;5041:4;5033:13;;5029:27;-1:-1:-1;5019:55:1;;5070:1;5067;5060:12;5019:55;5093:73;5158:7;5153:2;5140:16;5135:2;5131;5127:11;5093:73;:::i;5177:184::-;5235:6;5288:2;5276:9;5267:7;5263:23;5259:32;5256:52;;;5304:1;5301;5294:12;5256:52;5327:28;5345:9;5327:28;:::i;5366:474::-;5456:6;5464;5472;5480;5488;5541:3;5529:9;5520:7;5516:23;5512:33;5509:53;;;5558:1;5555;5548:12;5509:53;5581:28;5599:9;5581:28;:::i;:::-;5571:38;;5628:37;5661:2;5650:9;5646:18;5628:37;:::i;:::-;5618:47;;5684:37;5717:2;5706:9;5702:18;5684:37;:::i;:::-;5674:47;;5740:37;5773:2;5762:9;5758:18;5740:37;:::i;:::-;5730:47;;5796:38;5829:3;5818:9;5814:19;5796:38;:::i;:::-;5786:48;;5366:474;;;;;;;;:::o;5845:180::-;5904:6;5957:2;5945:9;5936:7;5932:23;5928:32;5925:52;;;5973:1;5970;5963:12;5925:52;-1:-1:-1;5996:23:1;;5845:180;-1:-1:-1;5845:180:1:o;6030:284::-;6088:6;6141:2;6129:9;6120:7;6116:23;6112:32;6109:52;;;6157:1;6154;6147:12;6109:52;6196:9;6183:23;6246:18;6239:5;6235:30;6228:5;6225:41;6215:69;;6280:1;6277;6270:12;6319:182;6376:6;6429:2;6417:9;6408:7;6404:23;6400:32;6397:52;;;6445:1;6442;6435:12;6397:52;6468:27;6485:9;6468:27;:::i;6506:257::-;6547:3;6585:5;6579:12;6612:6;6607:3;6600:19;6628:63;6684:6;6677:4;6672:3;6668:14;6661:4;6654:5;6650:16;6628:63;:::i;:::-;6745:2;6724:15;-1:-1:-1;;6720:29:1;6711:39;;;;6752:4;6707:50;;6506:257;-1:-1:-1;;6506:257:1:o;6768:831::-;7096:3;7134:6;7128:13;7150:53;7196:6;7191:3;7184:4;7176:6;7172:17;7150:53;:::i;:::-;7266:13;;7225:16;;;;7288:57;7266:13;7225:16;7322:4;7310:17;;7288:57;:::i;:::-;7412:13;;7367:20;;;7434:57;7412:13;7367:20;7468:4;7456:17;;7434:57;:::i;:::-;-1:-1:-1;;;7513:20:1;;7542:22;;;7591:1;7580:13;;6768:831;-1:-1:-1;;;;;6768:831:1:o;8429:488::-;-1:-1:-1;;;;;8698:15:1;;;8680:34;;8750:15;;8745:2;8730:18;;8723:43;8797:2;8782:18;;8775:34;;;8845:3;8840:2;8825:18;;8818:31;;;8623:4;;8866:45;;8891:19;;8883:6;8866:45;:::i;:::-;8858:53;8429:488;-1:-1:-1;;;;;;8429:488:1:o;8922:936::-;9133:2;9185:21;;;9255:13;;9158:18;;;9277:22;;;9104:4;;9133:2;9318;;9336:18;;;;9377:15;;;9104:4;9420:412;9434:6;9431:1;9428:13;9420:412;;;9493:13;;9535:9;;9546:6;9531:22;9519:35;;9593:11;;;9587:18;9628:4;9666:21;;;9652:12;;;9645:43;9732:11;;;9726:18;9722:27;9708:12;;;9701:49;9779:4;9770:14;;;;9807:15;;;;9456:1;9449:9;9420:412;;;-1:-1:-1;9849:3:1;;8922:936;-1:-1:-1;;;;;;;8922:936:1:o;9863:643::-;10032:2;10084:21;;;10154:13;;10057:18;;;10176:22;;;10003:4;;10032:2;10255:15;;;;10229:2;10214:18;;;10003:4;10298:182;10312:6;10309:1;10306:13;10298:182;;;10377:13;;10392:6;10373:26;10361:39;;10455:15;;;;10420:12;;;;10334:1;10327:9;10298:182;;;-1:-1:-1;10497:3:1;;9863:643;-1:-1:-1;;;;;;9863:643:1:o;10703:219::-;10852:2;10841:9;10834:21;10815:4;10872:44;10912:2;10901:9;10897:18;10889:6;10872:44;:::i;11339:414::-;11541:2;11523:21;;;11580:2;11560:18;;;11553:30;11619:34;11614:2;11599:18;;11592:62;-1:-1:-1;;;11685:2:1;11670:18;;11663:48;11743:3;11728:19;;11339:414::o;12862:341::-;13064:2;13046:21;;;13103:2;13083:18;;;13076:30;-1:-1:-1;;;13137:2:1;13122:18;;13115:47;13194:2;13179:18;;12862:341::o;17838:356::-;18040:2;18022:21;;;18059:18;;;18052:30;18118:34;18113:2;18098:18;;18091:62;18185:2;18170:18;;17838:356::o;19776:413::-;19978:2;19960:21;;;20017:2;19997:18;;;19990:30;20056:34;20051:2;20036:18;;20029:62;-1:-1:-1;;;20122:2:1;20107:18;;20100:47;20179:3;20164:19;;19776:413::o;22399:224::-;22438:3;22466:6;22499:2;22496:1;22492:10;22529:2;22526:1;22522:10;22560:3;22556:2;22552:12;22547:3;22544:21;22541:47;;;22568:18;;:::i;:::-;22604:13;;22399:224;-1:-1:-1;;;;22399:224:1:o;22628:128::-;22668:3;22699:1;22695:6;22692:1;22689:13;22686:39;;;22705:18;;:::i;:::-;-1:-1:-1;22741:9:1;;22628:128::o;22761:204::-;22799:3;22835:4;22832:1;22828:12;22867:4;22864:1;22860:12;22902:3;22896:4;22892:14;22887:3;22884:23;22881:49;;;22910:18;;:::i;:::-;22946:13;;22761:204;-1:-1:-1;;;22761:204:1:o;22970:120::-;23010:1;23036;23026:35;;23041:18;;:::i;:::-;-1:-1:-1;23075:9:1;;22970:120::o;23095:168::-;23135:7;23201:1;23197;23193:6;23189:14;23186:1;23183:21;23178:1;23171:9;23164:17;23160:45;23157:71;;;23208:18;;:::i;:::-;-1:-1:-1;23248:9:1;;23095:168::o;23268:217::-;23307:4;23336:6;23392:10;;;;23362;;23414:12;;;23411:38;;;23429:18;;:::i;:::-;23466:13;;23268:217;-1:-1:-1;;;23268:217:1:o;23490:125::-;23530:4;23558:1;23555;23552:8;23549:34;;;23563:18;;:::i;:::-;-1:-1:-1;23600:9:1;;23490:125::o;23620:195::-;23658:4;23695;23692:1;23688:12;23727:4;23724:1;23720:12;23752:3;23747;23744:12;23741:38;;;23759:18;;:::i;:::-;23796:13;;;23620:195;-1:-1:-1;;;23620:195:1:o;23820:258::-;23892:1;23902:113;23916:6;23913:1;23910:13;23902:113;;;23992:11;;;23986:18;23973:11;;;23966:39;23938:2;23931:10;23902:113;;;24033:6;24030:1;24027:13;24024:48;;;-1:-1:-1;;24068:1:1;24050:16;;24043:27;23820:258::o;24083:380::-;24162:1;24158:12;;;;24205;;;24226:61;;24280:4;24272:6;24268:17;24258:27;;24226:61;24333:2;24325:6;24322:14;24302:18;24299:38;24296:161;;;24379:10;24374:3;24370:20;24367:1;24360:31;24414:4;24411:1;24404:15;24442:4;24439:1;24432:15;24296:161;;24083:380;;;:::o;24468:197::-;24506:3;24534:6;24575:2;24568:5;24564:14;24602:2;24593:7;24590:15;24587:41;;;24608:18;;:::i;:::-;24657:1;24644:15;;24468:197;-1:-1:-1;;;24468:197:1:o;24670:135::-;24709:3;-1:-1:-1;;24730:17:1;;24727:43;;;24750:18;;:::i;:::-;-1:-1:-1;24797:1:1;24786:13;;24670:135::o;24810:175::-;24847:3;24891:4;24884:5;24880:16;24920:4;24911:7;24908:17;24905:43;;;24928:18;;:::i;:::-;24977:1;24964:15;;24810:175;-1:-1:-1;;24810:175:1:o;24990:112::-;25022:1;25048;25038:35;;25053:18;;:::i;:::-;-1:-1:-1;25087:9:1;;24990:112::o;25107:127::-;25168:10;25163:3;25159:20;25156:1;25149:31;25199:4;25196:1;25189:15;25223:4;25220:1;25213:15;25239:127;25300:10;25295:3;25291:20;25288:1;25281:31;25331:4;25328:1;25321:15;25355:4;25352:1;25345:15;25371:127;25432:10;25427:3;25423:20;25420:1;25413:31;25463:4;25460:1;25453:15;25487:4;25484:1;25477:15;25503:127;25564:10;25559:3;25555:20;25552:1;25545:31;25595:4;25592:1;25585:15;25619:4;25616:1;25609:15;25635:127;25696:10;25691:3;25687:20;25684:1;25677:31;25727:4;25724:1;25717:15;25751:4;25748:1;25741:15;25767:131;-1:-1:-1;;;;;;25841:32:1;;25831:43;;25821:71;;25888:1;25885;25878:12

Swarm Source

ipfs://0c4bd113ef76a36a4416a8571d0df617108c7a56325a36e083213ace702facf5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.