ETH Price: $2,938.42 (-6.93%)
Gas: 7 Gwei

Token

Social BEES University (SBU)
 

Overview

Max Total Supply

13,658 SBU

Holders

6,984

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SBU
0x399d54dc6be50d5b4e31ec84690210df5ad522bb
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Created by BEES.Social a Decentralized Autonomous Organization (DAO) solely focused on empowering people with the education needed to take advantage of the Crypto Revolution.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BeeNFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-04
*/

// File: Bees/beeFlat.sol


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


// OpenZeppelin Contracts v4.4.1 (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.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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: Bees/WithSuperOperators.sol


   
//SPDX-License-Identifier: MIT
// solhint-disable-next-line compiler-version
pragma solidity ^0.8.0;


contract WithSuperOperators is Ownable {
    mapping(address => bool) internal _superOperators;

    event SuperOperator(address superOperator, bool enabled);

    /// @notice Enable or disable the ability of `superOperator` to transfer tokens of all (superOperator rights).
    /// @param superOperator address that will be given/removed superOperator right.
    /// @param enabled set whether the superOperator is enabled or disabled.
    function setSuperOperator(address superOperator, bool enabled) external onlyOwner {
        _superOperators[superOperator] = enabled;
        emit SuperOperator(superOperator, enabled);
    }

    /// @notice check whether address `who` is given superOperator rights.
    /// @param who The address to query.
    /// @return whether the address has superOperator rights.
    function isSuperOperator(address who) public view returns (bool) {
        return _superOperators[who];
    }
}
// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (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.1 (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.1 (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.1 (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.1 (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.1 (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.1 (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: Bees/ERC721C_2.sol



pragma solidity ^0.8.0;









abstract contract ERC721C is Context, ERC165, IERC721, IERC721Metadata, WithSuperOperators {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    //uint256 internal _supply;

    uint256[] internal _tokenIds;

    // Mapping from token ID to owner address
    mapping(uint256 => address) internal _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 = ERC721C.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || _superOperators[_msgSender()] || 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 = ERC721C.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender) || _superOperators[_msgSender()]);
    }

    /**
     * @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;
        //_supply += 1;
        _tokenIds.push(tokenId);
        _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 = ERC721C.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        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(ERC721C.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(ERC721C.ownerOf(tokenId), to, tokenId);
    }


    /**
     * @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: Bees/ERC721EnumLiteC.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 ERC721EnumerableLiteC is ERC721C, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721C) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

        uint count;
        for( uint i; i < _tokenIds.length; ++i ){
            if( owner == _owners[_tokenIds[i]] ){
                if( count == index )
                    return _tokenIds[i];
                else
                    ++count;
            }
        }

        require(false, "ERC721Enumerable: owner index out of bounds");
    }

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

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




pragma solidity >=0.7.0 <0.9.0;




contract BeeNFT is Ownable, ERC721EnumerableLiteC {

    using Strings for uint256;

    string private baseTokenURI = "https:///";

    mapping(address => bool) public enabledMinter;  

    uint256 public maxSupply =  13838;  
    bool public paused = false;

    mapping(uint256 => uint256) public QueenRegistry; //ID to Int Status
    mapping(uint256 => uint256) public miscSetting;


    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721C(_name, _symbol){
        setBaseURI(_initBaseURI);
    }

    // public
    function mint(address _to, uint256 _mintNumber) public {
        require(enabledMinter[msg.sender] , "!minter");
        uint256 supply = totalSupply();
        require(!paused, "paused" );
        require(supply + 1 <= maxSupply, "OverMaxSupply" );

        _safeMint(_to, _mintNumber, "");
    }

    // function gift(uint[] calldata quantity, address[] calldata recipient) external onlyOwner{
    //     require(quantity.length == recipient.length, "Must provide equal quantities and recipients" );
    //     uint totalQuantity = 0;
    //     uint256 supply = totalSupply();
    //     for(uint i = 0; i < quantity.length; ++i){
    //       totalQuantity += quantity[i];
    //     }
    //     require( supply + totalQuantity <= maxSupply, "Mint/order exceeds supply" );
    //     delete totalQuantity;

    //     for(uint i = 0; i < recipient.length; ++i){
    //       for(uint j = 0; j < quantity[i]; ++j){
    //           _safeMint( recipient[i], supply++, "" );
    //       } 
    //     }
    // }

    function _baseURI() internal view virtual override returns (string memory) {
      return baseTokenURI;
    }
    function setBaseURI(string memory _value) public onlyOwner{
      baseTokenURI = _value;
    }
        
    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
      maxSupply = _maxSupply;
    }

    function setMinter(address _minter, bool _option) public onlyOwner {
      enabledMinter[_minter] = _option;
    }
    function setMisc(uint256[] calldata  _ids, uint256[] calldata  _values) public onlyOwner {
      require(_ids.length == _values.length, "Must provide equal ids and values" );
      for(uint256 i = 0; i < _ids.length; i++){
        miscSetting[_ids[i]] = _values[i];
      }
    }
    function setQueenRegistry(uint256[] calldata  _ids, uint256[] calldata  _values) public onlyOwner {
      require(_ids.length == _values.length, "Must provide equal ids and values" );
      for(uint256 i = 0; i < _ids.length; i++){
        QueenRegistry[_ids[i]] = _values[i];
      }
    }
    function pause(bool _state) public onlyOwner {
      paused = _state;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","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":false,"internalType":"address","name":"superOperator","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SuperOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"QueenRegistry","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"enabledMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"isSuperOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintNumber","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"miscSetting","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_value","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"},{"internalType":"bool","name":"_option","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"setMisc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"setQueenRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"superOperator","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSuperOperator","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":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","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"}]

60806040526040518060400160405280600981526020017f68747470733a2f2f2f00000000000000000000000000000000000000000000008152506009908051906020019062000051929190620002b6565b5061360e600b556000600c60006101000a81548160ff0219169083151502179055503480156200008057600080fd5b5060405162004514380380620045148339818101604052810190620000a69190620003d8565b8282620000c8620000bc6200011660201b60201c565b6200011e60201b60201c565b8160029080519060200190620000e0929190620002b6565b508060039080519060200190620000f9929190620002b6565b5050506200010d81620001e260201b60201c565b5050506200061f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001f26200011660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002186200028d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000271576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026890620004bb565b60405180910390fd5b806009908051906020019062000289929190620002b6565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002c4906200058b565b90600052602060002090601f016020900481019282620002e8576000855562000334565b82601f106200030357805160ff191683800117855562000334565b8280016001018555821562000334579182015b828111156200033357825182559160200191906001019062000316565b5b50905062000343919062000347565b5090565b5b808211156200036257600081600090555060010162000348565b5090565b60006200037d620003778462000511565b620004dd565b9050828152602081018484840111156200039657600080fd5b620003a384828562000555565b509392505050565b600082601f830112620003bd57600080fd5b8151620003cf84826020860162000366565b91505092915050565b600080600060608486031215620003ee57600080fd5b600084015167ffffffffffffffff8111156200040957600080fd5b6200041786828701620003ab565b935050602084015167ffffffffffffffff8111156200043557600080fd5b6200044386828701620003ab565b925050604084015167ffffffffffffffff8111156200046157600080fd5b6200046f86828701620003ab565b9150509250925092565b60006200048860208362000544565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620004d68162000479565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620005075762000506620005f0565b5b8060405250919050565b600067ffffffffffffffff8211156200052f576200052e620005f0565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b838110156200057557808201518184015260208101905062000558565b8381111562000585576000848401525b50505050565b60006002820490506001821680620005a457607f821691505b60208210811415620005bb57620005ba620005c1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613ee5806200062f6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063654b748a1161011a578063a41fbc31116100ad578063cf456ae71161007c578063cf456ae7146105d0578063d5abeb01146105ec578063e628093e1461060a578063e985e9c51461063a578063f2fde38b1461066a576101fb565b8063a41fbc311461054c578063ac9fe42114610568578063b88d4fde14610584578063c87b56dd146105a0576101fb565b80638413b182116100e95780638413b182146104c45780638da5cb5b146104f457806395d89b4114610512578063a22cb46514610530576101fb565b8063654b748a1461043e5780636f8b44b01461046e57806370a082311461048a578063715018a6146104ba576101fb565b806323b872dd116101925780634f6ccce7116101615780634f6ccce7146103a457806355f804b3146103d45780635c975abb146103f05780636352211e1461040e576101fb565b806323b872dd146103205780632f745c591461033c57806340c10f191461036c57806342842e0e14610388576101fb565b8063095ea7b3116101ce578063095ea7b31461029a578063114a0d31146102b6578063126247ac146102e657806318160ddd14610302576101fb565b806301ffc9a71461020057806302329a291461023057806306fdde031461024c578063081812fc1461026a575b600080fd5b61021a60048036038101906102159190612d83565b610686565b604051610227919061377d565b60405180910390f35b61024a60048036038101906102459190612d5a565b610700565b005b610254610799565b6040516102619190613798565b60405180910390f35b610284600480360381019061027f9190612e16565b61082b565b60405161029191906136ed565b60405180910390f35b6102b460048036038101906102af9190612ca9565b6108b0565b005b6102d060048036038101906102cb9190612b3e565b610a23565b6040516102dd919061377d565b60405180910390f35b61030060048036038101906102fb9190612ce5565b610a43565b005b61030a610bc5565b6040516103179190613a7a565b60405180910390f35b61033a60048036038101906103359190612ba3565b610bd2565b005b61035660048036038101906103519190612ca9565b610c32565b6040516103639190613a7a565b60405180910390f35b61038660048036038101906103819190612ca9565b610df8565b005b6103a2600480360381019061039d9190612ba3565b610f50565b005b6103be60048036038101906103b99190612e16565b610f70565b6040516103cb9190613a7a565b60405180910390f35b6103ee60048036038101906103e99190612dd5565b610fc3565b005b6103f8611059565b604051610405919061377d565b60405180910390f35b61042860048036038101906104239190612e16565b61106c565b60405161043591906136ed565b60405180910390f35b61045860048036038101906104539190612b3e565b61111e565b604051610465919061377d565b60405180910390f35b61048860048036038101906104839190612e16565b611174565b005b6104a4600480360381019061049f9190612b3e565b6111fa565b6040516104b19190613a7a565b60405180910390f35b6104c26112b2565b005b6104de60048036038101906104d99190612e16565b61133a565b6040516104eb9190613a7a565b60405180910390f35b6104fc611352565b60405161050991906136ed565b60405180910390f35b61051a61137b565b6040516105279190613798565b60405180910390f35b61054a60048036038101906105459190612c6d565b61140d565b005b61056660048036038101906105619190612ce5565b61158e565b005b610582600480360381019061057d9190612c6d565b611710565b005b61059e60048036038101906105999190612bf2565b611820565b005b6105ba60048036038101906105b59190612e16565b611882565b6040516105c79190613798565b60405180910390f35b6105ea60048036038101906105e59190612c6d565b611929565b005b6105f4611a00565b6040516106019190613a7a565b60405180910390f35b610624600480360381019061061f9190612e16565b611a06565b6040516106319190613a7a565b60405180910390f35b610654600480360381019061064f9190612b67565b611a1e565b604051610661919061377d565b60405180910390f35b610684600480360381019061067f9190612b3e565b611ab2565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f957506106f882611baa565b5b9050919050565b610708611c8c565b73ffffffffffffffffffffffffffffffffffffffff16610726611352565b73ffffffffffffffffffffffffffffffffffffffff161461077c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107739061399a565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6060600280546107a890613cda565b80601f01602080910402602001604051908101604052809291908181526020018280546107d490613cda565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b600061083682611c94565b610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c9061397a565b60405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bb8261106c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610923906139fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094b611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614806109bd575060016000610974611c8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806109d557506109d4816109cf611c8c565b611a1e565b5b610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b906138da565b60405180910390fd5b610a1e8383611d00565b505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610a4b611c8c565b73ffffffffffffffffffffffffffffffffffffffff16610a69611352565b73ffffffffffffffffffffffffffffffffffffffff1614610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab69061399a565b60405180910390fd5b818190508484905014610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe9061391a565b60405180910390fd5b60005b84849050811015610bbe57828282818110610b4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600e6000878785818110610b92577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358152602001908152602001600020819055508080610bb690613d0c565b915050610b0a565b5050505050565b6000600480549050905090565b610be3610bdd611c8c565b82611db9565b610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990613a1a565b60405180910390fd5b610c2d838383611ef2565b505050565b6000610c3d836111fa565b8210610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c75906137da565b60405180910390fd5b6000805b600480549050811015610dae576005600060048381548110610ccd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d9d5783821415610d905760048181548110610d7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492505050610df2565b81610d9a90613d0c565b91505b80610da790613d0c565b9050610c82565b506000610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de7906137da565b60405180910390fd5b505b92915050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b906137ba565b60405180910390fd5b6000610e8e610bc5565b9050600c60009054906101000a900460ff1615610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed790613a5a565b60405180910390fd5b600b54600182610ef09190613b69565b1115610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f289061385a565b60405180910390fd5b610f4b83836040518060200160405280600081525061214e565b505050565b610f6b83838360405180602001604052806000815250611820565b505050565b6000610f7a610bc5565b8210610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613a3a565b60405180910390fd5b819050919050565b610fcb611c8c565b73ffffffffffffffffffffffffffffffffffffffff16610fe9611352565b73ffffffffffffffffffffffffffffffffffffffff161461103f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110369061399a565b60405180910390fd5b8060099080519060200190611055929190612918565b5050565b600c60009054906101000a900460ff1681565b6000806005600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c9061393a565b60405180910390fd5b80915050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61117c611c8c565b73ffffffffffffffffffffffffffffffffffffffff1661119a611352565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e79061399a565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611262906138fa565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112ba611c8c565b73ffffffffffffffffffffffffffffffffffffffff166112d8611352565b73ffffffffffffffffffffffffffffffffffffffff161461132e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113259061399a565b60405180910390fd5b61133860006121a9565b565b600d6020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461138a90613cda565b80601f01602080910402602001604051908101604052809291908181526020018280546113b690613cda565b80156114035780601f106113d857610100808354040283529160200191611403565b820191906000526020600020905b8154815290600101906020018083116113e657829003601f168201915b5050505050905090565b611415611c8c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a9061389a565b60405180910390fd5b8060086000611490611c8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661153d611c8c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611582919061377d565b60405180910390a35050565b611596611c8c565b73ffffffffffffffffffffffffffffffffffffffff166115b4611352565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116019061399a565b60405180910390fd5b818190508484905014611652576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116499061391a565b60405180910390fd5b60005b8484905081101561170957828282818110611699577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600d60008787858181106116dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002081905550808061170190613d0c565b915050611655565b5050505050565b611718611c8c565b73ffffffffffffffffffffffffffffffffffffffff16611736611352565b73ffffffffffffffffffffffffffffffffffffffff161461178c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117839061399a565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f44f92d27abdf4cfb6a7d712c3af68f3be086d4ca747ab802c36f67d6790060d88282604051611814929190613754565b60405180910390a15050565b61183161182b611c8c565b83611db9565b611870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186790613a1a565b60405180910390fd5b61187c8484848461226d565b50505050565b606061188d82611c94565b6118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c3906139da565b60405180910390fd5b60006118d66122c9565b905060008151116118f65760405180602001604052806000815250611921565b806119008461235b565b6040516020016119119291906136c9565b6040516020818303038152906040525b915050919050565b611931611c8c565b73ffffffffffffffffffffffffffffffffffffffff1661194f611352565b73ffffffffffffffffffffffffffffffffffffffff16146119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c9061399a565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b600e6020528060005260406000206000915090505481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aba611c8c565b73ffffffffffffffffffffffffffffffffffffffff16611ad8611352565b73ffffffffffffffffffffffffffffffffffffffff1614611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b259061399a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b959061381a565b60405180910390fd5b611ba7816121a9565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c7557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c855750611c8482612508565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166005600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d738361106c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dc482611c94565b611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa906138ba565b60405180910390fd5b6000611e0e8361106c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7d57508373ffffffffffffffffffffffffffffffffffffffff16611e658461082b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e8e5750611e8d8185611a1e565b5b80611ee9575060016000611ea0611c8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f128261106c565b73ffffffffffffffffffffffffffffffffffffffff1614611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f906139ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcf9061387a565b60405180910390fd5b611fe3838383612572565b611fee600082611d00565b6001600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203e9190613bf0565b925050819055506001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120959190613b69565b92505081905550816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6121588383612577565b612165600084848461276e565b6121a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219b906137fa565b60405180910390fd5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612278848484611ef2565b6122848484848461276e565b6122c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ba906137fa565b60405180910390fd5b50505050565b6060600980546122d890613cda565b80601f016020809104026020016040519081016040528092919081815260200182805461230490613cda565b80156123515780601f1061232657610100808354040283529160200191612351565b820191906000526020600020905b81548152906001019060200180831161233457829003601f168201915b5050505050905090565b606060008214156123a3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612503565b600082905060005b600082146123d55780806123be90613d0c565b915050600a826123ce9190613bbf565b91506123ab565b60008167ffffffffffffffff811115612417577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124495781602001600182028036833780820191505090505b5090505b600085146124fc576001826124629190613bf0565b9150600a856124719190613d55565b603061247d9190613b69565b60f81b8183815181106124b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124f59190613bbf565b945061244d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de9061395a565b60405180910390fd5b6125f081611c94565b15612630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126279061383a565b60405180910390fd5b61263c60008383612572565b6001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461268c9190613b69565b925050819055506004819080600181540180825580915050600190039060005260206000200160009091909190915055816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061278f8473ffffffffffffffffffffffffffffffffffffffff16612905565b156128f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b8611c8c565b8786866040518563ffffffff1660e01b81526004016127da9493929190613708565b602060405180830381600087803b1580156127f457600080fd5b505af192505050801561282557506040513d601f19601f820116820180604052508101906128229190612dac565b60015b6128a8573d8060008114612855576040519150601f19603f3d011682016040523d82523d6000602084013e61285a565b606091505b506000815114156128a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612897906137fa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128fd565b600190505b949350505050565b600080823b905060008111915050919050565b82805461292490613cda565b90600052602060002090601f016020900481019282612946576000855561298d565b82601f1061295f57805160ff191683800117855561298d565b8280016001018555821561298d579182015b8281111561298c578251825591602001919060010190612971565b5b50905061299a919061299e565b5090565b5b808211156129b757600081600090555060010161299f565b5090565b60006129ce6129c984613ac6565b613a95565b9050828152602081018484840111156129e657600080fd5b6129f1848285613c98565b509392505050565b6000612a0c612a0784613af6565b613a95565b905082815260208101848484011115612a2457600080fd5b612a2f848285613c98565b509392505050565b600081359050612a4681613e53565b92915050565b60008083601f840112612a5e57600080fd5b8235905067ffffffffffffffff811115612a7757600080fd5b602083019150836020820283011115612a8f57600080fd5b9250929050565b600081359050612aa581613e6a565b92915050565b600081359050612aba81613e81565b92915050565b600081519050612acf81613e81565b92915050565b600082601f830112612ae657600080fd5b8135612af68482602086016129bb565b91505092915050565b600082601f830112612b1057600080fd5b8135612b208482602086016129f9565b91505092915050565b600081359050612b3881613e98565b92915050565b600060208284031215612b5057600080fd5b6000612b5e84828501612a37565b91505092915050565b60008060408385031215612b7a57600080fd5b6000612b8885828601612a37565b9250506020612b9985828601612a37565b9150509250929050565b600080600060608486031215612bb857600080fd5b6000612bc686828701612a37565b9350506020612bd786828701612a37565b9250506040612be886828701612b29565b9150509250925092565b60008060008060808587031215612c0857600080fd5b6000612c1687828801612a37565b9450506020612c2787828801612a37565b9350506040612c3887828801612b29565b925050606085013567ffffffffffffffff811115612c5557600080fd5b612c6187828801612ad5565b91505092959194509250565b60008060408385031215612c8057600080fd5b6000612c8e85828601612a37565b9250506020612c9f85828601612a96565b9150509250929050565b60008060408385031215612cbc57600080fd5b6000612cca85828601612a37565b9250506020612cdb85828601612b29565b9150509250929050565b60008060008060408587031215612cfb57600080fd5b600085013567ffffffffffffffff811115612d1557600080fd5b612d2187828801612a4c565b9450945050602085013567ffffffffffffffff811115612d4057600080fd5b612d4c87828801612a4c565b925092505092959194509250565b600060208284031215612d6c57600080fd5b6000612d7a84828501612a96565b91505092915050565b600060208284031215612d9557600080fd5b6000612da384828501612aab565b91505092915050565b600060208284031215612dbe57600080fd5b6000612dcc84828501612ac0565b91505092915050565b600060208284031215612de757600080fd5b600082013567ffffffffffffffff811115612e0157600080fd5b612e0d84828501612aff565b91505092915050565b600060208284031215612e2857600080fd5b6000612e3684828501612b29565b91505092915050565b612e4881613c24565b82525050565b612e5781613c36565b82525050565b6000612e6882613b26565b612e728185613b3c565b9350612e82818560208601613ca7565b612e8b81613e42565b840191505092915050565b6000612ea182613b31565b612eab8185613b4d565b9350612ebb818560208601613ca7565b612ec481613e42565b840191505092915050565b6000612eda82613b31565b612ee48185613b5e565b9350612ef4818560208601613ca7565b80840191505092915050565b6000612f0d600783613b4d565b91507f216d696e746572000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000612f4d602b83613b4d565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612fb3603283613b4d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613019602683613b4d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061307f601c83613b4d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006130bf600d83613b4d565b91507f4f7665724d6178537570706c79000000000000000000000000000000000000006000830152602082019050919050565b60006130ff602483613b4d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613165601983613b4d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006131a5602c83613b4d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061320b603883613b4d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613271602a83613b4d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006132d7602183613b4d565b91507f4d7573742070726f7669646520657175616c2069647320616e642076616c756560008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061333d602983613b4d565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006133a3602083613b4d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006133e3602c83613b4d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613449602083613b4d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613489602983613b4d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ef602f83613b4d565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613555602183613b4d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135bb603183613b4d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613621602c83613b4d565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613687600683613b4d565b91507f70617573656400000000000000000000000000000000000000000000000000006000830152602082019050919050565b6136c381613c8e565b82525050565b60006136d58285612ecf565b91506136e18284612ecf565b91508190509392505050565b60006020820190506137026000830184612e3f565b92915050565b600060808201905061371d6000830187612e3f565b61372a6020830186612e3f565b61373760408301856136ba565b81810360608301526137498184612e5d565b905095945050505050565b60006040820190506137696000830185612e3f565b6137766020830184612e4e565b9392505050565b60006020820190506137926000830184612e4e565b92915050565b600060208201905081810360008301526137b28184612e96565b905092915050565b600060208201905081810360008301526137d381612f00565b9050919050565b600060208201905081810360008301526137f381612f40565b9050919050565b6000602082019050818103600083015261381381612fa6565b9050919050565b600060208201905081810360008301526138338161300c565b9050919050565b6000602082019050818103600083015261385381613072565b9050919050565b60006020820190508181036000830152613873816130b2565b9050919050565b60006020820190508181036000830152613893816130f2565b9050919050565b600060208201905081810360008301526138b381613158565b9050919050565b600060208201905081810360008301526138d381613198565b9050919050565b600060208201905081810360008301526138f3816131fe565b9050919050565b6000602082019050818103600083015261391381613264565b9050919050565b60006020820190508181036000830152613933816132ca565b9050919050565b6000602082019050818103600083015261395381613330565b9050919050565b6000602082019050818103600083015261397381613396565b9050919050565b60006020820190508181036000830152613993816133d6565b9050919050565b600060208201905081810360008301526139b38161343c565b9050919050565b600060208201905081810360008301526139d38161347c565b9050919050565b600060208201905081810360008301526139f3816134e2565b9050919050565b60006020820190508181036000830152613a1381613548565b9050919050565b60006020820190508181036000830152613a33816135ae565b9050919050565b60006020820190508181036000830152613a5381613614565b9050919050565b60006020820190508181036000830152613a738161367a565b9050919050565b6000602082019050613a8f60008301846136ba565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613abc57613abb613e13565b5b8060405250919050565b600067ffffffffffffffff821115613ae157613ae0613e13565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613b1157613b10613e13565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b7482613c8e565b9150613b7f83613c8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bb457613bb3613d86565b5b828201905092915050565b6000613bca82613c8e565b9150613bd583613c8e565b925082613be557613be4613db5565b5b828204905092915050565b6000613bfb82613c8e565b9150613c0683613c8e565b925082821015613c1957613c18613d86565b5b828203905092915050565b6000613c2f82613c6e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cc5578082015181840152602081019050613caa565b83811115613cd4576000848401525b50505050565b60006002820490506001821680613cf257607f821691505b60208210811415613d0657613d05613de4565b5b50919050565b6000613d1782613c8e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d4a57613d49613d86565b5b600182019050919050565b6000613d6082613c8e565b9150613d6b83613c8e565b925082613d7b57613d7a613db5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e5c81613c24565b8114613e6757600080fd5b50565b613e7381613c36565b8114613e7e57600080fd5b50565b613e8a81613c42565b8114613e9557600080fd5b50565b613ea181613c8e565b8114613eac57600080fd5b5056fea26469706673582212209f63241148d2513c5dd9fbe1dfa883584b376936c1019601610db46a7122023264736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000016536f6369616c204245455320556e69766572736974790000000000000000000000000000000000000000000000000000000000000000000000000000000000035342550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f736f6369616c626565732d6d696e742e73332e616d617a6f6e6177732e636f6d2f0000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063654b748a1161011a578063a41fbc31116100ad578063cf456ae71161007c578063cf456ae7146105d0578063d5abeb01146105ec578063e628093e1461060a578063e985e9c51461063a578063f2fde38b1461066a576101fb565b8063a41fbc311461054c578063ac9fe42114610568578063b88d4fde14610584578063c87b56dd146105a0576101fb565b80638413b182116100e95780638413b182146104c45780638da5cb5b146104f457806395d89b4114610512578063a22cb46514610530576101fb565b8063654b748a1461043e5780636f8b44b01461046e57806370a082311461048a578063715018a6146104ba576101fb565b806323b872dd116101925780634f6ccce7116101615780634f6ccce7146103a457806355f804b3146103d45780635c975abb146103f05780636352211e1461040e576101fb565b806323b872dd146103205780632f745c591461033c57806340c10f191461036c57806342842e0e14610388576101fb565b8063095ea7b3116101ce578063095ea7b31461029a578063114a0d31146102b6578063126247ac146102e657806318160ddd14610302576101fb565b806301ffc9a71461020057806302329a291461023057806306fdde031461024c578063081812fc1461026a575b600080fd5b61021a60048036038101906102159190612d83565b610686565b604051610227919061377d565b60405180910390f35b61024a60048036038101906102459190612d5a565b610700565b005b610254610799565b6040516102619190613798565b60405180910390f35b610284600480360381019061027f9190612e16565b61082b565b60405161029191906136ed565b60405180910390f35b6102b460048036038101906102af9190612ca9565b6108b0565b005b6102d060048036038101906102cb9190612b3e565b610a23565b6040516102dd919061377d565b60405180910390f35b61030060048036038101906102fb9190612ce5565b610a43565b005b61030a610bc5565b6040516103179190613a7a565b60405180910390f35b61033a60048036038101906103359190612ba3565b610bd2565b005b61035660048036038101906103519190612ca9565b610c32565b6040516103639190613a7a565b60405180910390f35b61038660048036038101906103819190612ca9565b610df8565b005b6103a2600480360381019061039d9190612ba3565b610f50565b005b6103be60048036038101906103b99190612e16565b610f70565b6040516103cb9190613a7a565b60405180910390f35b6103ee60048036038101906103e99190612dd5565b610fc3565b005b6103f8611059565b604051610405919061377d565b60405180910390f35b61042860048036038101906104239190612e16565b61106c565b60405161043591906136ed565b60405180910390f35b61045860048036038101906104539190612b3e565b61111e565b604051610465919061377d565b60405180910390f35b61048860048036038101906104839190612e16565b611174565b005b6104a4600480360381019061049f9190612b3e565b6111fa565b6040516104b19190613a7a565b60405180910390f35b6104c26112b2565b005b6104de60048036038101906104d99190612e16565b61133a565b6040516104eb9190613a7a565b60405180910390f35b6104fc611352565b60405161050991906136ed565b60405180910390f35b61051a61137b565b6040516105279190613798565b60405180910390f35b61054a60048036038101906105459190612c6d565b61140d565b005b61056660048036038101906105619190612ce5565b61158e565b005b610582600480360381019061057d9190612c6d565b611710565b005b61059e60048036038101906105999190612bf2565b611820565b005b6105ba60048036038101906105b59190612e16565b611882565b6040516105c79190613798565b60405180910390f35b6105ea60048036038101906105e59190612c6d565b611929565b005b6105f4611a00565b6040516106019190613a7a565b60405180910390f35b610624600480360381019061061f9190612e16565b611a06565b6040516106319190613a7a565b60405180910390f35b610654600480360381019061064f9190612b67565b611a1e565b604051610661919061377d565b60405180910390f35b610684600480360381019061067f9190612b3e565b611ab2565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106f957506106f882611baa565b5b9050919050565b610708611c8c565b73ffffffffffffffffffffffffffffffffffffffff16610726611352565b73ffffffffffffffffffffffffffffffffffffffff161461077c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107739061399a565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6060600280546107a890613cda565b80601f01602080910402602001604051908101604052809291908181526020018280546107d490613cda565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b600061083682611c94565b610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c9061397a565b60405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bb8261106c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610923906139fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094b611c8c565b73ffffffffffffffffffffffffffffffffffffffff1614806109bd575060016000610974611c8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806109d557506109d4816109cf611c8c565b611a1e565b5b610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b906138da565b60405180910390fd5b610a1e8383611d00565b505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610a4b611c8c565b73ffffffffffffffffffffffffffffffffffffffff16610a69611352565b73ffffffffffffffffffffffffffffffffffffffff1614610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab69061399a565b60405180910390fd5b818190508484905014610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe9061391a565b60405180910390fd5b60005b84849050811015610bbe57828282818110610b4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600e6000878785818110610b92577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358152602001908152602001600020819055508080610bb690613d0c565b915050610b0a565b5050505050565b6000600480549050905090565b610be3610bdd611c8c565b82611db9565b610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990613a1a565b60405180910390fd5b610c2d838383611ef2565b505050565b6000610c3d836111fa565b8210610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c75906137da565b60405180910390fd5b6000805b600480549050811015610dae576005600060048381548110610ccd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d9d5783821415610d905760048181548110610d7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492505050610df2565b81610d9a90613d0c565b91505b80610da790613d0c565b9050610c82565b506000610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de7906137da565b60405180910390fd5b505b92915050565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b906137ba565b60405180910390fd5b6000610e8e610bc5565b9050600c60009054906101000a900460ff1615610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed790613a5a565b60405180910390fd5b600b54600182610ef09190613b69565b1115610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f289061385a565b60405180910390fd5b610f4b83836040518060200160405280600081525061214e565b505050565b610f6b83838360405180602001604052806000815250611820565b505050565b6000610f7a610bc5565b8210610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613a3a565b60405180910390fd5b819050919050565b610fcb611c8c565b73ffffffffffffffffffffffffffffffffffffffff16610fe9611352565b73ffffffffffffffffffffffffffffffffffffffff161461103f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110369061399a565b60405180910390fd5b8060099080519060200190611055929190612918565b5050565b600c60009054906101000a900460ff1681565b6000806005600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c9061393a565b60405180910390fd5b80915050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61117c611c8c565b73ffffffffffffffffffffffffffffffffffffffff1661119a611352565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e79061399a565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611262906138fa565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112ba611c8c565b73ffffffffffffffffffffffffffffffffffffffff166112d8611352565b73ffffffffffffffffffffffffffffffffffffffff161461132e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113259061399a565b60405180910390fd5b61133860006121a9565b565b600d6020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461138a90613cda565b80601f01602080910402602001604051908101604052809291908181526020018280546113b690613cda565b80156114035780601f106113d857610100808354040283529160200191611403565b820191906000526020600020905b8154815290600101906020018083116113e657829003601f168201915b5050505050905090565b611415611c8c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a9061389a565b60405180910390fd5b8060086000611490611c8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661153d611c8c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611582919061377d565b60405180910390a35050565b611596611c8c565b73ffffffffffffffffffffffffffffffffffffffff166115b4611352565b73ffffffffffffffffffffffffffffffffffffffff161461160a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116019061399a565b60405180910390fd5b818190508484905014611652576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116499061391a565b60405180910390fd5b60005b8484905081101561170957828282818110611699577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600d60008787858181106116dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135815260200190815260200160002081905550808061170190613d0c565b915050611655565b5050505050565b611718611c8c565b73ffffffffffffffffffffffffffffffffffffffff16611736611352565b73ffffffffffffffffffffffffffffffffffffffff161461178c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117839061399a565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f44f92d27abdf4cfb6a7d712c3af68f3be086d4ca747ab802c36f67d6790060d88282604051611814929190613754565b60405180910390a15050565b61183161182b611c8c565b83611db9565b611870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186790613a1a565b60405180910390fd5b61187c8484848461226d565b50505050565b606061188d82611c94565b6118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c3906139da565b60405180910390fd5b60006118d66122c9565b905060008151116118f65760405180602001604052806000815250611921565b806119008461235b565b6040516020016119119291906136c9565b6040516020818303038152906040525b915050919050565b611931611c8c565b73ffffffffffffffffffffffffffffffffffffffff1661194f611352565b73ffffffffffffffffffffffffffffffffffffffff16146119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c9061399a565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b600e6020528060005260406000206000915090505481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aba611c8c565b73ffffffffffffffffffffffffffffffffffffffff16611ad8611352565b73ffffffffffffffffffffffffffffffffffffffff1614611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b259061399a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b959061381a565b60405180910390fd5b611ba7816121a9565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c7557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c855750611c8482612508565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166005600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816007600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d738361106c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dc482611c94565b611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa906138ba565b60405180910390fd5b6000611e0e8361106c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7d57508373ffffffffffffffffffffffffffffffffffffffff16611e658461082b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e8e5750611e8d8185611a1e565b5b80611ee9575060016000611ea0611c8c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f128261106c565b73ffffffffffffffffffffffffffffffffffffffff1614611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f906139ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcf9061387a565b60405180910390fd5b611fe3838383612572565b611fee600082611d00565b6001600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203e9190613bf0565b925050819055506001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120959190613b69565b92505081905550816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6121588383612577565b612165600084848461276e565b6121a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219b906137fa565b60405180910390fd5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612278848484611ef2565b6122848484848461276e565b6122c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ba906137fa565b60405180910390fd5b50505050565b6060600980546122d890613cda565b80601f016020809104026020016040519081016040528092919081815260200182805461230490613cda565b80156123515780601f1061232657610100808354040283529160200191612351565b820191906000526020600020905b81548152906001019060200180831161233457829003601f168201915b5050505050905090565b606060008214156123a3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612503565b600082905060005b600082146123d55780806123be90613d0c565b915050600a826123ce9190613bbf565b91506123ab565b60008167ffffffffffffffff811115612417577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124495781602001600182028036833780820191505090505b5090505b600085146124fc576001826124629190613bf0565b9150600a856124719190613d55565b603061247d9190613b69565b60f81b8183815181106124b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124f59190613bbf565b945061244d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de9061395a565b60405180910390fd5b6125f081611c94565b15612630576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126279061383a565b60405180910390fd5b61263c60008383612572565b6001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461268c9190613b69565b925050819055506004819080600181540180825580915050600190039060005260206000200160009091909190915055816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061278f8473ffffffffffffffffffffffffffffffffffffffff16612905565b156128f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b8611c8c565b8786866040518563ffffffff1660e01b81526004016127da9493929190613708565b602060405180830381600087803b1580156127f457600080fd5b505af192505050801561282557506040513d601f19601f820116820180604052508101906128229190612dac565b60015b6128a8573d8060008114612855576040519150601f19603f3d011682016040523d82523d6000602084013e61285a565b606091505b506000815114156128a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612897906137fa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128fd565b600190505b949350505050565b600080823b905060008111915050919050565b82805461292490613cda565b90600052602060002090601f016020900481019282612946576000855561298d565b82601f1061295f57805160ff191683800117855561298d565b8280016001018555821561298d579182015b8281111561298c578251825591602001919060010190612971565b5b50905061299a919061299e565b5090565b5b808211156129b757600081600090555060010161299f565b5090565b60006129ce6129c984613ac6565b613a95565b9050828152602081018484840111156129e657600080fd5b6129f1848285613c98565b509392505050565b6000612a0c612a0784613af6565b613a95565b905082815260208101848484011115612a2457600080fd5b612a2f848285613c98565b509392505050565b600081359050612a4681613e53565b92915050565b60008083601f840112612a5e57600080fd5b8235905067ffffffffffffffff811115612a7757600080fd5b602083019150836020820283011115612a8f57600080fd5b9250929050565b600081359050612aa581613e6a565b92915050565b600081359050612aba81613e81565b92915050565b600081519050612acf81613e81565b92915050565b600082601f830112612ae657600080fd5b8135612af68482602086016129bb565b91505092915050565b600082601f830112612b1057600080fd5b8135612b208482602086016129f9565b91505092915050565b600081359050612b3881613e98565b92915050565b600060208284031215612b5057600080fd5b6000612b5e84828501612a37565b91505092915050565b60008060408385031215612b7a57600080fd5b6000612b8885828601612a37565b9250506020612b9985828601612a37565b9150509250929050565b600080600060608486031215612bb857600080fd5b6000612bc686828701612a37565b9350506020612bd786828701612a37565b9250506040612be886828701612b29565b9150509250925092565b60008060008060808587031215612c0857600080fd5b6000612c1687828801612a37565b9450506020612c2787828801612a37565b9350506040612c3887828801612b29565b925050606085013567ffffffffffffffff811115612c5557600080fd5b612c6187828801612ad5565b91505092959194509250565b60008060408385031215612c8057600080fd5b6000612c8e85828601612a37565b9250506020612c9f85828601612a96565b9150509250929050565b60008060408385031215612cbc57600080fd5b6000612cca85828601612a37565b9250506020612cdb85828601612b29565b9150509250929050565b60008060008060408587031215612cfb57600080fd5b600085013567ffffffffffffffff811115612d1557600080fd5b612d2187828801612a4c565b9450945050602085013567ffffffffffffffff811115612d4057600080fd5b612d4c87828801612a4c565b925092505092959194509250565b600060208284031215612d6c57600080fd5b6000612d7a84828501612a96565b91505092915050565b600060208284031215612d9557600080fd5b6000612da384828501612aab565b91505092915050565b600060208284031215612dbe57600080fd5b6000612dcc84828501612ac0565b91505092915050565b600060208284031215612de757600080fd5b600082013567ffffffffffffffff811115612e0157600080fd5b612e0d84828501612aff565b91505092915050565b600060208284031215612e2857600080fd5b6000612e3684828501612b29565b91505092915050565b612e4881613c24565b82525050565b612e5781613c36565b82525050565b6000612e6882613b26565b612e728185613b3c565b9350612e82818560208601613ca7565b612e8b81613e42565b840191505092915050565b6000612ea182613b31565b612eab8185613b4d565b9350612ebb818560208601613ca7565b612ec481613e42565b840191505092915050565b6000612eda82613b31565b612ee48185613b5e565b9350612ef4818560208601613ca7565b80840191505092915050565b6000612f0d600783613b4d565b91507f216d696e746572000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000612f4d602b83613b4d565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612fb3603283613b4d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613019602683613b4d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061307f601c83613b4d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006130bf600d83613b4d565b91507f4f7665724d6178537570706c79000000000000000000000000000000000000006000830152602082019050919050565b60006130ff602483613b4d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613165601983613b4d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006131a5602c83613b4d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061320b603883613b4d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613271602a83613b4d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006132d7602183613b4d565b91507f4d7573742070726f7669646520657175616c2069647320616e642076616c756560008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061333d602983613b4d565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006133a3602083613b4d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006133e3602c83613b4d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613449602083613b4d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613489602983613b4d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ef602f83613b4d565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613555602183613b4d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135bb603183613b4d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613621602c83613b4d565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613687600683613b4d565b91507f70617573656400000000000000000000000000000000000000000000000000006000830152602082019050919050565b6136c381613c8e565b82525050565b60006136d58285612ecf565b91506136e18284612ecf565b91508190509392505050565b60006020820190506137026000830184612e3f565b92915050565b600060808201905061371d6000830187612e3f565b61372a6020830186612e3f565b61373760408301856136ba565b81810360608301526137498184612e5d565b905095945050505050565b60006040820190506137696000830185612e3f565b6137766020830184612e4e565b9392505050565b60006020820190506137926000830184612e4e565b92915050565b600060208201905081810360008301526137b28184612e96565b905092915050565b600060208201905081810360008301526137d381612f00565b9050919050565b600060208201905081810360008301526137f381612f40565b9050919050565b6000602082019050818103600083015261381381612fa6565b9050919050565b600060208201905081810360008301526138338161300c565b9050919050565b6000602082019050818103600083015261385381613072565b9050919050565b60006020820190508181036000830152613873816130b2565b9050919050565b60006020820190508181036000830152613893816130f2565b9050919050565b600060208201905081810360008301526138b381613158565b9050919050565b600060208201905081810360008301526138d381613198565b9050919050565b600060208201905081810360008301526138f3816131fe565b9050919050565b6000602082019050818103600083015261391381613264565b9050919050565b60006020820190508181036000830152613933816132ca565b9050919050565b6000602082019050818103600083015261395381613330565b9050919050565b6000602082019050818103600083015261397381613396565b9050919050565b60006020820190508181036000830152613993816133d6565b9050919050565b600060208201905081810360008301526139b38161343c565b9050919050565b600060208201905081810360008301526139d38161347c565b9050919050565b600060208201905081810360008301526139f3816134e2565b9050919050565b60006020820190508181036000830152613a1381613548565b9050919050565b60006020820190508181036000830152613a33816135ae565b9050919050565b60006020820190508181036000830152613a5381613614565b9050919050565b60006020820190508181036000830152613a738161367a565b9050919050565b6000602082019050613a8f60008301846136ba565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613abc57613abb613e13565b5b8060405250919050565b600067ffffffffffffffff821115613ae157613ae0613e13565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613b1157613b10613e13565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b7482613c8e565b9150613b7f83613c8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bb457613bb3613d86565b5b828201905092915050565b6000613bca82613c8e565b9150613bd583613c8e565b925082613be557613be4613db5565b5b828204905092915050565b6000613bfb82613c8e565b9150613c0683613c8e565b925082821015613c1957613c18613d86565b5b828203905092915050565b6000613c2f82613c6e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cc5578082015181840152602081019050613caa565b83811115613cd4576000848401525b50505050565b60006002820490506001821680613cf257607f821691505b60208210811415613d0657613d05613de4565b5b50919050565b6000613d1782613c8e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d4a57613d49613d86565b5b600182019050919050565b6000613d6082613c8e565b9150613d6b83613c8e565b925082613d7b57613d7a613db5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e5c81613c24565b8114613e6757600080fd5b50565b613e7381613c36565b8114613e7e57600080fd5b50565b613e8a81613c42565b8114613e9557600080fd5b50565b613ea181613c8e565b8114613eac57600080fd5b5056fea26469706673582212209f63241148d2513c5dd9fbe1dfa883584b376936c1019601610db46a7122023264736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000016536f6369616c204245455320556e69766572736974790000000000000000000000000000000000000000000000000000000000000000000000000000000000035342550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f736f6369616c626565732d6d696e742e73332e616d617a6f6e6177732e636f6d2f0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Social BEES University
Arg [1] : _symbol (string): SBU
Arg [2] : _initBaseURI (string): https://socialbees-mint.s3.amazonaws.com/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [4] : 536f6369616c204245455320556e697665727369747900000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5342550000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000029
Arg [8] : 68747470733a2f2f736f6369616c626565732d6d696e742e73332e616d617a6f
Arg [9] : 6e6177732e636f6d2f0000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

39804:2788:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38354:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42512:77;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26660:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28249:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27738:445;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39947:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41921:284;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39309:112;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29141:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38663:570;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40418:304;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29551:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39498:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41581:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40045:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26354:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6565:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41693:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26082:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4761:103;;;:::i;:::-;;40080:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4110:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26829:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28542:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6182:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29807:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27002:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41799:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40003:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40154:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28908:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5019:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38354:225;38457:4;38496:35;38481:50;;;:11;:50;;;;:90;;;;38535:36;38559:11;38535:23;:36::i;:::-;38481:90;38474:97;;38354:225;;;:::o;42512:77::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42575:6:::1;42566;;:15;;;;;;;;;;;;;;;;;;42512:77:::0;:::o;26660:100::-;26714:13;26747:5;26740:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26660:100;:::o;28249:221::-;28325:7;28353:16;28361:7;28353;:16::i;:::-;28345:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28438:15;:24;28454:7;28438:24;;;;;;;;;;;;;;;;;;;;;28431:31;;28249:221;;;:::o;27738:445::-;27819:13;27835:24;27851:7;27835:15;:24::i;:::-;27819:40;;27884:5;27878:11;;:2;:11;;;;27870:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27978:5;27962:21;;:12;:10;:12::i;:::-;:21;;;:54;;;;27987:15;:29;28003:12;:10;:12::i;:::-;27987:29;;;;;;;;;;;;;;;;;;;;;;;;;27962:54;:95;;;;28020:37;28037:5;28044:12;:10;:12::i;:::-;28020:16;:37::i;:::-;27962:95;27940:201;;;;;;;;;;;;:::i;:::-;;;;;;;;;28154:21;28163:2;28167:7;28154:8;:21::i;:::-;27738:445;;;:::o;39947:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;41921:284::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42042:7:::1;;:14;;42027:4;;:11;;:29;42019:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;42108:9;42104:94;42127:4;;:11;;42123:1;:15;42104:94;;;42178:7;;42186:1;42178:10;;;;;;;;;;;;;;;;;;;;;42155:11;:20;42167:4;;42172:1;42167:7;;;;;;;;;;;;;;;;;;;;;42155:20;;;;;;;;;;;:33;;;;42140:3;;;;;:::i;:::-;;;;42104:94;;;;41921:284:::0;;;;:::o;39309:112::-;39370:7;39397:9;:16;;;;39390:23;;39309:112;:::o;29141:339::-;29336:41;29355:12;:10;:12::i;:::-;29369:7;29336:18;:41::i;:::-;29328:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29444:28;29454:4;29460:2;29464:7;29444:9;:28::i;:::-;29141:339;;;:::o;38663:570::-;38752:15;38796:24;38814:5;38796:17;:24::i;:::-;38788:5;:32;38780:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;38881:10;38907:6;38902:250;38919:9;:16;;;;38915:1;:20;38902:250;;;38970:7;:21;38978:9;38988:1;38978:12;;;;;;;;;;;;;;;;;;;;;;;;38970:21;;;;;;;;;;;;;;;;;;;;;38961:30;;:5;:30;;;38957:184;;;39025:5;39016;:14;39012:113;;;39061:9;39071:1;39061:12;;;;;;;;;;;;;;;;;;;;;;;;39054:19;;;;;;39012:113;39118:7;;;;:::i;:::-;;;38957:184;38937:3;;;;:::i;:::-;;;38902:250;;;;39172:5;39164:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38663:570;;;;;;:::o;40418:304::-;40492:13;:25;40506:10;40492:25;;;;;;;;;;;;;;;;;;;;;;;;;40484:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;40541:14;40558:13;:11;:13::i;:::-;40541:30;;40591:6;;;;;;;;;;;40590:7;40582:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;40642:9;;40637:1;40628:6;:10;;;;:::i;:::-;:23;;40620:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;40683:31;40693:3;40698:11;40683:31;;;;;;;;;;;;:9;:31::i;:::-;40418:304;;;:::o;29551:185::-;29689:39;29706:4;29712:2;29716:7;29689:39;;;;;;;;;;;;:16;:39::i;:::-;29551:185;;;:::o;39498:226::-;39573:7;39609:35;:33;:35::i;:::-;39601:5;:43;39593:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;39711:5;39704:12;;39498:226;;;:::o;41581:96::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41663:6:::1;41648:12;:21;;;;;;;;;;;;:::i;:::-;;41581:96:::0;:::o;40045:26::-;;;;;;;;;;;;;:::o;26354:239::-;26426:7;26446:13;26462:7;:16;26470:7;26462:16;;;;;;;;;;;;;;;;;;;;;26446:32;;26514:1;26497:19;;:5;:19;;;;26489:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26580:5;26573:12;;;26354:239;;;:::o;6565:111::-;6624:4;6648:15;:20;6664:3;6648:20;;;;;;;;;;;;;;;;;;;;;;;;;6641:27;;6565:111;;;:::o;41693:98::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41773:10:::1;41761:9;:22;;;;41693:98:::0;:::o;26082:210::-;26154:7;26199:1;26182:19;;:5;:19;;;;26174:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26268:9;:16;26278:5;26268:16;;;;;;;;;;;;;;;;26261:23;;26082:210;;;:::o;4761:103::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4826:30:::1;4853:1;4826:18;:30::i;:::-;4761:103::o:0;40080:48::-;;;;;;;;;;;;;;;;;:::o;4110:87::-;4156:7;4183:6;;;;;;;;;;;4176:13;;4110:87;:::o;26829:104::-;26885:13;26918:7;26911:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26829:104;:::o;28542:295::-;28657:12;:10;:12::i;:::-;28645:24;;:8;:24;;;;28637:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28757:8;28712:18;:32;28731:12;:10;:12::i;:::-;28712:32;;;;;;;;;;;;;;;:42;28745:8;28712:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28810:8;28781:48;;28796:12;:10;:12::i;:::-;28781:48;;;28820:8;28781:48;;;;;;:::i;:::-;;;;;;;;28542:295;;:::o;42211:::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42341:7:::1;;:14;;42326:4;;:11;;:29;42318:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;42407:9;42403:96;42426:4;;:11;;42422:1;:15;42403:96;;;42479:7;;42487:1;42479:10;;;;;;;;;;;;;;;;;;;;;42454:13;:22;42468:4;;42473:1;42468:7;;;;;;;;;;;;;;;;;;;;;42454:22;;;;;;;;;;;:35;;;;42439:3;;;;;:::i;:::-;;;;42403:96;;;;42211:295:::0;;;;:::o;6182:194::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6308:7:::1;6275:15;:30;6291:13;6275:30;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;6331:37;6345:13;6360:7;6331:37;;;;;;;:::i;:::-;;;;;;;;6182:194:::0;;:::o;29807:328::-;29982:41;30001:12;:10;:12::i;:::-;30015:7;29982:18;:41::i;:::-;29974:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30088:39;30102:4;30108:2;30112:7;30121:5;30088:13;:39::i;:::-;29807:328;;;;:::o;27002:334::-;27075:13;27109:16;27117:7;27109;:16::i;:::-;27101:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27190:21;27214:10;:8;:10::i;:::-;27190:34;;27266:1;27248:7;27242:21;:25;:86;;;;;;;;;;;;;;;;;27294:7;27303:18;:7;:16;:18::i;:::-;27277:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27242:86;27235:93;;;27002:334;;;:::o;41799:116::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41900:7:::1;41875:13;:22;41889:7;41875:22;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;41799:116:::0;;:::o;40003:33::-;;;;:::o;40154:46::-;;;;;;;;;;;;;;;;;:::o;28908:164::-;29005:4;29029:18;:25;29048:5;29029:25;;;;;;;;;;;;;;;:35;29055:8;29029:35;;;;;;;;;;;;;;;;;;;;;;;;;29022:42;;28908:164;;;;:::o;5019:201::-;4341:12;:10;:12::i;:::-;4330:23;;:7;:5;:7::i;:::-;:23;;;4322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5128:1:::1;5108:22;;:8;:22;;;;5100:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5184:28;5203:8;5184:18;:28::i;:::-;5019:201:::0;:::o;25713:305::-;25815:4;25867:25;25852:40;;;:11;:40;;;;:105;;;;25924:33;25909:48;;;:11;:48;;;;25852:105;:158;;;;25974:36;25998:11;25974:23;:36::i;:::-;25852:158;25832:178;;25713:305;;;:::o;2834:98::-;2887:7;2914:10;2907:17;;2834:98;:::o;31645:127::-;31710:4;31762:1;31734:30;;:7;:16;31742:7;31734:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31727:37;;31645:127;;;:::o;35692:175::-;35794:2;35767:15;:24;35783:7;35767:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35851:7;35847:2;35812:47;;35821:24;35837:7;35821:15;:24::i;:::-;35812:47;;;;;;;;;;;;35692:175;;:::o;31939:382::-;32032:4;32057:16;32065:7;32057;:16::i;:::-;32049:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32133:13;32149:24;32165:7;32149:15;:24::i;:::-;32133:40;;32203:5;32192:16;;:7;:16;;;:51;;;;32236:7;32212:31;;:20;32224:7;32212:11;:20::i;:::-;:31;;;32192:51;:87;;;;32247:32;32264:5;32271:7;32247:16;:32::i;:::-;32192:87;:120;;;;32283:15;:29;32299:12;:10;:12::i;:::-;32283:29;;;;;;;;;;;;;;;;;;;;;;;;;32192:120;32184:129;;;31939:382;;;;:::o;34997:577::-;35157:4;35129:32;;:24;35145:7;35129:15;:24::i;:::-;:32;;;35121:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;35240:1;35226:16;;:2;:16;;;;35218:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35296:39;35317:4;35323:2;35327:7;35296:20;:39::i;:::-;35400:29;35417:1;35421:7;35400:8;:29::i;:::-;35459:1;35440:9;:15;35450:4;35440:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35488:1;35471:9;:13;35481:2;35471:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35519:2;35500:7;:16;35508:7;35500:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35558:7;35554:2;35539:27;;35548:4;35539:27;;;;;;;;;;;;34997:577;;;:::o;33002:321::-;33132:18;33138:2;33142:7;33132:5;:18::i;:::-;33183:54;33214:1;33218:2;33222:7;33231:5;33183:22;:54::i;:::-;33161:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33002:321;;;:::o;5380:191::-;5454:16;5473:6;;;;;;;;;;;5454:25;;5499:8;5490:6;;:17;;;;;;;;;;;;;;;;;;5554:8;5523:40;;5544:8;5523:40;;;;;;;;;;;;5380:191;;:::o;31017:315::-;31174:28;31184:4;31190:2;31194:7;31174:9;:28::i;:::-;31221:48;31244:4;31250:2;31254:7;31263:5;31221:22;:48::i;:::-;31213:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;31017:315;;;;:::o;41464:111::-;41524:13;41555:12;41548:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41464:111;:::o;396:723::-;452:13;682:1;673:5;:10;669:53;;;700:10;;;;;;;;;;;;;;;;;;;;;669:53;732:12;747:5;732:20;;763:14;788:78;803:1;795:4;:9;788:78;;821:8;;;;;:::i;:::-;;;;852:2;844:10;;;;;:::i;:::-;;;788:78;;;876:19;908:6;898:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876:39;;926:154;942:1;933:5;:10;926:154;;970:1;960:11;;;;;:::i;:::-;;;1037:2;1029:5;:10;;;;:::i;:::-;1016:2;:24;;;;:::i;:::-;1003:39;;986:6;993;986:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1066:2;1057:11;;;;;:::i;:::-;;;926:154;;;1104:6;1090:21;;;;;396:723;;;;:::o;17645:157::-;17730:4;17769:25;17754:40;;;:11;:40;;;;17747:47;;17645:157;;;:::o;37805:126::-;;;;:::o;33659:439::-;33753:1;33739:16;;:2;:16;;;;33731:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33812:16;33820:7;33812;:16::i;:::-;33811:17;33803:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33874:45;33903:1;33907:2;33911:7;33874:20;:45::i;:::-;33947:1;33930:9;:13;33940:2;33930:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33984:9;33999:7;33984:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34037:2;34018:7;:16;34026:7;34018:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34082:7;34078:2;34057:33;;34074:1;34057:33;;;;;;;;;;;;33659:439;;:::o;36434:799::-;36589:4;36610:15;:2;:13;;;:15::i;:::-;36606:620;;;36662:2;36646:36;;;36683:12;:10;:12::i;:::-;36697:4;36703:7;36712:5;36646:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36642:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36905:1;36888:6;:13;:18;36884:272;;;36931:60;;;;;;;;;;:::i;:::-;;;;;;;;36884:272;37106:6;37100:13;37091:6;37087:2;37083:15;37076:38;36642:529;36779:41;;;36769:51;;;:6;:51;;;;36762:58;;;;;36606:620;37210:4;37203:11;;36434:799;;;;;;;:::o;7501:387::-;7561:4;7769:12;7836:7;7824:20;7816:28;;7879:1;7872:4;:8;7865:15;;;7501:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;867:367::-;;;1000:3;993:4;985:6;981:17;977:27;967:2;;1018:1;1015;1008:12;967:2;1054:6;1041:20;1031:30;;1084:18;1076:6;1073:30;1070:2;;;1116:1;1113;1106:12;1070:2;1153:4;1145:6;1141:17;1129:29;;1207:3;1199:4;1191:6;1187:17;1177:8;1173:32;1170:41;1167:2;;;1224:1;1221;1214:12;1167:2;957:277;;;;;:::o;1240:133::-;;1321:6;1308:20;1299:29;;1337:30;1361:5;1337:30;:::i;:::-;1289:84;;;;:::o;1379:137::-;;1462:6;1449:20;1440:29;;1478:32;1504:5;1478:32;:::i;:::-;1430:86;;;;:::o;1522:141::-;;1609:6;1603:13;1594:22;;1625:32;1651:5;1625:32;:::i;:::-;1584:79;;;;:::o;1682:271::-;;1786:3;1779:4;1771:6;1767:17;1763:27;1753:2;;1804:1;1801;1794:12;1753:2;1844:6;1831:20;1869:78;1943:3;1935:6;1928:4;1920:6;1916:17;1869:78;:::i;:::-;1860:87;;1743:210;;;;;:::o;1973:273::-;;2078:3;2071:4;2063:6;2059:17;2055:27;2045:2;;2096:1;2093;2086:12;2045:2;2136:6;2123:20;2161:79;2236:3;2228:6;2221:4;2213:6;2209:17;2161:79;:::i;:::-;2152:88;;2035:211;;;;;:::o;2252:139::-;;2336:6;2323:20;2314:29;;2352:33;2379:5;2352:33;:::i;:::-;2304:87;;;;:::o;2397:262::-;;2505:2;2493:9;2484:7;2480:23;2476:32;2473:2;;;2521:1;2518;2511:12;2473:2;2564:1;2589:53;2634:7;2625:6;2614:9;2610:22;2589:53;:::i;:::-;2579:63;;2535:117;2463:196;;;;:::o;2665:407::-;;;2790:2;2778:9;2769:7;2765:23;2761:32;2758:2;;;2806:1;2803;2796:12;2758:2;2849:1;2874:53;2919:7;2910:6;2899:9;2895:22;2874:53;:::i;:::-;2864:63;;2820:117;2976:2;3002:53;3047:7;3038:6;3027:9;3023:22;3002:53;:::i;:::-;2992:63;;2947:118;2748:324;;;;;:::o;3078:552::-;;;;3220:2;3208:9;3199:7;3195:23;3191:32;3188:2;;;3236:1;3233;3226:12;3188:2;3279:1;3304:53;3349:7;3340:6;3329:9;3325:22;3304:53;:::i;:::-;3294:63;;3250:117;3406:2;3432:53;3477:7;3468:6;3457:9;3453:22;3432:53;:::i;:::-;3422:63;;3377:118;3534:2;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3505:118;3178:452;;;;;:::o;3636:809::-;;;;;3804:3;3792:9;3783:7;3779:23;3775:33;3772:2;;;3821:1;3818;3811:12;3772:2;3864:1;3889:53;3934:7;3925:6;3914:9;3910:22;3889:53;:::i;:::-;3879:63;;3835:117;3991:2;4017:53;4062:7;4053:6;4042:9;4038:22;4017:53;:::i;:::-;4007:63;;3962:118;4119:2;4145:53;4190:7;4181:6;4170:9;4166:22;4145:53;:::i;:::-;4135:63;;4090:118;4275:2;4264:9;4260:18;4247:32;4306:18;4298:6;4295:30;4292:2;;;4338:1;4335;4328:12;4292:2;4366:62;4420:7;4411:6;4400:9;4396:22;4366:62;:::i;:::-;4356:72;;4218:220;3762:683;;;;;;;:::o;4451:401::-;;;4573:2;4561:9;4552:7;4548:23;4544:32;4541:2;;;4589:1;4586;4579:12;4541:2;4632:1;4657:53;4702:7;4693:6;4682:9;4678:22;4657:53;:::i;:::-;4647:63;;4603:117;4759:2;4785:50;4827:7;4818:6;4807:9;4803:22;4785:50;:::i;:::-;4775:60;;4730:115;4531:321;;;;;:::o;4858:407::-;;;4983:2;4971:9;4962:7;4958:23;4954:32;4951:2;;;4999:1;4996;4989:12;4951:2;5042:1;5067:53;5112:7;5103:6;5092:9;5088:22;5067:53;:::i;:::-;5057:63;;5013:117;5169:2;5195:53;5240:7;5231:6;5220:9;5216:22;5195:53;:::i;:::-;5185:63;;5140:118;4941:324;;;;;:::o;5271:733::-;;;;;5466:2;5454:9;5445:7;5441:23;5437:32;5434:2;;;5482:1;5479;5472:12;5434:2;5553:1;5542:9;5538:17;5525:31;5583:18;5575:6;5572:30;5569:2;;;5615:1;5612;5605:12;5569:2;5651:80;5723:7;5714:6;5703:9;5699:22;5651:80;:::i;:::-;5633:98;;;;5496:245;5808:2;5797:9;5793:18;5780:32;5839:18;5831:6;5828:30;5825:2;;;5871:1;5868;5861:12;5825:2;5907:80;5979:7;5970:6;5959:9;5955:22;5907:80;:::i;:::-;5889:98;;;;5751:246;5424:580;;;;;;;:::o;6010:256::-;;6115:2;6103:9;6094:7;6090:23;6086:32;6083:2;;;6131:1;6128;6121:12;6083:2;6174:1;6199:50;6241:7;6232:6;6221:9;6217:22;6199:50;:::i;:::-;6189:60;;6145:114;6073:193;;;;:::o;6272:260::-;;6379:2;6367:9;6358:7;6354:23;6350:32;6347:2;;;6395:1;6392;6385:12;6347:2;6438:1;6463:52;6507:7;6498:6;6487:9;6483:22;6463:52;:::i;:::-;6453:62;;6409:116;6337:195;;;;:::o;6538:282::-;;6656:2;6644:9;6635:7;6631:23;6627:32;6624:2;;;6672:1;6669;6662:12;6624:2;6715:1;6740:63;6795:7;6786:6;6775:9;6771:22;6740:63;:::i;:::-;6730:73;;6686:127;6614:206;;;;:::o;6826:375::-;;6944:2;6932:9;6923:7;6919:23;6915:32;6912:2;;;6960:1;6957;6950:12;6912:2;7031:1;7020:9;7016:17;7003:31;7061:18;7053:6;7050:30;7047:2;;;7093:1;7090;7083:12;7047:2;7121:63;7176:7;7167:6;7156:9;7152:22;7121:63;:::i;:::-;7111:73;;6974:220;6902:299;;;;:::o;7207:262::-;;7315:2;7303:9;7294:7;7290:23;7286:32;7283:2;;;7331:1;7328;7321:12;7283:2;7374:1;7399:53;7444:7;7435:6;7424:9;7420:22;7399:53;:::i;:::-;7389:63;;7345:117;7273:196;;;;:::o;7475:118::-;7562:24;7580:5;7562:24;:::i;:::-;7557:3;7550:37;7540:53;;:::o;7599:109::-;7680:21;7695:5;7680:21;:::i;:::-;7675:3;7668:34;7658:50;;:::o;7714:360::-;;7828:38;7860:5;7828:38;:::i;:::-;7882:70;7945:6;7940:3;7882:70;:::i;:::-;7875:77;;7961:52;8006:6;8001:3;7994:4;7987:5;7983:16;7961:52;:::i;:::-;8038:29;8060:6;8038:29;:::i;:::-;8033:3;8029:39;8022:46;;7804:270;;;;;:::o;8080:364::-;;8196:39;8229:5;8196:39;:::i;:::-;8251:71;8315:6;8310:3;8251:71;:::i;:::-;8244:78;;8331:52;8376:6;8371:3;8364:4;8357:5;8353:16;8331:52;:::i;:::-;8408:29;8430:6;8408:29;:::i;:::-;8403:3;8399:39;8392:46;;8172:272;;;;;:::o;8450:377::-;;8584:39;8617:5;8584:39;:::i;:::-;8639:89;8721:6;8716:3;8639:89;:::i;:::-;8632:96;;8737:52;8782:6;8777:3;8770:4;8763:5;8759:16;8737:52;:::i;:::-;8814:6;8809:3;8805:16;8798:23;;8560:267;;;;;:::o;8833:304::-;;8996:66;9060:1;9055:3;8996:66;:::i;:::-;8989:73;;9092:9;9088:1;9083:3;9079:11;9072:30;9128:2;9123:3;9119:12;9112:19;;8979:158;;;:::o;9143:375::-;;9306:67;9370:2;9365:3;9306:67;:::i;:::-;9299:74;;9403:34;9399:1;9394:3;9390:11;9383:55;9469:13;9464:2;9459:3;9455:12;9448:35;9509:2;9504:3;9500:12;9493:19;;9289:229;;;:::o;9524:382::-;;9687:67;9751:2;9746:3;9687:67;:::i;:::-;9680:74;;9784:34;9780:1;9775:3;9771:11;9764:55;9850:20;9845:2;9840:3;9836:12;9829:42;9897:2;9892:3;9888:12;9881:19;;9670:236;;;:::o;9912:370::-;;10075:67;10139:2;10134:3;10075:67;:::i;:::-;10068:74;;10172:34;10168:1;10163:3;10159:11;10152:55;10238:8;10233:2;10228:3;10224:12;10217:30;10273:2;10268:3;10264:12;10257:19;;10058:224;;;:::o;10288:326::-;;10451:67;10515:2;10510:3;10451:67;:::i;:::-;10444:74;;10548:30;10544:1;10539:3;10535:11;10528:51;10605:2;10600:3;10596:12;10589:19;;10434:180;;;:::o;10620:311::-;;10783:67;10847:2;10842:3;10783:67;:::i;:::-;10776:74;;10880:15;10876:1;10871:3;10867:11;10860:36;10922:2;10917:3;10913:12;10906:19;;10766:165;;;:::o;10937:368::-;;11100:67;11164:2;11159:3;11100:67;:::i;:::-;11093:74;;11197:34;11193:1;11188:3;11184:11;11177:55;11263:6;11258:2;11253:3;11249:12;11242:28;11296:2;11291:3;11287:12;11280:19;;11083:222;;;:::o;11311:323::-;;11474:67;11538:2;11533:3;11474:67;:::i;:::-;11467:74;;11571:27;11567:1;11562:3;11558:11;11551:48;11625:2;11620:3;11616:12;11609:19;;11457:177;;;:::o;11640:376::-;;11803:67;11867:2;11862:3;11803:67;:::i;:::-;11796:74;;11900:34;11896:1;11891:3;11887:11;11880:55;11966:14;11961:2;11956:3;11952:12;11945:36;12007:2;12002:3;11998:12;11991:19;;11786:230;;;:::o;12022:388::-;;12185:67;12249:2;12244:3;12185:67;:::i;:::-;12178:74;;12282:34;12278:1;12273:3;12269:11;12262:55;12348:26;12343:2;12338:3;12334:12;12327:48;12401:2;12396:3;12392:12;12385:19;;12168:242;;;:::o;12416:374::-;;12579:67;12643:2;12638:3;12579:67;:::i;:::-;12572:74;;12676:34;12672:1;12667:3;12663:11;12656:55;12742:12;12737:2;12732:3;12728:12;12721:34;12781:2;12776:3;12772:12;12765:19;;12562:228;;;:::o;12796:365::-;;12959:67;13023:2;13018:3;12959:67;:::i;:::-;12952:74;;13056:34;13052:1;13047:3;13043:11;13036:55;13122:3;13117:2;13112:3;13108:12;13101:25;13152:2;13147:3;13143:12;13136:19;;12942:219;;;:::o;13167:373::-;;13330:67;13394:2;13389:3;13330:67;:::i;:::-;13323:74;;13427:34;13423:1;13418:3;13414:11;13407:55;13493:11;13488:2;13483:3;13479:12;13472:33;13531:2;13526:3;13522:12;13515:19;;13313:227;;;:::o;13546:330::-;;13709:67;13773:2;13768:3;13709:67;:::i;:::-;13702:74;;13806:34;13802:1;13797:3;13793:11;13786:55;13867:2;13862:3;13858:12;13851:19;;13692:184;;;:::o;13882:376::-;;14045:67;14109:2;14104:3;14045:67;:::i;:::-;14038:74;;14142:34;14138:1;14133:3;14129:11;14122:55;14208:14;14203:2;14198:3;14194:12;14187:36;14249:2;14244:3;14240:12;14233:19;;14028:230;;;:::o;14264:330::-;;14427:67;14491:2;14486:3;14427:67;:::i;:::-;14420:74;;14524:34;14520:1;14515:3;14511:11;14504:55;14585:2;14580:3;14576:12;14569:19;;14410:184;;;:::o;14600:373::-;;14763:67;14827:2;14822:3;14763:67;:::i;:::-;14756:74;;14860:34;14856:1;14851:3;14847:11;14840:55;14926:11;14921:2;14916:3;14912:12;14905:33;14964:2;14959:3;14955:12;14948:19;;14746:227;;;:::o;14979:379::-;;15142:67;15206:2;15201:3;15142:67;:::i;:::-;15135:74;;15239:34;15235:1;15230:3;15226:11;15219:55;15305:17;15300:2;15295:3;15291:12;15284:39;15349:2;15344:3;15340:12;15333:19;;15125:233;;;:::o;15364:365::-;;15527:67;15591:2;15586:3;15527:67;:::i;:::-;15520:74;;15624:34;15620:1;15615:3;15611:11;15604:55;15690:3;15685:2;15680:3;15676:12;15669:25;15720:2;15715:3;15711:12;15704:19;;15510:219;;;:::o;15735:381::-;;15898:67;15962:2;15957:3;15898:67;:::i;:::-;15891:74;;15995:34;15991:1;15986:3;15982:11;15975:55;16061:19;16056:2;16051:3;16047:12;16040:41;16107:2;16102:3;16098:12;16091:19;;15881:235;;;:::o;16122:376::-;;16285:67;16349:2;16344:3;16285:67;:::i;:::-;16278:74;;16382:34;16378:1;16373:3;16369:11;16362:55;16448:14;16443:2;16438:3;16434:12;16427:36;16489:2;16484:3;16480:12;16473:19;;16268:230;;;:::o;16504:303::-;;16667:66;16731:1;16726:3;16667:66;:::i;:::-;16660:73;;16763:8;16759:1;16754:3;16750:11;16743:29;16798:2;16793:3;16789:12;16782:19;;16650:157;;;:::o;16813:118::-;16900:24;16918:5;16900:24;:::i;:::-;16895:3;16888:37;16878:53;;:::o;16937:435::-;;17139:95;17230:3;17221:6;17139:95;:::i;:::-;17132:102;;17251:95;17342:3;17333:6;17251:95;:::i;:::-;17244:102;;17363:3;17356:10;;17121:251;;;;;:::o;17378:222::-;;17509:2;17498:9;17494:18;17486:26;;17522:71;17590:1;17579:9;17575:17;17566:6;17522:71;:::i;:::-;17476:124;;;;:::o;17606:640::-;;17839:3;17828:9;17824:19;17816:27;;17853:71;17921:1;17910:9;17906:17;17897:6;17853:71;:::i;:::-;17934:72;18002:2;17991:9;17987:18;17978:6;17934:72;:::i;:::-;18016;18084:2;18073:9;18069:18;18060:6;18016:72;:::i;:::-;18135:9;18129:4;18125:20;18120:2;18109:9;18105:18;18098:48;18163:76;18234:4;18225:6;18163:76;:::i;:::-;18155:84;;17806:440;;;;;;;:::o;18252:320::-;;18405:2;18394:9;18390:18;18382:26;;18418:71;18486:1;18475:9;18471:17;18462:6;18418:71;:::i;:::-;18499:66;18561:2;18550:9;18546:18;18537:6;18499:66;:::i;:::-;18372:200;;;;;:::o;18578:210::-;;18703:2;18692:9;18688:18;18680:26;;18716:65;18778:1;18767:9;18763:17;18754:6;18716:65;:::i;:::-;18670:118;;;;:::o;18794:313::-;;18945:2;18934:9;18930:18;18922:26;;18994:9;18988:4;18984:20;18980:1;18969:9;18965:17;18958:47;19022:78;19095:4;19086:6;19022:78;:::i;:::-;19014:86;;18912:195;;;;:::o;19113:419::-;;19317:2;19306:9;19302:18;19294:26;;19366:9;19360:4;19356:20;19352:1;19341:9;19337:17;19330:47;19394:131;19520:4;19394:131;:::i;:::-;19386:139;;19284:248;;;:::o;19538:419::-;;19742:2;19731:9;19727:18;19719:26;;19791:9;19785:4;19781:20;19777:1;19766:9;19762:17;19755:47;19819:131;19945:4;19819:131;:::i;:::-;19811:139;;19709:248;;;:::o;19963:419::-;;20167:2;20156:9;20152:18;20144:26;;20216:9;20210:4;20206:20;20202:1;20191:9;20187:17;20180:47;20244:131;20370:4;20244:131;:::i;:::-;20236:139;;20134:248;;;:::o;20388:419::-;;20592:2;20581:9;20577:18;20569:26;;20641:9;20635:4;20631:20;20627:1;20616:9;20612:17;20605:47;20669:131;20795:4;20669:131;:::i;:::-;20661:139;;20559:248;;;:::o;20813:419::-;;21017:2;21006:9;21002:18;20994:26;;21066:9;21060:4;21056:20;21052:1;21041:9;21037:17;21030:47;21094:131;21220:4;21094:131;:::i;:::-;21086:139;;20984:248;;;:::o;21238:419::-;;21442:2;21431:9;21427:18;21419:26;;21491:9;21485:4;21481:20;21477:1;21466:9;21462:17;21455:47;21519:131;21645:4;21519:131;:::i;:::-;21511:139;;21409:248;;;:::o;21663:419::-;;21867:2;21856:9;21852:18;21844:26;;21916:9;21910:4;21906:20;21902:1;21891:9;21887:17;21880:47;21944:131;22070:4;21944:131;:::i;:::-;21936:139;;21834:248;;;:::o;22088:419::-;;22292:2;22281:9;22277:18;22269:26;;22341:9;22335:4;22331:20;22327:1;22316:9;22312:17;22305:47;22369:131;22495:4;22369:131;:::i;:::-;22361:139;;22259:248;;;:::o;22513:419::-;;22717:2;22706:9;22702:18;22694:26;;22766:9;22760:4;22756:20;22752:1;22741:9;22737:17;22730:47;22794:131;22920:4;22794:131;:::i;:::-;22786:139;;22684:248;;;:::o;22938:419::-;;23142:2;23131:9;23127:18;23119:26;;23191:9;23185:4;23181:20;23177:1;23166:9;23162:17;23155:47;23219:131;23345:4;23219:131;:::i;:::-;23211:139;;23109:248;;;:::o;23363:419::-;;23567:2;23556:9;23552:18;23544:26;;23616:9;23610:4;23606:20;23602:1;23591:9;23587:17;23580:47;23644:131;23770:4;23644:131;:::i;:::-;23636:139;;23534:248;;;:::o;23788:419::-;;23992:2;23981:9;23977:18;23969:26;;24041:9;24035:4;24031:20;24027:1;24016:9;24012:17;24005:47;24069:131;24195:4;24069:131;:::i;:::-;24061:139;;23959:248;;;:::o;24213:419::-;;24417:2;24406:9;24402:18;24394:26;;24466:9;24460:4;24456:20;24452:1;24441:9;24437:17;24430:47;24494:131;24620:4;24494:131;:::i;:::-;24486:139;;24384:248;;;:::o;24638:419::-;;24842:2;24831:9;24827:18;24819:26;;24891:9;24885:4;24881:20;24877:1;24866:9;24862:17;24855:47;24919:131;25045:4;24919:131;:::i;:::-;24911:139;;24809:248;;;:::o;25063:419::-;;25267:2;25256:9;25252:18;25244:26;;25316:9;25310:4;25306:20;25302:1;25291:9;25287:17;25280:47;25344:131;25470:4;25344:131;:::i;:::-;25336:139;;25234:248;;;:::o;25488:419::-;;25692:2;25681:9;25677:18;25669:26;;25741:9;25735:4;25731:20;25727:1;25716:9;25712:17;25705:47;25769:131;25895:4;25769:131;:::i;:::-;25761:139;;25659:248;;;:::o;25913:419::-;;26117:2;26106:9;26102:18;26094:26;;26166:9;26160:4;26156:20;26152:1;26141:9;26137:17;26130:47;26194:131;26320:4;26194:131;:::i;:::-;26186:139;;26084:248;;;:::o;26338:419::-;;26542:2;26531:9;26527:18;26519:26;;26591:9;26585:4;26581:20;26577:1;26566:9;26562:17;26555:47;26619:131;26745:4;26619:131;:::i;:::-;26611:139;;26509:248;;;:::o;26763:419::-;;26967:2;26956:9;26952:18;26944:26;;27016:9;27010:4;27006:20;27002:1;26991:9;26987:17;26980:47;27044:131;27170:4;27044:131;:::i;:::-;27036:139;;26934:248;;;:::o;27188:419::-;;27392:2;27381:9;27377:18;27369:26;;27441:9;27435:4;27431:20;27427:1;27416:9;27412:17;27405:47;27469:131;27595:4;27469:131;:::i;:::-;27461:139;;27359:248;;;:::o;27613:419::-;;27817:2;27806:9;27802:18;27794:26;;27866:9;27860:4;27856:20;27852:1;27841:9;27837:17;27830:47;27894:131;28020:4;27894:131;:::i;:::-;27886:139;;27784:248;;;:::o;28038:419::-;;28242:2;28231:9;28227:18;28219:26;;28291:9;28285:4;28281:20;28277:1;28266:9;28262:17;28255:47;28319:131;28445:4;28319:131;:::i;:::-;28311:139;;28209:248;;;:::o;28463:222::-;;28594:2;28583:9;28579:18;28571:26;;28607:71;28675:1;28664:9;28660:17;28651:6;28607:71;:::i;:::-;28561:124;;;;:::o;28691:283::-;;28757:2;28751:9;28741:19;;28799:4;28791:6;28787:17;28906:6;28894:10;28891:22;28870:18;28858:10;28855:34;28852:62;28849:2;;;28917:18;;:::i;:::-;28849:2;28957:10;28953:2;28946:22;28731:243;;;;:::o;28980:331::-;;29131:18;29123:6;29120:30;29117:2;;;29153:18;;:::i;:::-;29117:2;29238:4;29234:9;29227:4;29219:6;29215:17;29211:33;29203:41;;29299:4;29293;29289:15;29281:23;;29046:265;;;:::o;29317:332::-;;29469:18;29461:6;29458:30;29455:2;;;29491:18;;:::i;:::-;29455:2;29576:4;29572:9;29565:4;29557:6;29553:17;29549:33;29541:41;;29637:4;29631;29627:15;29619:23;;29384:265;;;:::o;29655:98::-;;29740:5;29734:12;29724:22;;29713:40;;;:::o;29759:99::-;;29845:5;29839:12;29829:22;;29818:40;;;:::o;29864:168::-;;29981:6;29976:3;29969:19;30021:4;30016:3;30012:14;29997:29;;29959:73;;;;:::o;30038:169::-;;30156:6;30151:3;30144:19;30196:4;30191:3;30187:14;30172:29;;30134:73;;;;:::o;30213:148::-;;30352:3;30337:18;;30327:34;;;;:::o;30367:305::-;;30426:20;30444:1;30426:20;:::i;:::-;30421:25;;30460:20;30478:1;30460:20;:::i;:::-;30455:25;;30614:1;30546:66;30542:74;30539:1;30536:81;30533:2;;;30620:18;;:::i;:::-;30533:2;30664:1;30661;30657:9;30650:16;;30411:261;;;;:::o;30678:185::-;;30735:20;30753:1;30735:20;:::i;:::-;30730:25;;30769:20;30787:1;30769:20;:::i;:::-;30764:25;;30808:1;30798:2;;30813:18;;:::i;:::-;30798:2;30855:1;30852;30848:9;30843:14;;30720:143;;;;:::o;30869:191::-;;30929:20;30947:1;30929:20;:::i;:::-;30924:25;;30963:20;30981:1;30963:20;:::i;:::-;30958:25;;31002:1;30999;30996:8;30993:2;;;31007:18;;:::i;:::-;30993:2;31052:1;31049;31045:9;31037:17;;30914:146;;;;:::o;31066:96::-;;31132:24;31150:5;31132:24;:::i;:::-;31121:35;;31111:51;;;:::o;31168:90::-;;31245:5;31238:13;31231:21;31220:32;;31210:48;;;:::o;31264:149::-;;31340:66;31333:5;31329:78;31318:89;;31308:105;;;:::o;31419:126::-;;31496:42;31489:5;31485:54;31474:65;;31464:81;;;:::o;31551:77::-;;31617:5;31606:16;;31596:32;;;:::o;31634:154::-;31718:6;31713:3;31708;31695:30;31780:1;31771:6;31766:3;31762:16;31755:27;31685:103;;;:::o;31794:307::-;31862:1;31872:113;31886:6;31883:1;31880:13;31872:113;;;31971:1;31966:3;31962:11;31956:18;31952:1;31947:3;31943:11;31936:39;31908:2;31905:1;31901:10;31896:15;;31872:113;;;32003:6;32000:1;31997:13;31994:2;;;32083:1;32074:6;32069:3;32065:16;32058:27;31994:2;31843:258;;;;:::o;32107:320::-;;32188:1;32182:4;32178:12;32168:22;;32235:1;32229:4;32225:12;32256:18;32246:2;;32312:4;32304:6;32300:17;32290:27;;32246:2;32374;32366:6;32363:14;32343:18;32340:38;32337:2;;;32393:18;;:::i;:::-;32337:2;32158:269;;;;:::o;32433:233::-;;32495:24;32513:5;32495:24;:::i;:::-;32486:33;;32541:66;32534:5;32531:77;32528:2;;;32611:18;;:::i;:::-;32528:2;32658:1;32651:5;32647:13;32640:20;;32476:190;;;:::o;32672:176::-;;32721:20;32739:1;32721:20;:::i;:::-;32716:25;;32755:20;32773:1;32755:20;:::i;:::-;32750:25;;32794:1;32784:2;;32799:18;;:::i;:::-;32784:2;32840:1;32837;32833:9;32828:14;;32706:142;;;;:::o;32854:180::-;32902:77;32899:1;32892:88;32999:4;32996:1;32989:15;33023:4;33020:1;33013:15;33040:180;33088:77;33085:1;33078:88;33185:4;33182:1;33175:15;33209:4;33206:1;33199:15;33226:180;33274:77;33271:1;33264:88;33371:4;33368:1;33361:15;33395:4;33392:1;33385:15;33412:180;33460:77;33457:1;33450:88;33557:4;33554:1;33547:15;33581:4;33578:1;33571:15;33598:102;;33690:2;33686:7;33681:2;33674:5;33670:14;33666:28;33656:38;;33646:54;;;:::o;33706:122::-;33779:24;33797:5;33779:24;:::i;:::-;33772:5;33769:35;33759:2;;33818:1;33815;33808:12;33759:2;33749:79;:::o;33834:116::-;33904:21;33919:5;33904:21;:::i;:::-;33897:5;33894:32;33884:2;;33940:1;33937;33930:12;33884:2;33874:76;:::o;33956:120::-;34028:23;34045:5;34028:23;:::i;:::-;34021:5;34018:34;34008:2;;34066:1;34063;34056:12;34008:2;33998:78;:::o;34082:122::-;34155:24;34173:5;34155:24;:::i;:::-;34148:5;34145:35;34135:2;;34194:1;34191;34184:12;34135:2;34125:79;:::o

Swarm Source

ipfs://9f63241148d2513c5dd9fbe1dfa883584b376936c1019601610db46a71220232
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.