Token BURNtest

Overview ERC-721

Total Supply:
17 BURN

Holders:
3 addresses

Profile Summary

 
Contract:
0x70e465f3f89ee392bcc6c0181258386768abd2d70x70e465F3f89Ee392BcC6c0181258386768ABd2D7

Balance
0 BURN
0x0000000000000000000000000000000000000000
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Burn

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-26
*/

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

contract ClampedRandomizer {
    uint256 private _scopeIndex = 0; //Clamping cache for random TokenID generation in the anti-sniping algo
    uint256 private immutable _scopeCap; //Size of initial randomized number pool & max generated value (zero indexed)
    mapping(uint256 => uint256) _swappedIDs; //TokenID cache for random TokenID generation in the anti-sniping algo

    constructor(uint256 scopeCap) {
        _scopeCap = scopeCap;
    }

    function _genClampedNonce() internal virtual returns(uint256) {
        uint256 scope = _scopeCap-_scopeIndex;
        uint256 swap;
        uint256 result;

        uint256 i = randomNumber() % scope;

        //Setup the value to swap in for the selected number
        if (_swappedIDs[scope-1] == 0){
            swap = scope-1;
        } else {
            swap = _swappedIDs[scope-1];
        }

        //Select a random number, swap it out with an unselected one then shorten the selection range by 1
        if (_swappedIDs[i] == 0){
            result = i;
            _swappedIDs[i] = swap;
        } else {
            result = _swappedIDs[i];
            _swappedIDs[i] = swap;
        }
        _scopeIndex++;
        return result;
    }

    function randomNumber() internal view returns(uint256){
        return uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

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/token/ERC721/[email protected]

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/[email protected]

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/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File @openzeppelin/contracts/utils/[email protected]

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;
        // solhint-disable-next-line no-inline-assembly
        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"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File @openzeppelin/contracts/utils/[email protected]

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File @openzeppelin/contracts/utils/introspection/[email protected]

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/[email protected]

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    function _baseExtension() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        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 = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory base = _baseURI();
        string memory ext = _baseExtension();

        
        
       return string(abi.encodePacked(base, (tokenId).toString(), ext));

    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
    {
        require(
            _exists(tokenId),
            "ERC721URIStorage: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File @openzeppelin/contracts/security/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File @openzeppelin/contracts/access/[email protected]

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Burnable: caller is not owner nor approved"
        );
        _burn(tokenId);
    }
}

// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
}

pragma solidity ^0.8.7;

/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }


    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

pragma solidity ^0.8.0;


contract Burn is
    ERC721,
    ERC721Enumerable,
    ERC721URIStorage,
    IERC2981,
    Pausable,
    Ownable,
    ERC721Burnable
{
    modifier onlyDevs {
         require(devFees[msg.sender].percent > 0 , "Dev Only: caller is not the developer");
        _;
    }
    
    event WithdrawFees(address indexed devAddress, uint256 amount);
    event WithdrawWrongTokens(address indexed devAddress,address tokenAddress, uint256 amount);
    event WithdrawWrongNfts(address indexed devAddress,address tokenAddress, uint256 tokenId);
    event Migration(address indexed _to, uint256 indexed _tokenId);


    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    using SafeMath for uint256;
    using Address for address;


    address public royaltyAddress = 0x43b4dC1707CD8DD0C10F6d4E5FA03577393Cd6C3;
 
    string public baseURI;
    string public baseExtension = ".json";


    // VARIABLES 
    uint256 public maxSupply = 2000;
    uint256 public maxPerTx = 20;
    uint256 public maxPerPerson = 20;
    uint256 public price = 1 ether;
    
    uint256 public royalty = 700;

    // COLLECTED FESS
    struct DevFee {
        uint256 percent;
        uint256 amount;
    }
    mapping(address => DevFee) public devFees;
    address[] private devList;

    bool public whitelistedOnly = true;
    mapping(address => uint256) public whiteListed;

  
    constructor(address[] memory _devList,  uint256[] memory _fees) ERC721("BURNtest", "BURN") {     
        require(_devList.length == _fees.length, "Error: invalid data");
        uint256 totalFee = 0;
        for(uint8 i = 0; i <_devList.length; i++) {
            devList.push(_devList[i]);
            devFees[_devList[i]] = DevFee(_fees[i], 0);
            totalFee += _fees[i];
        }
        require(totalFee == 10000,"Error: invalid total fee");
    
        _pause();

    }

    function _baseExtension() internal view override returns (string memory) {
        return baseExtension;
    }
  
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
     
    function splitFees(uint256 sentAmount) internal {

        for(uint8 i = 0;i < devList.length; i++) {
            address devAddress = devList[i];
            uint256  devFee = devFees[devAddress].percent;
            uint256 devFeeAmount = sentAmount.mul(devFee).div(10000);
            devFees[devAddress].amount += devFeeAmount;
        }

    }
    

    function mint(uint256 amount) public payable whenNotPaused {
        uint256 supply = totalSupply();
        require(amount > 0 && amount <= maxPerTx,"Error: max par tx limit");
        require(balanceOf(msg.sender) + 1 <= maxPerPerson,"Error: max per address limit");
        require(msg.value == price * amount, "Error: invalid price");
        require(supply + amount - 1 < maxSupply, "Error: cannot mint more than total supply");
        if(whitelistedOnly)
        require(whiteListed[msg.sender] >= amount,"Error: you are not whitelisted or amount is higher than limit");
        
        
        for (uint256 i = 0; i < amount; i++) {
            internalMint(msg.sender);
            if(whitelistedOnly)
            whiteListed[msg.sender] -= 1;
        }
        

        splitFees(msg.value);
    }

        function burnSet(uint256[] memory tokenIds) public {
        require(tokenIds.length % 5 == 0, "You must burn a multiple of 5 NFTs");

        uint256 quantity = tokenIds.length / 5;

        for (uint256 index = 0; index < tokenIds.length; index++) {
            // send NFT to null address
            transferFrom(msg.sender, address(0x000000000000000000000000000000000000dEaD), tokenIds[index]);
        }

        for (uint256 index = 0; index < quantity; index++) {
            _tokenIds.increment();
            _mint(msg.sender, _tokenIds.current());
        }
        }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function Owned(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    function tokenExists(uint256 _id) external view returns (bool) {
        return (_exists(_id));
    }

    function royaltyInfo(uint256, uint256 _salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        return (royaltyAddress, (_salePrice * royalty) / 10000);
    }

    
    //dev 

    function whiteList(address[] memory _addressList, uint256 count) external onlyOwner {
        require(_addressList.length > 0,"Error: list is empty");

        for(uint256 i = 0;i < _addressList.length; i++) {
             require(_addressList[i] != address(0), "Address cannot be 0.");
             whiteListed[_addressList[i]] = count;
        }
        
    }

    function removeWhiteList(address[] memory addressList) external onlyOwner {
        require(addressList.length > 0,"Error: list is empty");
        for(uint256 i = 0;i<addressList.length;i++)
        whiteListed[addressList[i]] = 0;
    }

    function updateWhitelistStatus() external onlyOwner {
        whitelistedOnly = !whitelistedOnly;
    }

    function updatePausedStatus() external onlyOwner {
        paused() ?  _unpause() : _pause();
    }

    function setMaxPerPerson(uint256 newMaxBuy) external onlyOwner {
        maxPerPerson = newMaxBuy;
    }

    function setMaxPerTx(uint256 newMaxBuy) external onlyOwner {
        maxPerTx = newMaxBuy;
    }

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }
    
    
    function setURI(uint256 tokenId, string memory uri) external onlyOwner {
        _setTokenURI(tokenId, uri);
    }
    

    function setRoyalty(uint16 _royalty) external onlyOwner {
        require(_royalty >= 0, "Royalty must be greater than or equal to 0%");
        require(_royalty <= 750, "Royalty must be greater than or equal to 7,5%" );
        royalty = _royalty;
    }
    
    function setRoyaltyAddress(address _royaltyAddress) external onlyOwner {
        royaltyAddress = _royaltyAddress;
    }
    
    //Overrides
    
     function internalMint(address to) internal {
        _tokenIds.increment();
        uint256 newItemId = _tokenIds.current();
       _mint(to, newItemId);
    }

    
    
    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) whenNotPaused {
        ERC721Enumerable._beforeTokenTransfer(from, to, tokenId);
    }

    

    function _burn(uint256 tokenId)
        internal
        override(ERC721, ERC721URIStorage)
    {
        super._burn(tokenId);
    }


    /// @dev withdraw fees
    function withdraw() external onlyDevs {
        uint256 amount = devFees[msg.sender].amount;
        require(amount > 0,"Error: no fees :(");
        payable(msg.sender).transfer(amount);
        devFees[msg.sender].amount = 0;
        emit WithdrawFees(msg.sender,amount);
    }

    /// @dev emergency withdraw contract balance to the contract owner
    function emergencyWithdraw() external onlyOwner {
        uint256 amount = address(this).balance;
        require(amount > 0,"Error: no fees :(");
        payable(msg.sender).transfer(amount);
        for(uint8 i = 0;i < devList.length; i++) {
            address devAddress = devList[i];
            devFees[devAddress].amount = 0;
        }
        emit WithdrawFees(msg.sender,amount);
    }

    
    
    /// @dev withdraw ERC20 tokens
    function withdrawTokens(address _tokenContract) external onlyOwner {
        IERC20 tokenContract = IERC20(_tokenContract);
        uint256 _amount = tokenContract.balanceOf(address(this));
        tokenContract.transfer(owner(), _amount);
        emit WithdrawWrongTokens(msg.sender,_tokenContract,_amount);
    }

        function airdropsToken(address[] memory _addr, uint256 amount) public onlyOwner {
        for (uint256 i = 0; i < _addr.length; i++) {
            airdropTokenInternal(amount,_addr[i]);
        }
    }
    
    function airdropTokenInternal(uint256 amount, address _addr) internal {
        for (uint256 i = 0; i < amount; i++) {
            internalMint(_addr);
        }
    }

    /// @dev withdraw ERC721 tokens to the contract owner
    function withdrawNFT(address _tokenContract, uint256[] memory _id) external onlyOwner {
        IERC721 tokenContract = IERC721(_tokenContract);
        for (uint256 i = 0; i < _id.length; i++) {
            tokenContract.safeTransferFrom(address(this), owner(), _id[i]);
            emit WithdrawWrongNfts(msg.sender,_tokenContract,_id[i]);
        }
    }
}

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_devList","type":"address[]"},{"internalType":"uint256[]","name":"_fees","type":"uint256[]"}],"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":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Migration","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":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"devAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"devAddress","type":"address"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"WithdrawWrongNfts","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"devAddress","type":"address"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawWrongTokens","type":"event"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"Owned","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdropsToken","outputs":[],"stateMutability":"nonpayable","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"devFees","outputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerPerson","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addressList","type":"address[]"}],"name":"removeWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"}],"name":"setMaxPerPerson","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyAddress","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"setURI","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":"uint256","name":"_id","type":"uint256"}],"name":"tokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updatePausedStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressList","type":"address[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"whiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistedOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256[]","name":"_id","type":"uint256[]"}],"name":"withdrawNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600d80546001600160a01b0319167343b4dc1707cd8dd0c10f6d4e5fa03577393cd6c317905560c06040526005608081905264173539b7b760d91b60a09081526200004e91600f9190620003f5565b506107d0601055601460118190556012819055670de0b6b3a76400006013556102bc90556017805460ff191660011790553480156200008c57600080fd5b50604051620041be380380620041be833981016040819052620000af9162000515565b6040805180820182526008815267109554939d195cdd60c21b602080830191825283518085019094526004845263212aa92760e11b908401528151919291620000fb91600091620003f5565b50805162000111906001906020840190620003f5565b5050600b80546001600160a81b0319163361010081029190911790915560405190915081906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508051825114620001b65760405162461bcd60e51b815260206004820152601360248201527f4572726f723a20696e76616c696420646174610000000000000000000000000060448201526064015b60405180910390fd5b6000805b83518160ff161015620002f3576016848260ff1681518110620001e157620001e1620006e3565b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b039092169190911790556040805180820190915283518190859060ff8516908110620002425762000242620006e3565b60200260200101518152602001600081525060156000868460ff1681518110620002705762000270620006e3565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000820151816000015560208201518160010155905050828160ff1681518110620002c757620002c7620006e3565b602002602001015182620002dc919062000652565b915080620002ea81620006aa565b915050620001ba565b508061271014620003475760405162461bcd60e51b815260206004820152601860248201527f4572726f723a20696e76616c696420746f74616c2066656500000000000000006044820152606401620001ad565b620003516200035a565b5050506200070f565b600b5460ff1615620003a25760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620001ad565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620003d83390565b6040516001600160a01b03909116815260200160405180910390a1565b82805462000403906200066d565b90600052602060002090601f01602090048101928262000427576000855562000472565b82601f106200044257805160ff191683800117855562000472565b8280016001018555821562000472579182015b828111156200047257825182559160200191906001019062000455565b506200048092915062000484565b5090565b5b8082111562000480576000815560010162000485565b600082601f830112620004ad57600080fd5b81516020620004c6620004c0836200062c565b620005f9565b80838252828201915082860187848660051b8901011115620004e757600080fd5b60005b858110156200050857815184529284019290840190600101620004ea565b5090979650505050505050565b600080604083850312156200052957600080fd5b82516001600160401b03808211156200054157600080fd5b818501915085601f8301126200055657600080fd5b8151602062000569620004c0836200062c565b8083825282820191508286018a848660051b89010111156200058a57600080fd5b600096505b84871015620005c55780516001600160a01b0381168114620005b057600080fd5b8352600196909601959183019183016200058f565b5091880151919650909350505080821115620005e057600080fd5b50620005ef858286016200049b565b9150509250929050565b604051601f8201601f191681016001600160401b0381118282101715620006245762000624620006f9565b604052919050565b60006001600160401b03821115620006485762000648620006f9565b5060051b60200190565b60008219821115620006685762000668620006cd565b500190565b600181811c908216806200068257607f821691505b60208210811415620006a457634e487b7160e01b600052602260045260246000fd5b50919050565b600060ff821660ff811415620006c457620006c4620006cd565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b613a9f806200071f6000396000f3fe6080604052600436106103195760003560e01c8063715018a6116101ab578063ad2f852a116100f7578063d5abeb0111610095578063f147efeb1161006f578063f147efeb1461092b578063f2fde38b14610974578063f968adbe14610994578063fa0fca84146109aa57600080fd5b8063d5abeb01146108b7578063db2e21bc146108cd578063e985e9c5146108e257600080fd5b8063c6682862116100d1578063c668286214610835578063c6f6f2161461084a578063c87b56dd1461086a578063d2f8dd451461088a57600080fd5b8063ad2f852a146107e0578063b88d4fde14610800578063b9bfa0bc1461082057600080fd5b80639186b425116101645780639bdedea51161013e5780639bdedea514610777578063a035b1fe14610797578063a0712d68146107ad578063a22cb465146107c057600080fd5b80639186b4251461072857806391b7f5ed1461074257806395d89b411461076257600080fd5b8063715018a61461067a578063768d71381461068f5780637e0586f1146106a5578063862440e2146106c55780638da5cb5b146106e55780639040d9ae1461070857600080fd5b8063397457911161026a5780634f6ccce7116102235780636352211e116101fd5780636352211e1461061057806367dded4d146106305780636c0360eb1461064557806370a082311461065a57600080fd5b80634f6ccce7146105b857806355f804b3146105d85780635c975abb146105f857600080fd5b806339745791146105035780633ccfd60b1461052357806342842e0e1461053857806342966c6814610558578063483efda21461057857806349df728c1461059857600080fd5b806318160ddd116102d757806329ee566c116102b157806329ee566c1461046e5780632a55205a146104845780632f745c59146104c357806336e79a5a146104e357600080fd5b806318160ddd1461040f57806323b872dd1461042e57806329413b121461044e57600080fd5b8062923f9e1461031e57806301ffc9a71461035357806306d254da1461037357806306fdde0314610395578063081812fc146103b7578063095ea7b3146103ef575b600080fd5b34801561032a57600080fd5b5061033e6103393660046135da565b6109d7565b60405190151581526020015b60405180910390f35b34801561035f57600080fd5b5061033e61036e366004613547565b6109e8565b34801561037f57600080fd5b5061039361038e3660046132c6565b610a0d565b005b3480156103a157600080fd5b506103aa610a68565b60405161034a919061375b565b3480156103c357600080fd5b506103d76103d23660046135da565b610afa565b6040516001600160a01b03909116815260200161034a565b3480156103fb57600080fd5b5061039361040a366004613451565b610b82565b34801561041b57600080fd5b506008545b60405190815260200161034a565b34801561043a57600080fd5b50610393610449366004613314565b610c98565b34801561045a57600080fd5b506103936104693660046134b0565b610cca565b34801561047a57600080fd5b5061042060145481565b34801561049057600080fd5b506104a461049f366004613649565b610d3b565b604080516001600160a01b03909316835260208301919091520161034a565b3480156104cf57600080fd5b506104206104de366004613451565b610d75565b3480156104ef57600080fd5b506103936104fe3660046135b6565b610e0b565b34801561050f57600080fd5b5061039361051e36600461347b565b610eb0565b34801561052f57600080fd5b50610393610f8f565b34801561054457600080fd5b50610393610553366004613314565b6110cd565b34801561056457600080fd5b506103936105733660046135da565b6110e8565b34801561058457600080fd5b506103936105933660046135da565b611162565b3480156105a457600080fd5b506103936105b33660046132c6565b611197565b3480156105c457600080fd5b506104206105d33660046135da565b611336565b3480156105e457600080fd5b506103936105f3366004613581565b6113c9565b34801561060457600080fd5b50600b5460ff1661033e565b34801561061c57600080fd5b506103d761062b3660046135da565b61140c565b34801561063c57600080fd5b50610393611483565b34801561065157600080fd5b506103aa6114cf565b34801561066657600080fd5b506104206106753660046132c6565b61155d565b34801561068657600080fd5b506103936115e4565b34801561069b57600080fd5b5061042060125481565b3480156106b157600080fd5b506103936106c03660046134b0565b611664565b3480156106d157600080fd5b506103936106e036600461360c565b6117b1565b3480156106f157600080fd5b50600b5461010090046001600160a01b03166103d7565b34801561071457600080fd5b506103936107233660046134f5565b6117eb565b34801561073457600080fd5b5060175461033e9060ff1681565b34801561074e57600080fd5b5061039361075d3660046135da565b6118e5565b34801561076e57600080fd5b506103aa61191a565b34801561078357600080fd5b506103936107923660046133cc565b611929565b3480156107a357600080fd5b5061042060135481565b6103936107bb3660046135da565b611a9a565b3480156107cc57600080fd5b506103936107db36600461341a565b611d49565b3480156107ec57600080fd5b50600d546103d7906001600160a01b031681565b34801561080c57600080fd5b5061039361081b366004613350565b611e0e565b34801561082c57600080fd5b50610393611e40565b34801561084157600080fd5b506103aa611e84565b34801561085657600080fd5b506103936108653660046135da565b611e91565b34801561087657600080fd5b506103aa6108853660046135da565b611ec6565b34801561089657600080fd5b506108aa6108a53660046132c6565b611ed1565b60405161034a9190613717565b3480156108c357600080fd5b5061042060105481565b3480156108d957600080fd5b50610393611f90565b3480156108ee57600080fd5b5061033e6108fd3660046132e1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093757600080fd5b5061095f6109463660046132c6565b6015602052600090815260409020805460019091015482565b6040805192835260208301919091520161034a565b34801561098057600080fd5b5061039361098f3660046132c6565b6120c3565b3480156109a057600080fd5b5061042060115481565b3480156109b657600080fd5b506104206109c53660046132c6565b60186020526000908152604090205481565b60006109e2826121bf565b92915050565b60006001600160e01b0319821663152a902d60e11b14806109e257506109e2826121dc565b600b546001600160a01b03610100909104163314610a465760405162461bcd60e51b8152600401610a3d906137ea565b60405180910390fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610a7790613953565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa390613953565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b5050505050905090565b6000610b05826121bf565b610b665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3d565b506000908152600460205260409020546001600160a01b031690565b6000610b8d8261140c565b9050806001600160a01b0316836001600160a01b03161415610bfb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a3d565b336001600160a01b0382161480610c175750610c1781336108fd565b610c895760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a3d565b610c938383612201565b505050565b610ca3335b8261226f565b610cbf5760405162461bcd60e51b8152600401610a3d9061381f565b610c93838383612359565b600b546001600160a01b03610100909104163314610cfa5760405162461bcd60e51b8152600401610a3d906137ea565b60005b8251811015610c9357610d2982848381518110610d1c57610d1c613a19565b6020026020010151612504565b80610d3381613988565b915050610cfd565b600d5460145460009182916001600160a01b039091169061271090610d6090866138f1565b610d6a91906138dd565b915091509250929050565b6000610d808361155d565b8210610de25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a3d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610e3b5760405162461bcd60e51b8152600401610a3d906137ea565b6102ee8161ffff161115610ea75760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479206d7573742062652067726561746572207468616e206f722060448201526c657175616c20746f20372c352560981b6064820152608401610a3d565b61ffff16601455565b600b546001600160a01b03610100909104163314610ee05760405162461bcd60e51b8152600401610a3d906137ea565b6000815111610f285760405162461bcd60e51b81526020600482015260146024820152734572726f723a206c69737420697320656d70747960601b6044820152606401610a3d565b60005b8151811015610f8b57600060186000848481518110610f4c57610f4c613a19565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610f8390613988565b915050610f2b565b5050565b33600090815260156020526040902054610ff95760405162461bcd60e51b815260206004820152602560248201527f446576204f6e6c793a2063616c6c6572206973206e6f742074686520646576656044820152643637b832b960d91b6064820152608401610a3d565b336000908152601560205260409020600101548061104d5760405162461bcd60e51b815260206004820152601160248201527008ae4e4dee47440dcde40cccacae640745607b1b6044820152606401610a3d565b604051339082156108fc029083906000818181858888f1935050505015801561107a573d6000803e3d6000fd5b503360008181526015602052604080822060010191909155517f9bba815921f12cb7b1408e14b5ade745234397d39623ae5e7c82d693cb45815f906110c29084815260200190565b60405180910390a250565b610c9383838360405180602001604052806000815250611e0e565b6110f133610c9d565b6111565760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a3d565b61115f8161252a565b50565b600b546001600160a01b036101009091041633146111925760405162461bcd60e51b8152600401610a3d906137ea565b601255565b600b546001600160a01b036101009091041633146111c75760405162461bcd60e51b8152600401610a3d906137ea565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b15801561120b57600080fd5b505afa15801561121f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124391906135f3565b9050816001600160a01b031663a9059cbb61126c600b546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b1580156112b457600080fd5b505af11580156112c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ec919061352a565b50604080516001600160a01b03851681526020810183905233917f5aa586896a67fb05c3b86276f66eecee7da00719d0e7299c403596fa2ec58ca4910160405180910390a2505050565b600061134160085490565b82106113a45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a3d565b600882815481106113b7576113b7613a19565b90600052602060002001549050919050565b600b546001600160a01b036101009091041633146113f95760405162461bcd60e51b8152600401610a3d906137ea565b8051610f8b90600e90602084019061308a565b6000818152600260205260408120546001600160a01b0316806109e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a3d565b600b546001600160a01b036101009091041633146114b35760405162461bcd60e51b8152600401610a3d906137ea565b600b5460ff166114c7576114c5612533565b565b6114c56125a8565b600e80546114dc90613953565b80601f016020809104026020016040519081016040528092919081815260200182805461150890613953565b80156115555780601f1061152a57610100808354040283529160200191611555565b820191906000526020600020905b81548152906001019060200180831161153857829003601f168201915b505050505081565b60006001600160a01b0382166115c85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a3d565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b036101009091041633146116145760405162461bcd60e51b8152600401610a3d906137ea565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b600b546001600160a01b036101009091041633146116945760405162461bcd60e51b8152600401610a3d906137ea565b60008251116116dc5760405162461bcd60e51b81526020600482015260146024820152734572726f723a206c69737420697320656d70747960601b6044820152606401610a3d565b60005b8251811015610c935760006001600160a01b031683828151811061170557611705613a19565b60200260200101516001600160a01b0316141561175b5760405162461bcd60e51b815260206004820152601460248201527320b2323932b9b99031b0b73737ba10313290181760611b6044820152606401610a3d565b816018600085848151811061177257611772613a19565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806117a990613988565b9150506116df565b600b546001600160a01b036101009091041633146117e15760405162461bcd60e51b8152600401610a3d906137ea565b610f8b8282612622565b600581516117f991906139c3565b156118515760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206275726e2061206d756c7469706c65206f662035204e46604482015261547360f01b6064820152608401610a3d565b60006005825161186191906138dd565b905060005b82518110156118a7576118953361dead85848151811061188857611888613a19565b6020026020010151610c98565b8061189f81613988565b915050611866565b5060005b81811015610c93576118c1600c80546001019055565b6118d3336118ce600c5490565b6126ad565b806118dd81613988565b9150506118ab565b600b546001600160a01b036101009091041633146119155760405162461bcd60e51b8152600401610a3d906137ea565b601355565b606060018054610a7790613953565b600b546001600160a01b036101009091041633146119595760405162461bcd60e51b8152600401610a3d906137ea565b8160005b8251811015611a9457816001600160a01b03166342842e0e3061198e600b546001600160a01b036101009091041690565b8685815181106119a0576119a0613a19565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b1580156119fa57600080fd5b505af1158015611a0e573d6000803e3d6000fd5b50505050336001600160a01b03167fb8dbf4ce06446b88ef02ffd28a948c2637ac80fb0bd4d3a31c70878c1046eb7f85858481518110611a5057611a50613a19565b6020026020010151604051611a7a9291906001600160a01b03929092168252602082015260400190565b60405180910390a280611a8c81613988565b91505061195d565b50505050565b600b5460ff1615611abd5760405162461bcd60e51b8152600401610a3d906137c0565b6000611ac860085490565b9050600082118015611adc57506011548211155b611b285760405162461bcd60e51b815260206004820152601760248201527f4572726f723a206d617820706172207478206c696d69740000000000000000006044820152606401610a3d565b601254611b343361155d565b611b3f9060016138c5565b1115611b8d5760405162461bcd60e51b815260206004820152601c60248201527f4572726f723a206d6178207065722061646472657373206c696d6974000000006044820152606401610a3d565b81601354611b9b91906138f1565b3414611be05760405162461bcd60e51b81526020600482015260146024820152734572726f723a20696e76616c696420707269636560601b6044820152606401610a3d565b6010546001611bef84846138c5565b611bf99190613910565b10611c585760405162461bcd60e51b815260206004820152602960248201527f4572726f723a2063616e6e6f74206d696e74206d6f7265207468616e20746f74604482015268616c20737570706c7960b81b6064820152608401610a3d565b60175460ff1615611ce85733600090815260186020526040902054821115611ce85760405162461bcd60e51b815260206004820152603d60248201527f4572726f723a20796f7520617265206e6f742077686974656c6973746564206f60448201527f7220616d6f756e7420697320686967686572207468616e206c696d69740000006064820152608401610a3d565b60005b82811015611d3f57611cfc336127ec565b60175460ff1615611d2d57336000908152601860205260408120805460019290611d27908490613910565b90915550505b80611d3781613988565b915050611ceb565b50610f8b34612811565b6001600160a01b038216331415611da25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a3d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611e18338361226f565b611e345760405162461bcd60e51b8152600401610a3d9061381f565b611a94848484846128c4565b600b546001600160a01b03610100909104163314611e705760405162461bcd60e51b8152600401610a3d906137ea565b6017805460ff19811660ff90911615179055565b600f80546114dc90613953565b600b546001600160a01b03610100909104163314611ec15760405162461bcd60e51b8152600401610a3d906137ea565b601155565b60606109e2826128f7565b60606000611ede8361155d565b905080611eff5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611f1a57611f1a613a2f565b604051908082528060200260200182016040528015611f43578160200160208202803683370190505b50905060005b82811015611ef757611f5b8582610d75565b828281518110611f6d57611f6d613a19565b602090810291909101015280611f8281613988565b915050611f49565b50919050565b600b546001600160a01b03610100909104163314611fc05760405162461bcd60e51b8152600401610a3d906137ea565b47806120025760405162461bcd60e51b815260206004820152601160248201527008ae4e4dee47440dcde40cccacae640745607b1b6044820152606401610a3d565b604051339082156108fc029083906000818181858888f1935050505015801561202f573d6000803e3d6000fd5b5060005b60165460ff8216101561209057600060168260ff168154811061205857612058613a19565b60009182526020808320909101546001600160a01b031682526015905260408120600101555080612088816139a3565b915050612033565b5060405181815233907f9bba815921f12cb7b1408e14b5ade745234397d39623ae5e7c82d693cb45815f906020016110c2565b600b546001600160a01b036101009091041633146120f35760405162461bcd60e51b8152600401610a3d906137ea565b6001600160a01b0381166121585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3d565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000908152600260205260409020546001600160a01b0316151590565b60006001600160e01b0319821663780e9d6360e01b14806109e257506109e2826129b5565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122368261140c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061227a826121bf565b6122db5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3d565b60006122e68361140c565b9050806001600160a01b0316846001600160a01b031614806123215750836001600160a01b031661231684610afa565b6001600160a01b0316145b8061235157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661236c8261140c565b6001600160a01b0316146123d45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a3d565b6001600160a01b0382166124365760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3d565b612441838383612a05565b61244c600082612201565b6001600160a01b0383166000908152600360205260408120805460019290612475908490613910565b90915550506001600160a01b03821660009081526003602052604081208054600192906124a39084906138c5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b82811015610c9357612518826127ec565b8061252281613988565b915050612507565b61115f81612a33565b600b5460ff16156125565760405162461bcd60e51b8152600401610a3d906137c0565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861258b3390565b6040516001600160a01b03909116815260200160405180910390a1565b600b5460ff166125f15760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a3d565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa3361258b565b61262b826121bf565b61268e5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610a3d565b6000828152600a602090815260409091208251610c939284019061308a565b6001600160a01b0382166127035760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a3d565b61270c816121bf565b156127595760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a3d565b61276560008383612a05565b6001600160a01b038216600090815260036020526040812080546001929061278e9084906138c5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6127fa600c80546001019055565b6000612805600c5490565b9050610f8b82826126ad565b60005b60165460ff82161015610f8b57600060168260ff168154811061283957612839613a19565b60009182526020808320909101546001600160a01b031680835260159091526040822054909250906128776127106128718785612a73565b90612af9565b6001600160a01b0384166000908152601560205260408120600101805492935083929091906128a79084906138c5565b9250508190555050505080806128bc906139a3565b915050612814565b6128cf848484612359565b6128db84848484612b3b565b611a945760405162461bcd60e51b8152600401610a3d9061376e565b6060612902826121bf565b6129685760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610a3d565b6000612972612c48565b9050600061297e612c57565b90508161298a85612c66565b8260405160200161299d93929190613697565b60405160208183030381529060405292505050919050565b60006001600160e01b031982166380ac58cd60e01b14806129e657506001600160e01b03198216635b5e139f60e01b145b806109e257506301ffc9a760e01b6001600160e01b03198316146109e2565b600b5460ff1615612a285760405162461bcd60e51b8152600401610a3d906137c0565b610c93838383612d64565b612a3c81612e1c565b6000818152600a602052604090208054612a5590613953565b15905061115f576000818152600a6020526040812061115f9161310e565b600082612a82575060006109e2565b6000612a8e83856138f1565b905082612a9b85836138dd565b14612af25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a3d565b9392505050565b6000612af283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612ec3565b60006001600160a01b0384163b15612c3d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612b7f9033908990889088906004016136da565b602060405180830381600087803b158015612b9957600080fd5b505af1925050508015612bc9575060408051601f3d908101601f19168201909252612bc691810190613564565b60015b612c23573d808015612bf7576040519150601f19603f3d011682016040523d82523d6000602084013e612bfc565b606091505b508051612c1b5760405162461bcd60e51b8152600401610a3d9061376e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612351565b506001949350505050565b6060600e8054610a7790613953565b6060600f8054610a7790613953565b606081612c8a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612cb45780612c9e81613988565b9150612cad9050600a836138dd565b9150612c8e565b60008167ffffffffffffffff811115612ccf57612ccf613a2f565b6040519080825280601f01601f191660200182016040528015612cf9576020820181803683370190505b5090505b841561235157612d0e600183613910565b9150612d1b600a866139c3565b612d269060306138c5565b60f81b818381518110612d3b57612d3b613a19565b60200101906001600160f81b031916908160001a905350612d5d600a866138dd565b9450612cfd565b6001600160a01b038316612dbf57612dba81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612de2565b816001600160a01b0316836001600160a01b031614612de257612de28382612efa565b6001600160a01b038216612df957610c9381612f97565b826001600160a01b0316826001600160a01b031614610c9357610c938282613046565b6000612e278261140c565b9050612e3581600084612a05565b612e40600083612201565b6001600160a01b0381166000908152600360205260408120805460019290612e69908490613910565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008183612ee45760405162461bcd60e51b8152600401610a3d919061375b565b506000612ef184866138dd565b95945050505050565b60006001612f078461155d565b612f119190613910565b600083815260076020526040902054909150808214612f64576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612fa990600190613910565b60008381526009602052604081205460088054939450909284908110612fd157612fd1613a19565b906000526020600020015490508060088381548110612ff257612ff2613a19565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061302a5761302a613a03565b6001900381819060005260206000200160009055905550505050565b60006130518361155d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461309690613953565b90600052602060002090601f0160209004810192826130b857600085556130fe565b82601f106130d157805160ff19168380011785556130fe565b828001600101855582156130fe579182015b828111156130fe5782518255916020019190600101906130e3565b5061310a929150613144565b5090565b50805461311a90613953565b6000825580601f1061312a575050565b601f01602090049060005260206000209081019061115f91905b5b8082111561310a5760008155600101613145565b600067ffffffffffffffff83111561317357613173613a2f565b613186601f8401601f1916602001613870565b905082815283838301111561319a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146131c857600080fd5b919050565b600082601f8301126131de57600080fd5b813560206131f36131ee836138a1565b613870565b80838252828201915082860187848660051b890101111561321357600080fd5b60005b8581101561323957613227826131b1565b84529284019290840190600101613216565b5090979650505050505050565b600082601f83011261325757600080fd5b813560206132676131ee836138a1565b80838252828201915082860187848660051b890101111561328757600080fd5b60005b858110156132395781358452928401929084019060010161328a565b600082601f8301126132b757600080fd5b612af283833560208501613159565b6000602082840312156132d857600080fd5b612af2826131b1565b600080604083850312156132f457600080fd5b6132fd836131b1565b915061330b602084016131b1565b90509250929050565b60008060006060848603121561332957600080fd5b613332846131b1565b9250613340602085016131b1565b9150604084013590509250925092565b6000806000806080858703121561336657600080fd5b61336f856131b1565b935061337d602086016131b1565b925060408501359150606085013567ffffffffffffffff8111156133a057600080fd5b8501601f810187136133b157600080fd5b6133c087823560208401613159565b91505092959194509250565b600080604083850312156133df57600080fd5b6133e8836131b1565b9150602083013567ffffffffffffffff81111561340457600080fd5b61341085828601613246565b9150509250929050565b6000806040838503121561342d57600080fd5b613436836131b1565b9150602083013561344681613a45565b809150509250929050565b6000806040838503121561346457600080fd5b61346d836131b1565b946020939093013593505050565b60006020828403121561348d57600080fd5b813567ffffffffffffffff8111156134a457600080fd5b612351848285016131cd565b600080604083850312156134c357600080fd5b823567ffffffffffffffff8111156134da57600080fd5b6134e6858286016131cd565b95602094909401359450505050565b60006020828403121561350757600080fd5b813567ffffffffffffffff81111561351e57600080fd5b61235184828501613246565b60006020828403121561353c57600080fd5b8151612af281613a45565b60006020828403121561355957600080fd5b8135612af281613a53565b60006020828403121561357657600080fd5b8151612af281613a53565b60006020828403121561359357600080fd5b813567ffffffffffffffff8111156135aa57600080fd5b612351848285016132a6565b6000602082840312156135c857600080fd5b813561ffff81168114612af257600080fd5b6000602082840312156135ec57600080fd5b5035919050565b60006020828403121561360557600080fd5b5051919050565b6000806040838503121561361f57600080fd5b82359150602083013567ffffffffffffffff81111561363d57600080fd5b613410858286016132a6565b6000806040838503121561365c57600080fd5b50508035926020909101359150565b60008151808452613683816020860160208601613927565b601f01601f19169290920160200192915050565b600084516136a9818460208901613927565b8451908301906136bd818360208901613927565b84519101906136d0818360208801613927565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061370d9083018461366b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561374f57835183529284019291840191600101613733565b50909695505050505050565b602081526000612af2602083018461366b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561389957613899613a2f565b604052919050565b600067ffffffffffffffff8211156138bb576138bb613a2f565b5060051b60200190565b600082198211156138d8576138d86139d7565b500190565b6000826138ec576138ec6139ed565b500490565b600081600019048311821515161561390b5761390b6139d7565b500290565b600082821015613922576139226139d7565b500390565b60005b8381101561394257818101518382015260200161392a565b83811115611a945750506000910152565b600181811c9082168061396757607f821691505b60208210811415611f8a57634e487b7160e01b600052602260045260246000fd5b600060001982141561399c5761399c6139d7565b5060010190565b600060ff821660ff8114156139ba576139ba6139d7565b60010192915050565b6000826139d2576139d26139ed565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461115f57600080fd5b6001600160e01b03198116811461115f57600080fdfea26469706673582212200f1dfb54951b926c5baeef1914598341a36602e783f8db05fbb4a930a15a942064736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000010000000000000000000000007308373d971eb4f328905893fee68bdc6227a02000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000002710

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000010000000000000000000000007308373d971eb4f328905893fee68bdc6227a02000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000002710

-----Decoded View---------------
Arg [0] : _devList (address[]): 0x7308373d971eb4f328905893fee68bdc6227a020
Arg [1] : _fees (uint256[]): 10000

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 0000000000000000000000007308373d971eb4f328905893fee68bdc6227a020
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000002710


Deployed ByteCode Sourcemap

56054:9842:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60776:103;;;;;;;;;;-1:-1:-1;60776:103:0;;;;;:::i;:::-;;:::i;:::-;;;11257:14:1;;11250:22;11232:41;;11220:2;11205:18;60776:103:0;;;;;;;;63184:292;;;;;;;;;;-1:-1:-1;63184:292:0;;;;;:::i;:::-;;:::i;62843:122::-;;;;;;;;;;-1:-1:-1;62843:122:0;;;;;:::i;:::-;;:::i;:::-;;24266:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25956:308::-;;;;;;;;;;-1:-1:-1;25956:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9259:32:1;;;9241:51;;9229:2;9214:18;25956:308:0;9095:203:1;25479:411:0;;;;;;;;;;-1:-1:-1;25479:411:0;;;;;:::i;:::-;;:::i;39040:113::-;;;;;;;;;;-1:-1:-1;39128:10:0;:17;39040:113;;;25368:25:1;;;25356:2;25341:18;39040:113:0;25222:177:1;27015:376:0;;;;;;;;;;-1:-1:-1;27015:376:0;;;;;:::i;:::-;;:::i;65075:205::-;;;;;;;;;;-1:-1:-1;65075:205:0;;;;;:::i;:::-;;:::i;57167:28::-;;;;;;;;;;;;;;;;60887:238;;;;;;;;;;-1:-1:-1;60887:238:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;10368:32:1;;;10350:51;;10432:2;10417:18;;10410:34;;;;10323:18;60887:238:0;10176:274:1;38621:343:0;;;;;;;;;;-1:-1:-1;38621:343:0;;;;;:::i;:::-;;:::i;62573:258::-;;;;;;;;;;-1:-1:-1;62573:258:0;;;;;:::i;:::-;;:::i;61531:242::-;;;;;;;;;;-1:-1:-1;61531:242:0;;;;;:::i;:::-;;:::i;63920:285::-;;;;;;;;;;;;;:::i;27462:185::-;;;;;;;;;;-1:-1:-1;27462:185:0;;;;;:::i;:::-;;:::i;51492:282::-;;;;;;;;;;-1:-1:-1;51492:282:0;;;;;:::i;:::-;;:::i;62003:106::-;;;;;;;;;;-1:-1:-1;62003:106:0;;;;;:::i;:::-;;:::i;64744:319::-;;;;;;;;;;-1:-1:-1;64744:319:0;;;;;:::i;:::-;;:::i;39230:320::-;;;;;;;;;;-1:-1:-1;39230:320:0;;;;;:::i;:::-;;:::i;62223:104::-;;;;;;;;;;-1:-1:-1;62223:104:0;;;;;:::i;:::-;;:::i;47489:86::-;;;;;;;;;;-1:-1:-1;47560:7:0;;;;47489:86;;23873:326;;;;;;;;;;-1:-1:-1;23873:326:0;;;;;:::i;:::-;;:::i;61894:101::-;;;;;;;;;;;;;:::i;56917:21::-;;;;;;;;;;;;;:::i;23516:295::-;;;;;;;;;;-1:-1:-1;23516:295:0;;;;;:::i;:::-;;:::i;50446:148::-;;;;;;;;;;;;;:::i;57085:32::-;;;;;;;;;;;;;;;;61153:370;;;;;;;;;;-1:-1:-1;61153:370:0;;;;;:::i;:::-;;:::i;62443:116::-;;;;;;;;;;-1:-1:-1;62443:116:0;;;;;:::i;:::-;;:::i;49795:87::-;;;;;;;;;;-1:-1:-1;49868:6:0;;;;;-1:-1:-1;;;;;49868:6:0;49795:87;;59438:592;;;;;;;;;;-1:-1:-1;59438:592:0;;;;;:::i;:::-;;:::i;57388:34::-;;;;;;;;;;-1:-1:-1;57388:34:0;;;;;;;;62335:90;;;;;;;;;;-1:-1:-1;62335:90:0;;;;;:::i;:::-;;:::i;24435:104::-;;;;;;;;;;;;;:::i;65530:363::-;;;;;;;;;;-1:-1:-1;65530:363:0;;;;;:::i;:::-;;:::i;57124:30::-;;;;;;;;;;;;;;;;58598:828;;;;;;:::i;:::-;;:::i;26336:327::-;;;;;;;;;;-1:-1:-1;26336:327:0;;;;;:::i;:::-;;:::i;56833:74::-;;;;;;;;;;-1:-1:-1;56833:74:0;;;;-1:-1:-1;;;;;56833:74:0;;;27718:365;;;;;;;;;;-1:-1:-1;27718:365:0;;;;;:::i;:::-;;:::i;61781:105::-;;;;;;;;;;;;;:::i;56945:37::-;;;;;;;;;;;;;:::i;62117:98::-;;;;;;;;;;-1:-1:-1;62117:98:0;;;;;:::i;:::-;;:::i;60038:196::-;;;;;;;;;;-1:-1:-1;60038:196:0;;;;;:::i;:::-;;:::i;60242:526::-;;;;;;;;;;-1:-1:-1;60242:526:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57012:31::-;;;;;;;;;;;;;;;;64285:403;;;;;;;;;;;;;:::i;26734:214::-;;;;;;;;;;-1:-1:-1;26734:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;26905:25:0;;;26876:4;26905:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26734:214;57306:41;;;;;;;;;;-1:-1:-1;57306:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;25578:25:1;;;25634:2;25619:18;;25612:34;;;;25551:18;57306:41:0;25404:248:1;50749:281:0;;;;;;;;;;-1:-1:-1;50749:281:0;;;;;:::i;:::-;;:::i;57050:28::-;;;;;;;;;;;;;;;;57429:46;;;;;;;;;;-1:-1:-1;57429:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;60776:103;60833:4;60858:12;60866:3;60858:7;:12::i;:::-;60850:21;60776:103;-1:-1:-1;;60776:103:0:o;63184:292::-;63332:4;-1:-1:-1;;;;;;63374:41:0;;-1:-1:-1;;;63374:41:0;;:94;;;63432:36;63456:11;63432:23;:36::i;62843:122::-;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;;;;;;;;;62925:14:::1;:32:::0;;-1:-1:-1;;;;;;62925:32:0::1;-1:-1:-1::0;;;;;62925:32:0;;;::::1;::::0;;;::::1;::::0;;62843:122::o;24266:100::-;24320:13;24353:5;24346:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24266:100;:::o;25956:308::-;26077:7;26124:16;26132:7;26124;:16::i;:::-;26102:110;;;;-1:-1:-1;;;26102:110:0;;20085:2:1;26102:110:0;;;20067:21:1;20124:2;20104:18;;;20097:30;20163:34;20143:18;;;20136:62;-1:-1:-1;;;20214:18:1;;;20207:42;20266:19;;26102:110:0;19883:408:1;26102:110:0;-1:-1:-1;26232:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26232:24:0;;25956:308::o;25479:411::-;25560:13;25576:23;25591:7;25576:14;:23::i;:::-;25560:39;;25624:5;-1:-1:-1;;;;;25618:11:0;:2;-1:-1:-1;;;;;25618:11:0;;;25610:57;;;;-1:-1:-1;;;25610:57:0;;21975:2:1;25610:57:0;;;21957:21:1;22014:2;21994:18;;;21987:30;22053:34;22033:18;;;22026:62;-1:-1:-1;;;22104:18:1;;;22097:31;22145:19;;25610:57:0;21773:397:1;25610:57:0;18401:10;-1:-1:-1;;;;;25702:21:0;;;;:62;;-1:-1:-1;25727:37:0;25744:5;18401:10;26734:214;:::i;25727:37::-;25680:168;;;;-1:-1:-1;;;25680:168:0;;16425:2:1;25680:168:0;;;16407:21:1;16464:2;16444:18;;;16437:30;16503:34;16483:18;;;16476:62;16574:26;16554:18;;;16547:54;16618:19;;25680:168:0;16223:420:1;25680:168:0;25861:21;25870:2;25874:7;25861:8;:21::i;:::-;25549:341;25479:411;;:::o;27015:376::-;27224:41;18401:10;27243:12;27257:7;27224:18;:41::i;:::-;27202:140;;;;-1:-1:-1;;;27202:140:0;;;;;;;:::i;:::-;27355:28;27365:4;27371:2;27375:7;27355:9;:28::i;65075:205::-;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;65171:9:::1;65166:107;65190:5;:12;65186:1;:16;65166:107;;;65224:37;65245:6;65252:5;65258:1;65252:8;;;;;;;;:::i;:::-;;;;;;;65224:20;:37::i;:::-;65204:3:::0;::::1;::::0;::::1;:::i;:::-;;;;65166:107;;60887:238:::0;61070:14;;61100:7;;61005:16;;;;-1:-1:-1;;;;;61070:14:0;;;;61111:5;;61087:20;;:10;:20;:::i;:::-;61086:30;;;;:::i;:::-;61062:55;;;;60887:238;;;;;:::o;38621:343::-;38763:7;38818:23;38835:5;38818:16;:23::i;:::-;38810:5;:31;38788:124;;;;-1:-1:-1;;;38788:124:0;;12059:2:1;38788:124:0;;;12041:21:1;12098:2;12078:18;;;12071:30;12137:34;12117:18;;;12110:62;-1:-1:-1;;;12188:18:1;;;12181:41;12239:19;;38788:124:0;11857:407:1;38788:124:0;-1:-1:-1;;;;;;38930:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38621:343::o;62573:258::-;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;62740:3:::1;62728:8;:15;;;;62720:74;;;::::0;-1:-1:-1;;;62720:74:0;;15666:2:1;62720:74:0::1;::::0;::::1;15648:21:1::0;15705:2;15685:18;;;15678:30;15744:34;15724:18;;;15717:62;-1:-1:-1;;;15795:18:1;;;15788:43;15848:19;;62720:74:0::1;15464:409:1::0;62720:74:0::1;62805:18;;:7;:18:::0;62573:258::o;61531:242::-;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;61645:1:::1;61624:11;:18;:22;61616:54;;;::::0;-1:-1:-1;;;61616:54:0;;22377:2:1;61616:54:0::1;::::0;::::1;22359:21:1::0;22416:2;22396:18;;;22389:30;-1:-1:-1;;;22435:18:1;;;22428:50;22495:18;;61616:54:0::1;22175:344:1::0;61616:54:0::1;61685:9;61681:84;61701:11;:18;61699:1;:20;61681:84;;;61764:1;61734:11;:27;61746:11;61758:1;61746:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;61734:27:0::1;-1:-1:-1::0;;;;;61734:27:0::1;;;;;;;;;;;;:31;;;;61720:3;;;;;:::i;:::-;;;;61681:84;;;;61531:242:::0;:::o;63920:285::-;56248:10;56270:1;56240:19;;;:7;:19;;;;;:27;56232:82;;;;-1:-1:-1;;;56232:82:0;;18498:2:1;56232:82:0;;;18480:21:1;18537:2;18517:18;;;18510:30;18576:34;18556:18;;;18549:62;-1:-1:-1;;;18627:18:1;;;18620:35;18672:19;;56232:82:0;18296:401:1;56232:82:0;63994:10:::1;63969:14;63986:19:::0;;;:7:::1;:19;::::0;;;;:26:::1;;::::0;64031:10;64023:39:::1;;;::::0;-1:-1:-1;;;64023:39:0;;25078:2:1;64023:39:0::1;::::0;::::1;25060:21:1::0;25117:2;25097:18;;;25090:30;-1:-1:-1;;;25136:18:1;;;25129:47;25193:18;;64023:39:0::1;24876:341:1::0;64023:39:0::1;64073:36;::::0;64081:10:::1;::::0;64073:36;::::1;;;::::0;64102:6;;64073:36:::1;::::0;;;64102:6;64081:10;64073:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;64128:10:0::1;64149:1;64120:19:::0;;;:7:::1;:19;::::0;;;;;:26:::1;;:30:::0;;;;64166:31;::::1;::::0;::::1;::::0;64190:6;25368:25:1;;25356:2;25341:18;;25222:177;64166:31:0::1;;;;;;;;63958:247;63920:285::o:0;27462:185::-;27600:39;27617:4;27623:2;27627:7;27600:39;;;;;;;;;;;;:16;:39::i;51492:282::-;51624:41;18401:10;51643:12;18321:98;51624:41;51602:139;;;;-1:-1:-1;;;51602:139:0;;24312:2:1;51602:139:0;;;24294:21:1;24351:2;24331:18;;;24324:30;24390:34;24370:18;;;24363:62;-1:-1:-1;;;24441:18:1;;;24434:46;24497:19;;51602:139:0;24110:412:1;51602:139:0;51752:14;51758:7;51752:5;:14::i;:::-;51492:282;:::o;62003:106::-;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;62077:12:::1;:24:::0;62003:106::o;64744:319::-;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;64896:38:::1;::::0;-1:-1:-1;;;64896:38:0;;64928:4:::1;64896:38;::::0;::::1;9241:51:1::0;64852:14:0;;64822:20:::1;::::0;-1:-1:-1;;;;;64896:23:0;::::1;::::0;::::1;::::0;9214:18:1;;64896:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64878:56;;64945:13;-1:-1:-1::0;;;;;64945:22:0::1;;64968:7;49868:6:::0;;-1:-1:-1;;;;;49868:6:0;;;;;;49795:87;64968:7:::1;64945:40;::::0;-1:-1:-1;;;;;;64945:40:0::1;::::0;;;;;;-1:-1:-1;;;;;10368:32:1;;;64945:40:0::1;::::0;::::1;10350:51:1::0;10417:18;;;10410:34;;;10323:18;;64945:40:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;65001:54:0::1;::::0;;-1:-1:-1;;;;;10368:32:1;;10350:51;;10432:2;10417:18;;10410:34;;;65021:10:0::1;::::0;65001:54:::1;::::0;10323:18:1;65001:54:0::1;;;;;;;64811:252;;64744:319:::0;:::o;39230:320::-;39350:7;39405:30;39128:10;:17;;39040:113;39405:30;39397:5;:38;39375:132;;;;-1:-1:-1;;;39375:132:0;;23899:2:1;39375:132:0;;;23881:21:1;23938:2;23918:18;;;23911:30;23977:34;23957:18;;;23950:62;-1:-1:-1;;;24028:18:1;;;24021:42;24080:19;;39375:132:0;23697:408:1;39375:132:0;39525:10;39536:5;39525:17;;;;;;;;:::i;:::-;;;;;;;;;39518:24;;39230:320;;;:::o;62223:104::-;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;62299:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;23873:326::-:0;23990:7;24031:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24031:16:0;24080:19;24058:110;;;;-1:-1:-1;;;24058:110:0;;17673:2:1;24058:110:0;;;17655:21:1;17712:2;17692:18;;;17685:30;17751:34;17731:18;;;17724:62;-1:-1:-1;;;17802:18:1;;;17795:39;17851:19;;24058:110:0;17471:405:1;61894:101:0;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;47560:7;;;;61954:33:::1;;61979:8;:6;:8::i;:::-;61894:101::o:0;61954:33::-:1;61966:10;:8;:10::i;56917:21::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23516:295::-;23633:7;-1:-1:-1;;;;;23680:19:0;;23658:111;;;;-1:-1:-1;;;23658:111:0;;17262:2:1;23658:111:0;;;17244:21:1;17301:2;17281:18;;;17274:30;17340:34;17320:18;;;17313:62;-1:-1:-1;;;17391:18:1;;;17384:40;17441:19;;23658:111:0;17060:406:1;23658:111:0;-1:-1:-1;;;;;;23787:16:0;;;;;:9;:16;;;;;;;23516:295::o;50446:148::-;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;50537:6:::1;::::0;50516:40:::1;::::0;50553:1:::1;::::0;50537:6:::1;::::0;::::1;-1:-1:-1::0;;;;;50537:6:0::1;::::0;50516:40:::1;::::0;50553:1;;50516:40:::1;50567:6;:19:::0;;-1:-1:-1;;;;;;50567:19:0::1;::::0;;50446:148::o;61153:370::-;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;61278:1:::1;61256:12;:19;:23;61248:55;;;::::0;-1:-1:-1;;;61248:55:0;;22377:2:1;61248:55:0::1;::::0;::::1;22359:21:1::0;22416:2;22396:18;;;22389:30;-1:-1:-1;;;22435:18:1;;;22428:50;22495:18;;61248:55:0::1;22175:344:1::0;61248:55:0::1;61320:9;61316:190;61338:12;:19;61334:1;:23;61316:190;;;61415:1;-1:-1:-1::0;;;;;61388:29:0::1;:12;61401:1;61388:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;61388:29:0::1;;;61380:62;;;::::0;-1:-1:-1;;;61380:62:0;;24729:2:1;61380:62:0::1;::::0;::::1;24711:21:1::0;24768:2;24748:18;;;24741:30;-1:-1:-1;;;24787:18:1;;;24780:50;24847:18;;61380:62:0::1;24527:344:1::0;61380:62:0::1;61489:5;61458:11;:28;61470:12;61483:1;61470:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;61458:28:0::1;-1:-1:-1::0;;;;;61458:28:0::1;;;;;;;;;;;;:36;;;;61359:3;;;;;:::i;:::-;;;;61316:190;;62443:116:::0;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;62525:26:::1;62538:7;62547:3;62525:12;:26::i;59438:592::-:0;59526:1;59508:8;:15;:19;;;;:::i;:::-;:24;59500:71;;;;-1:-1:-1;;;59500:71:0;;23496:2:1;59500:71:0;;;23478:21:1;23535:2;23515:18;;;23508:30;23574:34;23554:18;;;23547:62;-1:-1:-1;;;23625:18:1;;;23618:32;23667:19;;59500:71:0;23294:398:1;59500:71:0;59584:16;59621:1;59603:8;:15;:19;;;;:::i;:::-;59584:38;;59640:13;59635:220;59667:8;:15;59659:5;:23;59635:220;;;59749:94;59762:10;59782:42;59827:8;59836:5;59827:15;;;;;;;;:::i;:::-;;;;;;;59749:12;:94::i;:::-;59684:7;;;;:::i;:::-;;;;59635:220;;;;59872:13;59867:152;59899:8;59891:5;:16;59867:152;;;59933:21;:9;52811:19;;52829:1;52811:19;;;52722:127;59933:21;59969:38;59975:10;59987:19;:9;52692:14;;52600:114;59987:19;59969:5;:38::i;:::-;59909:7;;;;:::i;:::-;;;;59867:152;;62335:90;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;62401:5:::1;:16:::0;62335:90::o;24435:104::-;24491:13;24524:7;24517:14;;;;;:::i;65530:363::-;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;65659:14;65627:21:::1;65685:201;65709:3;:10;65705:1;:14;65685:201;;;65741:13;-1:-1:-1::0;;;;;65741:30:0::1;;65780:4;65787:7;49868:6:::0;;-1:-1:-1;;;;;49868:6:0;;;;;;49795:87;65787:7:::1;65796:3;65800:1;65796:6;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;65741:62:::1;::::0;-1:-1:-1;;;;;;65741:62:0::1;::::0;;;;;;-1:-1:-1;;;;;9561:15:1;;;65741:62:0::1;::::0;::::1;9543:34:1::0;9613:15;;;;9593:18;;;9586:43;9645:18;;;9638:34;9478:18;;65741:62:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;65841:10;-1:-1:-1::0;;;;;65823:51:0::1;;65852:14;65867:3;65871:1;65867:6;;;;;;;;:::i;:::-;;;;;;;65823:51;;;;;;-1:-1:-1::0;;;;;10368:32:1;;;;10350:51;;10432:2;10417:18;;10410:34;10338:2;10323:18;;10176:274;65823:51:0::1;;;;;;;;65721:3:::0;::::1;::::0;::::1;:::i;:::-;;;;65685:201;;;;65616:277;65530:363:::0;;:::o;58598:828::-;47560:7;;;;47814:9;47806:38;;;;-1:-1:-1;;;47806:38:0;;;;;;;:::i;:::-;58668:14:::1;58685:13;39128:10:::0;:17;;39040:113;58685:13:::1;58668:30;;58726:1;58717:6;:10;:32;;;;;58741:8;;58731:6;:18;;58717:32;58709:67;;;::::0;-1:-1:-1;;;58709:67:0;;22726:2:1;58709:67:0::1;::::0;::::1;22708:21:1::0;22765:2;22745:18;;;22738:30;22804:25;22784:18;;;22777:53;22847:18;;58709:67:0::1;22524:347:1::0;58709:67:0::1;58824:12;;58795:21;58805:10;58795:9;:21::i;:::-;:25;::::0;58819:1:::1;58795:25;:::i;:::-;:41;;58787:81;;;::::0;-1:-1:-1;;;58787:81:0;;21618:2:1;58787:81:0::1;::::0;::::1;21600:21:1::0;21657:2;21637:18;;;21630:30;21696;21676:18;;;21669:58;21744:18;;58787:81:0::1;21416:352:1::0;58787:81:0::1;58908:6;58900:5;;:14;;;;:::i;:::-;58887:9;:27;58879:60;;;::::0;-1:-1:-1;;;58879:60:0;;20498:2:1;58879:60:0::1;::::0;::::1;20480:21:1::0;20537:2;20517:18;;;20510:30;-1:-1:-1;;;20556:18:1;;;20549:50;20616:18;;58879:60:0::1;20296:344:1::0;58879:60:0::1;58980:9;::::0;58976:1:::1;58958:15;58967:6:::0;58958;:15:::1;:::i;:::-;:19;;;;:::i;:::-;:31;58950:85;;;::::0;-1:-1:-1;;;58950:85:0;;14843:2:1;58950:85:0::1;::::0;::::1;14825:21:1::0;14882:2;14862:18;;;14855:30;14921:34;14901:18;;;14894:62;-1:-1:-1;;;14972:18:1;;;14965:39;15021:19;;58950:85:0::1;14641:405:1::0;58950:85:0::1;59049:15;::::0;::::1;;59046:135;;;59095:10;59083:23;::::0;;;:11:::1;:23;::::0;;;;;:33;-1:-1:-1;59083:33:0::1;59075:106;;;::::0;-1:-1:-1;;;59075:106:0;;13654:2:1;59075:106:0::1;::::0;::::1;13636:21:1::0;13693:2;13673:18;;;13666:30;13732:34;13712:18;;;13705:62;13803:31;13783:18;;;13776:59;13852:19;;59075:106:0::1;13452:425:1::0;59075:106:0::1;59217:9;59212:164;59236:6;59232:1;:10;59212:164;;;59264:24;59277:10;59264:12;:24::i;:::-;59306:15;::::0;::::1;;59303:61;;;59348:10;59336:23;::::0;;;:11:::1;:23;::::0;;;;:28;;59363:1:::1;::::0;59336:23;:28:::1;::::0;59363:1;;59336:28:::1;:::i;:::-;::::0;;;-1:-1:-1;;59303:61:0::1;59244:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59212:164;;;;59398:20;59408:9;59398;:20::i;26336:327::-:0;-1:-1:-1;;;;;26471:24:0;;18401:10;26471:24;;26463:62;;;;-1:-1:-1;;;26463:62:0;;14489:2:1;26463:62:0;;;14471:21:1;14528:2;14508:18;;;14501:30;14567:27;14547:18;;;14540:55;14612:18;;26463:62:0;14287:349:1;26463:62:0;18401:10;26538:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26538:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26538:53:0;;;;;;;;;;26607:48;;11232:41:1;;;26538:42:0;;18401:10;26607:48;;11205:18:1;26607:48:0;;;;;;;26336:327;;:::o;27718:365::-;27907:41;18401:10;27940:7;27907:18;:41::i;:::-;27885:140;;;;-1:-1:-1;;;27885:140:0;;;;;;;:::i;:::-;28036:39;28050:4;28056:2;28060:7;28069:5;28036:13;:39::i;61781:105::-;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;61863:15:::1;::::0;;-1:-1:-1;;61844:34:0;::::1;61863:15;::::0;;::::1;61862:16;61844:34;::::0;;61781:105::o;56945:37::-;;;;;;;:::i;62117:98::-;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;62187:8:::1;:20:::0;62117:98::o;60038:196::-;60165:13;60203:23;60218:7;60203:14;:23::i;60242:526::-;60323:16;60357:18;60378:17;60388:6;60378:9;:17::i;:::-;60357:38;-1:-1:-1;60410:15:0;60406:355;;60449:16;;;60463:1;60449:16;;;;;;;;;;;-1:-1:-1;60442:23:0;60242:526;-1:-1:-1;;;60242:526:0:o;60406:355::-;60498:23;60538:10;60524:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60524:25:0;;60498:51;;60564:13;60592:130;60616:10;60608:5;:18;60592:130;;;60672:34;60692:6;60700:5;60672:19;:34::i;:::-;60656:6;60663:5;60656:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;60628:7;;;;:::i;:::-;;;;60592:130;;60406:355;60346:422;60242:526;;;:::o;64285:403::-;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;64361:21:::1;64401:10:::0;64393:39:::1;;;::::0;-1:-1:-1;;;64393:39:0;;25078:2:1;64393:39:0::1;::::0;::::1;25060:21:1::0;25117:2;25097:18;;;25090:30;-1:-1:-1;;;25136:18:1;;;25129:47;25193:18;;64393:39:0::1;24876:341:1::0;64393:39:0::1;64443:36;::::0;64451:10:::1;::::0;64443:36;::::1;;;::::0;64472:6;;64443:36:::1;::::0;;;64472:6;64451:10;64443:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;64494:7;64490:144;64510:7;:14:::0;64506:18:::1;::::0;::::1;;64490:144;;;64546:18;64567:7;64575:1;64567:10;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;64567:10:0::1;64592:19:::0;;:7:::1;:19:::0;;;;;64567:10;64592:26:::1;:30:::0;-1:-1:-1;64526:3:0;::::1;::::0;::::1;:::i;:::-;;;;64490:144;;;-1:-1:-1::0;64649:31:0::1;::::0;25368:25:1;;;64662:10:0::1;::::0;64649:31:::1;::::0;25356:2:1;25341:18;64649:31:0::1;25222:177:1::0;50749:281:0;49868:6;;-1:-1:-1;;;;;49868:6:0;;;;;18401:10;50015:23;50007:68;;;;-1:-1:-1;;;50007:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50852:22:0;::::1;50830:110;;;::::0;-1:-1:-1;;;50830:110:0;;12890:2:1;50830:110:0::1;::::0;::::1;12872:21:1::0;12929:2;12909:18;;;12902:30;12968:34;12948:18;;;12941:62;-1:-1:-1;;;13019:18:1;;;13012:36;13065:19;;50830:110:0::1;12688:402:1::0;50830:110:0::1;50977:6;::::0;50956:38:::1;::::0;-1:-1:-1;;;;;50956:38:0;;::::1;::::0;50977:6:::1;::::0;::::1;;::::0;50956:38:::1;::::0;;;::::1;51005:6;:17:::0;;-1:-1:-1;;;;;51005:17:0;;::::1;;;-1:-1:-1::0;;;;;;51005:17:0;;::::1;::::0;;;::::1;::::0;;50749:281::o;29630:127::-;29695:4;29719:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29719:16:0;:30;;;29630:127::o;38237:300::-;38384:4;-1:-1:-1;;;;;;38426:50:0;;-1:-1:-1;;;38426:50:0;;:103;;;38493:36;38517:11;38493:23;:36::i;33753:174::-;33828:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33828:29:0;-1:-1:-1;;;;;33828:29:0;;;;;;;;:24;;33882:23;33828:24;33882:14;:23::i;:::-;-1:-1:-1;;;;;33873:46:0;;;;;;;;;;;33753:174;;:::o;29924:452::-;30053:4;30097:16;30105:7;30097;:16::i;:::-;30075:110;;;;-1:-1:-1;;;30075:110:0;;15253:2:1;30075:110:0;;;15235:21:1;15292:2;15272:18;;;15265:30;15331:34;15311:18;;;15304:62;-1:-1:-1;;;15382:18:1;;;15375:42;15434:19;;30075:110:0;15051:408:1;30075:110:0;30196:13;30212:23;30227:7;30212:14;:23::i;:::-;30196:39;;30265:5;-1:-1:-1;;;;;30254:16:0;:7;-1:-1:-1;;;;;30254:16:0;;:64;;;;30311:7;-1:-1:-1;;;;;30287:31:0;:20;30299:7;30287:11;:20::i;:::-;-1:-1:-1;;;;;30287:31:0;;30254:64;:113;;;-1:-1:-1;;;;;;26905:25:0;;;26876:4;26905:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30335:32;30246:122;29924:452;-1:-1:-1;;;;29924:452:0:o;33020:615::-;33193:4;-1:-1:-1;;;;;33166:31:0;:23;33181:7;33166:14;:23::i;:::-;-1:-1:-1;;;;;33166:31:0;;33144:122;;;;-1:-1:-1;;;33144:122:0;;21208:2:1;33144:122:0;;;21190:21:1;21247:2;21227:18;;;21220:30;21286:34;21266:18;;;21259:62;-1:-1:-1;;;21337:18:1;;;21330:39;21386:19;;33144:122:0;21006:405:1;33144:122:0;-1:-1:-1;;;;;33285:16:0;;33277:65;;;;-1:-1:-1;;;33277:65:0;;14084:2:1;33277:65:0;;;14066:21:1;14123:2;14103:18;;;14096:30;14162:34;14142:18;;;14135:62;-1:-1:-1;;;14213:18:1;;;14206:34;14257:19;;33277:65:0;13882:400:1;33277:65:0;33355:39;33376:4;33382:2;33386:7;33355:20;:39::i;:::-;33459:29;33476:1;33480:7;33459:8;:29::i;:::-;-1:-1:-1;;;;;33501:15:0;;;;;;:9;:15;;;;;:20;;33520:1;;33501:15;:20;;33520:1;;33501:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33532:13:0;;;;;;:9;:13;;;;;:18;;33549:1;;33532:13;:18;;33549:1;;33532:18;:::i;:::-;;;;-1:-1:-1;;33561:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33561:21:0;-1:-1:-1;;;;;33561:21:0;;;;;;;;;33600:27;;33561:16;;33600:27;;;;;;;33020:615;;;:::o;65292:171::-;65378:9;65373:83;65397:6;65393:1;:10;65373:83;;;65425:19;65438:5;65425:12;:19::i;:::-;65405:3;;;;:::i;:::-;;;;65373:83;;63744:138;63854:20;63866:7;63854:11;:20::i;48289:118::-;47560:7;;;;47814:9;47806:38;;;;-1:-1:-1;;;47806:38:0;;;;;;;:::i;:::-;48349:7:::1;:14:::0;;-1:-1:-1;;48349:14:0::1;48359:4;48349:14;::::0;;48379:20:::1;48386:12;18401:10:::0;;18321:98;48386:12:::1;48379:20;::::0;-1:-1:-1;;;;;9259:32:1;;;9241:51;;9229:2;9214:18;48379:20:0::1;;;;;;;48289:118::o:0;48548:120::-;47560:7;;;;48084:41;;;;-1:-1:-1;;;48084:41:0;;11710:2:1;48084:41:0;;;11692:21:1;11749:2;11729:18;;;11722:30;-1:-1:-1;;;11768:18:1;;;11761:50;11828:18;;48084:41:0;11508:344:1;48084:41:0;48607:7:::1;:15:::0;;-1:-1:-1;;48607:15:0::1;::::0;;48638:22:::1;18401:10:::0;48647:12:::1;18321:98:::0;45696:277;45833:16;45841:7;45833;:16::i;:::-;45811:112;;;;-1:-1:-1;;;45811:112:0;;18083:2:1;45811:112:0;;;18065:21:1;18122:2;18102:18;;;18095:30;18161:34;18141:18;;;18134:62;-1:-1:-1;;;18212:18:1;;;18205:44;18266:19;;45811:112:0;17881:410:1;45811:112:0;45934:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;31712:382::-;-1:-1:-1;;;;;31792:16:0;;31784:61;;;;-1:-1:-1;;;31784:61:0;;18904:2:1;31784:61:0;;;18886:21:1;;;18923:18;;;18916:30;18982:34;18962:18;;;18955:62;19034:18;;31784:61:0;18702:356:1;31784:61:0;31865:16;31873:7;31865;:16::i;:::-;31864:17;31856:58;;;;-1:-1:-1;;;31856:58:0;;13297:2:1;31856:58:0;;;13279:21:1;13336:2;13316:18;;;13309:30;13375;13355:18;;;13348:58;13423:18;;31856:58:0;13095:352:1;31856:58:0;31927:45;31956:1;31960:2;31964:7;31927:20;:45::i;:::-;-1:-1:-1;;;;;31985:13:0;;;;;;:9;:13;;;;;:18;;32002:1;;31985:13;:18;;32002:1;;31985:18;:::i;:::-;;;;-1:-1:-1;;32014:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32014:21:0;-1:-1:-1;;;;;32014:21:0;;;;;;;;32053:33;;32014:16;;;32053:33;;32014:16;;32053:33;31712:382;;:::o;63001:163::-;63055:21;:9;52811:19;;52829:1;52811:19;;;52722:127;63055:21;63087:17;63107:19;:9;52692:14;;52600:114;63107:19;63087:39;;63136:20;63142:2;63146:9;63136:5;:20::i;58227:357::-;58292:7;58288:287;58308:7;:14;58304:18;;;;58288:287;;;58344:18;58365:7;58373:1;58365:10;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;58365:10:0;58408:19;;;:7;:19;;;;;;:27;58365:10;;-1:-1:-1;58408:27:0;58473:33;58500:5;58473:22;:10;58408:27;58473:14;:22::i;:::-;:26;;:33::i;:::-;-1:-1:-1;;;;;58521:19:0;;;;;;:7;:19;;;;;:26;;:42;;58450:56;;-1:-1:-1;58450:56:0;;58521:26;;:19;:42;;58450:56;;58521:42;:::i;:::-;;;;;;;;58329:246;;;58324:3;;;;;:::i;:::-;;;;58288:287;;28965:352;29122:28;29132:4;29138:2;29142:7;29122:9;:28::i;:::-;29183:48;29206:4;29212:2;29216:7;29225:5;29183:22;:48::i;:::-;29161:148;;;;-1:-1:-1;;;29161:148:0;;;;;;;:::i;45079:461::-;45197:13;45250:16;45258:7;45250;:16::i;:::-;45228:115;;;;-1:-1:-1;;;45228:115:0;;19265:2:1;45228:115:0;;;19247:21:1;19304:2;19284:18;;;19277:30;19343:34;19323:18;;;19316:62;-1:-1:-1;;;19394:18:1;;;19387:47;19451:19;;45228:115:0;19063:413:1;45228:115:0;45356:18;45377:10;:8;:10::i;:::-;45356:31;;45398:17;45418:16;:14;:16::i;:::-;45398:36;;45497:4;45503:20;45504:7;45503:18;:20::i;:::-;45525:3;45480:49;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45466:64;;;;45079:461;;;:::o;23097:355::-;23244:4;-1:-1:-1;;;;;;23286:40:0;;-1:-1:-1;;;23286:40:0;;:105;;-1:-1:-1;;;;;;;23343:48:0;;-1:-1:-1;;;23343:48:0;23286:105;:158;;;-1:-1:-1;;;;;;;;;;21722:40:0;;;23408:36;21563:207;63488:240;47560:7;;;;47814:9;47806:38;;;;-1:-1:-1;;;47806:38:0;;;;;;;:::i;:::-;63664:56:::1;63702:4;63708:2;63712:7;63664:37;:56::i;46202:206::-:0;46271:20;46283:7;46271:11;:20::i;:::-;46314:19;;;;:10;:19;;;;;46308:33;;;;;:::i;:::-;:38;;-1:-1:-1;46304:97:0;;46370:19;;;;:10;:19;;;;;46363:26;;;:::i;55028:250::-;55086:7;55110:6;55106:47;;-1:-1:-1;55140:1:0;55133:8;;55106:47;55165:9;55177:5;55181:1;55177;:5;:::i;:::-;55165:17;-1:-1:-1;55210:1:0;55201:5;55205:1;55165:17;55201:5;:::i;:::-;:10;55193:56;;;;-1:-1:-1;;;55193:56:0;;19683:2:1;55193:56:0;;;19665:21:1;19722:2;19702:18;;;19695:30;19761:34;19741:18;;;19734:62;-1:-1:-1;;;19812:18:1;;;19805:31;19853:19;;55193:56:0;19481:397:1;55193:56:0;55269:1;55028:250;-1:-1:-1;;;55028:250:0:o;55288:132::-;55346:7;55373:39;55377:1;55380;55373:39;;;;;;;;;;;;;;;;;:3;:39::i;34492:1053::-;34647:4;-1:-1:-1;;;;;34668:13:0;;10115:20;10163:8;34664:874;;34721:175;;-1:-1:-1;;;34721:175:0;;-1:-1:-1;;;;;34721:36:0;;;;;:175;;18401:10;;34815:4;;34842:7;;34872:5;;34721:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34721:175:0;;;;;;;;-1:-1:-1;;34721:175:0;;;;;;;;;;;;:::i;:::-;;;34700:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35083:13:0;;35079:389;;35126:108;;-1:-1:-1;;;35126:108:0;;;;;;;:::i;35079:389::-;35418:6;35412:13;35403:6;35399:2;35395:15;35388:38;34700:783;-1:-1:-1;;;;;;34960:55:0;-1:-1:-1;;;34960:55:0;;-1:-1:-1;34953:62:0;;34664:874;-1:-1:-1;35522:4:0;34492:1053;;;;;;:::o;58114:100::-;58166:13;58199:7;58192:14;;;;;:::i;57992:112::-;58050:13;58083;58076:20;;;;;:::i;18978:723::-;19034:13;19255:10;19251:53;;-1:-1:-1;;19282:10:0;;;;;;;;;;;;-1:-1:-1;;;19282:10:0;;;;;18978:723::o;19251:53::-;19329:5;19314:12;19370:78;19377:9;;19370:78;;19403:8;;;;:::i;:::-;;-1:-1:-1;19426:10:0;;-1:-1:-1;19434:2:0;19426:10;;:::i;:::-;;;19370:78;;;19458:19;19490:6;19480:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19480:17:0;;19458:39;;19508:154;19515:10;;19508:154;;19542:11;19552:1;19542:11;;:::i;:::-;;-1:-1:-1;19611:10:0;19619:2;19611:5;:10;:::i;:::-;19598:24;;:2;:24;:::i;:::-;19585:39;;19568:6;19575;19568:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19568:56:0;;;;;;;;-1:-1:-1;19639:11:0;19648:2;19639:11;;:::i;:::-;;;19508:154;;40163:589;-1:-1:-1;;;;;40369:18:0;;40365:187;;40404:40;40436:7;41579:10;:17;;41552:24;;;;:15;:24;;;;;:44;;;41607:24;;;;;;;;;;;;41475:164;40404:40;40365:187;;;40474:2;-1:-1:-1;;;;;40466:10:0;:4;-1:-1:-1;;;;;40466:10:0;;40462:90;;40493:47;40526:4;40532:7;40493:32;:47::i;:::-;-1:-1:-1;;;;;40566:16:0;;40562:183;;40599:45;40636:7;40599:36;:45::i;40562:183::-;40672:4;-1:-1:-1;;;;;40666:10:0;:2;-1:-1:-1;;;;;40666:10:0;;40662:83;;40693:40;40721:2;40725:7;40693:27;:40::i;32323:360::-;32383:13;32399:23;32414:7;32399:14;:23::i;:::-;32383:39;;32435:48;32456:5;32471:1;32475:7;32435:20;:48::i;:::-;32524:29;32541:1;32545:7;32524:8;:29::i;:::-;-1:-1:-1;;;;;32566:16:0;;;;;;:9;:16;;;;;:21;;32586:1;;32566:16;:21;;32586:1;;32566:21;:::i;:::-;;;;-1:-1:-1;;32605:16:0;;;;:7;:16;;;;;;32598:23;;-1:-1:-1;;;;;;32598:23:0;;;32639:36;32613:7;;32605:16;-1:-1:-1;;;;;32639:36:0;;;;;32605:16;;32639:36;32372:311;32323:360;:::o;55428:278::-;55514:7;55549:12;55542:5;55534:28;;;;-1:-1:-1;;;55534:28:0;;;;;;;;:::i;:::-;-1:-1:-1;55573:9:0;55585:5;55589:1;55585;:5;:::i;:::-;55573:17;55428:278;-1:-1:-1;;;;;55428:278:0:o;42266:1002::-;42546:22;42596:1;42571:22;42588:4;42571:16;:22::i;:::-;:26;;;;:::i;:::-;42608:18;42629:26;;;:17;:26;;;;;;42546:51;;-1:-1:-1;42762:28:0;;;42758:328;;-1:-1:-1;;;;;42829:18:0;;42807:19;42829:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42880:30;;;;;;:44;;;42997:30;;:17;:30;;;;;:43;;;42758:328;-1:-1:-1;43182:26:0;;;;:17;:26;;;;;;;;43175:33;;;-1:-1:-1;;;;;43226:18:0;;;;;:12;:18;;;;;:34;;;;;;;43219:41;42266:1002::o;43563:1079::-;43841:10;:17;43816:22;;43841:21;;43861:1;;43841:21;:::i;:::-;43873:18;43894:24;;;:15;:24;;;;;;44267:10;:26;;43816:46;;-1:-1:-1;43894:24:0;;43816:46;;44267:26;;;;;;:::i;:::-;;;;;;;;;44245:48;;44331:11;44306:10;44317;44306:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44411:28;;;:15;:28;;;;;;;:41;;;44583:24;;;;;44576:31;44618:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43634:1008;;;43563:1079;:::o;41053:221::-;41138:14;41155:20;41172:2;41155:16;:20::i;:::-;-1:-1:-1;;;;;41186:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41231:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41053:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:679::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:169;1098:2;1095:1;1092:9;1084:169;;;1155:23;1174:3;1155:23;:::i;:::-;1143:36;;1199:12;;;;1231;;;;1116:1;1109:9;1084:169;;;-1:-1:-1;1271:5:1;;603:679;-1:-1:-1;;;;;;;603:679:1:o;1287:673::-;1341:5;1394:3;1387:4;1379:6;1375:17;1371:27;1361:55;;1412:1;1409;1402:12;1361:55;1448:6;1435:20;1474:4;1498:60;1514:43;1554:2;1514:43;:::i;1498:60::-;1580:3;1604:2;1599:3;1592:15;1632:2;1627:3;1623:12;1616:19;;1667:2;1659:6;1655:15;1719:3;1714:2;1708;1705:1;1701:10;1693:6;1689:23;1685:32;1682:41;1679:61;;;1736:1;1733;1726:12;1679:61;1758:1;1768:163;1782:2;1779:1;1776:9;1768:163;;;1839:17;;1827:30;;1877:12;;;;1909;;;;1800:1;1793:9;1768:163;;1965:221;2008:5;2061:3;2054:4;2046:6;2042:17;2038:27;2028:55;;2079:1;2076;2069:12;2028:55;2101:79;2176:3;2167:6;2154:20;2147:4;2139:6;2135:17;2101:79;:::i;2191:186::-;2250:6;2303:2;2291:9;2282:7;2278:23;2274:32;2271:52;;;2319:1;2316;2309:12;2271:52;2342:29;2361:9;2342:29;:::i;2382:260::-;2450:6;2458;2511:2;2499:9;2490:7;2486:23;2482:32;2479:52;;;2527:1;2524;2517:12;2479:52;2550:29;2569:9;2550:29;:::i;:::-;2540:39;;2598:38;2632:2;2621:9;2617:18;2598:38;:::i;:::-;2588:48;;2382:260;;;;;:::o;2647:328::-;2724:6;2732;2740;2793:2;2781:9;2772:7;2768:23;2764:32;2761:52;;;2809:1;2806;2799:12;2761:52;2832:29;2851:9;2832:29;:::i;:::-;2822:39;;2880:38;2914:2;2903:9;2899:18;2880:38;:::i;:::-;2870:48;;2965:2;2954:9;2950:18;2937:32;2927:42;;2647:328;;;;;:::o;2980:666::-;3075:6;3083;3091;3099;3152:3;3140:9;3131:7;3127:23;3123:33;3120:53;;;3169:1;3166;3159:12;3120:53;3192:29;3211:9;3192:29;:::i;:::-;3182:39;;3240:38;3274:2;3263:9;3259:18;3240:38;:::i;:::-;3230:48;;3325:2;3314:9;3310:18;3297:32;3287:42;;3380:2;3369:9;3365:18;3352:32;3407:18;3399:6;3396:30;3393:50;;;3439:1;3436;3429:12;3393:50;3462:22;;3515:4;3507:13;;3503:27;-1:-1:-1;3493:55:1;;3544:1;3541;3534:12;3493:55;3567:73;3632:7;3627:2;3614:16;3609:2;3605;3601:11;3567:73;:::i;:::-;3557:83;;;2980:666;;;;;;;:::o;3651:422::-;3744:6;3752;3805:2;3793:9;3784:7;3780:23;3776:32;3773:52;;;3821:1;3818;3811:12;3773:52;3844:29;3863:9;3844:29;:::i;:::-;3834:39;;3924:2;3913:9;3909:18;3896:32;3951:18;3943:6;3940:30;3937:50;;;3983:1;3980;3973:12;3937:50;4006:61;4059:7;4050:6;4039:9;4035:22;4006:61;:::i;:::-;3996:71;;;3651:422;;;;;:::o;4078:315::-;4143:6;4151;4204:2;4192:9;4183:7;4179:23;4175:32;4172:52;;;4220:1;4217;4210:12;4172:52;4243:29;4262:9;4243:29;:::i;:::-;4233:39;;4322:2;4311:9;4307:18;4294:32;4335:28;4357:5;4335:28;:::i;:::-;4382:5;4372:15;;;4078:315;;;;;:::o;4398:254::-;4466:6;4474;4527:2;4515:9;4506:7;4502:23;4498:32;4495:52;;;4543:1;4540;4533:12;4495:52;4566:29;4585:9;4566:29;:::i;:::-;4556:39;4642:2;4627:18;;;;4614:32;;-1:-1:-1;;;4398:254:1:o;4657:348::-;4741:6;4794:2;4782:9;4773:7;4769:23;4765:32;4762:52;;;4810:1;4807;4800:12;4762:52;4850:9;4837:23;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:61;4991:7;4982:6;4971:9;4967:22;4938:61;:::i;5010:416::-;5103:6;5111;5164:2;5152:9;5143:7;5139:23;5135:32;5132:52;;;5180:1;5177;5170:12;5132:52;5220:9;5207:23;5253:18;5245:6;5242:30;5239:50;;;5285:1;5282;5275:12;5239:50;5308:61;5361:7;5352:6;5341:9;5337:22;5308:61;:::i;:::-;5298:71;5416:2;5401:18;;;;5388:32;;-1:-1:-1;;;;5010:416:1:o;5431:348::-;5515:6;5568:2;5556:9;5547:7;5543:23;5539:32;5536:52;;;5584:1;5581;5574:12;5536:52;5624:9;5611:23;5657:18;5649:6;5646:30;5643:50;;;5689:1;5686;5679:12;5643:50;5712:61;5765:7;5756:6;5745:9;5741:22;5712:61;:::i;5784:245::-;5851:6;5904:2;5892:9;5883:7;5879:23;5875:32;5872:52;;;5920:1;5917;5910:12;5872:52;5952:9;5946:16;5971:28;5993:5;5971:28;:::i;6034:245::-;6092:6;6145:2;6133:9;6124:7;6120:23;6116:32;6113:52;;;6161:1;6158;6151:12;6113:52;6200:9;6187:23;6219:30;6243:5;6219:30;:::i;6284:249::-;6353:6;6406:2;6394:9;6385:7;6381:23;6377:32;6374:52;;;6422:1;6419;6412:12;6374:52;6454:9;6448:16;6473:30;6497:5;6473:30;:::i;6538:322::-;6607:6;6660:2;6648:9;6639:7;6635:23;6631:32;6628:52;;;6676:1;6673;6666:12;6628:52;6716:9;6703:23;6749:18;6741:6;6738:30;6735:50;;;6781:1;6778;6771:12;6735:50;6804;6846:7;6837:6;6826:9;6822:22;6804:50;:::i;6865:272::-;6923:6;6976:2;6964:9;6955:7;6951:23;6947:32;6944:52;;;6992:1;6989;6982:12;6944:52;7031:9;7018:23;7081:6;7074:5;7070:18;7063:5;7060:29;7050:57;;7103:1;7100;7093:12;7142:180;7201:6;7254:2;7242:9;7233:7;7229:23;7225:32;7222:52;;;7270:1;7267;7260:12;7222:52;-1:-1:-1;7293:23:1;;7142:180;-1:-1:-1;7142:180:1:o;7327:184::-;7397:6;7450:2;7438:9;7429:7;7425:23;7421:32;7418:52;;;7466:1;7463;7456:12;7418:52;-1:-1:-1;7489:16:1;;7327:184;-1:-1:-1;7327:184:1:o;7516:390::-;7594:6;7602;7655:2;7643:9;7634:7;7630:23;7626:32;7623:52;;;7671:1;7668;7661:12;7623:52;7707:9;7694:23;7684:33;;7768:2;7757:9;7753:18;7740:32;7795:18;7787:6;7784:30;7781:50;;;7827:1;7824;7817:12;7781:50;7850;7892:7;7883:6;7872:9;7868:22;7850:50;:::i;7911:248::-;7979:6;7987;8040:2;8028:9;8019:7;8015:23;8011:32;8008:52;;;8056:1;8053;8046:12;8008:52;-1:-1:-1;;8079:23:1;;;8149:2;8134:18;;;8121:32;;-1:-1:-1;7911:248:1:o;8164:257::-;8205:3;8243:5;8237:12;8270:6;8265:3;8258:19;8286:63;8342:6;8335:4;8330:3;8326:14;8319:4;8312:5;8308:16;8286:63;:::i;:::-;8403:2;8382:15;-1:-1:-1;;8378:29:1;8369:39;;;;8410:4;8365:50;;8164:257;-1:-1:-1;;8164:257:1:o;8426:664::-;8653:3;8691:6;8685:13;8707:53;8753:6;8748:3;8741:4;8733:6;8729:17;8707:53;:::i;:::-;8823:13;;8782:16;;;;8845:57;8823:13;8782:16;8879:4;8867:17;;8845:57;:::i;:::-;8969:13;;8924:20;;;8991:57;8969:13;8924:20;9025:4;9013:17;;8991:57;:::i;:::-;9064:20;;8426:664;-1:-1:-1;;;;;8426:664:1:o;9683:488::-;-1:-1:-1;;;;;9952:15:1;;;9934:34;;10004:15;;9999:2;9984:18;;9977:43;10051:2;10036:18;;10029:34;;;10099:3;10094:2;10079:18;;10072:31;;;9877:4;;10120:45;;10145:19;;10137:6;10120:45;:::i;:::-;10112:53;9683:488;-1:-1:-1;;;;;;9683:488:1:o;10455:632::-;10626:2;10678:21;;;10748:13;;10651:18;;;10770:22;;;10597:4;;10626:2;10849:15;;;;10823:2;10808:18;;;10597:4;10892:169;10906:6;10903:1;10900:13;10892:169;;;10967:13;;10955:26;;11036:15;;;;11001:12;;;;10928:1;10921:9;10892:169;;;-1:-1:-1;11078:3:1;;10455:632;-1:-1:-1;;;;;;10455:632:1:o;11284:219::-;11433:2;11422:9;11415:21;11396:4;11453:44;11493:2;11482:9;11478:18;11470:6;11453:44;:::i;12269:414::-;12471:2;12453:21;;;12510:2;12490:18;;;12483:30;12549:34;12544:2;12529:18;;12522:62;-1:-1:-1;;;12615:2:1;12600:18;;12593:48;12673:3;12658:19;;12269:414::o;15878:340::-;16080:2;16062:21;;;16119:2;16099:18;;;16092:30;-1:-1:-1;;;16153:2:1;16138:18;;16131:46;16209:2;16194:18;;15878:340::o;20645:356::-;20847:2;20829:21;;;20866:18;;;20859:30;20925:34;20920:2;20905:18;;20898:62;20992:2;20977:18;;20645:356::o;22876:413::-;23078:2;23060:21;;;23117:2;23097:18;;;23090:30;23156:34;23151:2;23136:18;;23129:62;-1:-1:-1;;;23222:2:1;23207:18;;23200:47;23279:3;23264:19;;22876:413::o;25657:275::-;25728:2;25722:9;25793:2;25774:13;;-1:-1:-1;;25770:27:1;25758:40;;25828:18;25813:34;;25849:22;;;25810:62;25807:88;;;25875:18;;:::i;:::-;25911:2;25904:22;25657:275;;-1:-1:-1;25657:275:1:o;25937:183::-;25997:4;26030:18;26022:6;26019:30;26016:56;;;26052:18;;:::i;:::-;-1:-1:-1;26097:1:1;26093:14;26109:4;26089:25;;25937:183::o;26125:128::-;26165:3;26196:1;26192:6;26189:1;26186:13;26183:39;;;26202:18;;:::i;:::-;-1:-1:-1;26238:9:1;;26125:128::o;26258:120::-;26298:1;26324;26314:35;;26329:18;;:::i;:::-;-1:-1:-1;26363:9:1;;26258:120::o;26383:168::-;26423:7;26489:1;26485;26481:6;26477:14;26474:1;26471:21;26466:1;26459:9;26452:17;26448:45;26445:71;;;26496:18;;:::i;:::-;-1:-1:-1;26536:9:1;;26383:168::o;26556:125::-;26596:4;26624:1;26621;26618:8;26615:34;;;26629:18;;:::i;:::-;-1:-1:-1;26666:9:1;;26556:125::o;26686:258::-;26758:1;26768:113;26782:6;26779:1;26776:13;26768:113;;;26858:11;;;26852:18;26839:11;;;26832:39;26804:2;26797:10;26768:113;;;26899:6;26896:1;26893:13;26890:48;;;-1:-1:-1;;26934:1:1;26916:16;;26909:27;26686:258::o;26949:380::-;27028:1;27024:12;;;;27071;;;27092:61;;27146:4;27138:6;27134:17;27124:27;;27092:61;27199:2;27191:6;27188:14;27168:18;27165:38;27162:161;;;27245:10;27240:3;27236:20;27233:1;27226:31;27280:4;27277:1;27270:15;27308:4;27305:1;27298:15;27334:135;27373:3;-1:-1:-1;;27394:17:1;;27391:43;;;27414:18;;:::i;:::-;-1:-1:-1;27461:1:1;27450:13;;27334:135::o;27474:175::-;27511:3;27555:4;27548:5;27544:16;27584:4;27575:7;27572:17;27569:43;;;27592:18;;:::i;:::-;27641:1;27628:15;;27474:175;-1:-1:-1;;27474:175:1:o;27654:112::-;27686:1;27712;27702:35;;27717:18;;:::i;:::-;-1:-1:-1;27751:9:1;;27654:112::o;27771:127::-;27832:10;27827:3;27823:20;27820:1;27813:31;27863:4;27860:1;27853:15;27887:4;27884:1;27877:15;27903:127;27964:10;27959:3;27955:20;27952:1;27945:31;27995:4;27992:1;27985:15;28019:4;28016:1;28009:15;28035:127;28096:10;28091:3;28087:20;28084:1;28077:31;28127:4;28124:1;28117:15;28151:4;28148:1;28141:15;28167:127;28228:10;28223:3;28219:20;28216:1;28209:31;28259:4;28256:1;28249:15;28283:4;28280:1;28273:15;28299:127;28360:10;28355:3;28351:20;28348:1;28341:31;28391:4;28388:1;28381:15;28415:4;28412:1;28405:15;28431:118;28517:5;28510:13;28503:21;28496:5;28493:32;28483:60;;28539:1;28536;28529:12;28554:131;-1:-1:-1;;;;;;28628:32:1;;28618:43;;28608:71;;28675:1;28672;28665:12

Swarm Source

ipfs://0f1dfb54951b926c5baeef1914598341a36602e783f8db05fbb4a930a15a9420
Loading