ETH Price: $3,482.49 (+2.19%)
Gas: 8 Gwei

Token

 

Overview

Max Total Supply

158

Holders

130

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
slums.eth
0xF5A6bD45240cD607A3673492B66C2A7675b8a030
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Dizicord

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-14
*/

// SPDX-License-Identifier: MIT

// Dizicord

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

// File: contracts/Dizicord.sol

pragma solidity 0.8.9;



contract Dizicord is ERC1155Supply, Ownable 
{
    bool public saleIsActive = false;
    uint public activeBadgeId = 1337;
    uint public maxPerTransaction = 1;
    uint public maxPerWallet = 1;
    uint public maxSupply = 666;
    uint public constant NUMBER_RESERVED_TOKENS = 66;
    uint256 public constant PRICE = 66600000000000000; //0.0666 eth
    
    uint public reservedTokensMinted = 0;
    
    string public contractURIstr = "";

    constructor() ERC1155("https://ipfs.io/ipfs/QmRq8rCef5VEH8Z8LpTrESCrCMiM28xC3xG15D7BLCFfbo/1337.json") {}
    
    address payable private recipient1 = payable(0xADD98d7E3A5aFBae37088db87c5E636ceD0f882B);

    function contractURI() public view returns (string memory) 
    {
       return contractURIstr;
    }
    
    function setContractURI(string memory newuri) external onlyOwner
    {
       contractURIstr = newuri;
    }
    
    function setURI(string memory newuri) external onlyOwner 
    {
        _setURI(newuri);
    }
    
    function mintToken(uint256 amount) external payable
    {
        require(msg.sender == tx.origin, "No transaction from smart contracts!");
        require(saleIsActive, "Sale must be active to mint");
        require(amount > 0 && amount <= maxPerTransaction, "Max per transaction reached, sale not allowed");
        require(balanceOf(msg.sender, activeBadgeId) + amount <= maxPerWallet, "Limit per wallet reached with this amount, sale not allowed");
        require(totalSupply(activeBadgeId) + amount <= maxSupply - (NUMBER_RESERVED_TOKENS - reservedTokensMinted), "Purchase would exceed max supply");
        require(msg.value >= PRICE * amount, "Not enough ETH for transaction");

        _mint(msg.sender, activeBadgeId, amount, "");
    }
    
    function mintReservedTokens(address to, uint256 amount) external onlyOwner 
    {
        require(reservedTokensMinted + amount <= NUMBER_RESERVED_TOKENS, "This amount is more than max allowed");

        _mint(to, activeBadgeId, amount, "");
        reservedTokensMinted = reservedTokensMinted + amount;
    }
    
    function withdraw() external 
    {
        require(msg.sender == recipient1 || msg.sender == owner(), "Invalid sender");

        uint part = address(this).balance / 100 * 25;
        recipient1.transfer(part);
        payable(owner()).transfer(address(this).balance);
    }
    
    function flipSaleState() external onlyOwner 
    {
        saleIsActive = !saleIsActive;
    }
    
    function changeSaleDetails(uint _activeBadgeId, uint _maxPerTransaction, uint _maxPerWallet, uint _maxSupply) external onlyOwner 
    {
        activeBadgeId = _activeBadgeId;
        maxPerTransaction = _maxPerTransaction;
        maxPerWallet = _maxPerWallet;
        maxSupply = _maxSupply;
        saleIsActive = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"NUMBER_RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activeBadgeId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_activeBadgeId","type":"uint256"},{"internalType":"uint256","name":"_maxPerTransaction","type":"uint256"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"changeSaleDetails","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURIstr","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokensMinted","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newuri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600460146101000a81548160ff0219169083151502179055506105396005556001600655600160075561029a600855600060095560405180602001604052806000815250600a90805190602001906200006192919062000201565b5073add98d7e3a5afbae37088db87c5e636ced0f882b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000c457600080fd5b506040518060800160405280604d815260200162004558604d9139620000f0816200011760201b60201c565b5062000111620001056200013360201b60201c565b6200013b60201b60201c565b62000316565b80600290805190602001906200012f92919062000201565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020f90620002e0565b90600052602060002090601f0160209004810192826200023357600085556200027f565b82601f106200024e57805160ff19168380011785556200027f565b828001600101855582156200027f579182015b828111156200027e57825182559160200191906001019062000261565b5b5090506200028e919062000292565b5090565b5b80821115620002ad57600081600090555060010162000293565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002f957607f821691505b6020821081141562000310576200030f620002b1565b5b50919050565b61423280620003266000396000f3fe6080604052600436106101cc5760003560e01c8063715018a6116100f7578063c634d03211610095578063eb8d244411610064578063eb8d244414610656578063f242432a14610681578063f2fde38b146106aa578063f3e38821146106d3576101cc565b8063c634d032146105a7578063d5abeb01146105c3578063e8a3d485146105ee578063e985e9c514610619576101cc565b8063938e3d7b116100d1578063938e3d7b146104ed578063a22cb46514610516578063b22edfbc1461053f578063bd85b0391461056a576101cc565b8063715018a6146104805780638d859f3e146104975780638da5cb5b146104c2576101cc565b806334918dfd1161016f5780634e1273f41161013e5780634e1273f4146103b45780634f558e79146103f157806357535c431461042e578063651bf4b014610457576101cc565b806334918dfd146103305780633ccfd60b14610347578063453c23101461035e5780634b980d6714610389576101cc565b80630612d364116101ab5780630612d364146102745780630e89341c1461029f57806311d26c18146102dc5780632eb2c2d614610307576101cc565b8062fdd58e146101d157806301ffc9a71461020e57806302fe53051461024b575b600080fd5b3480156101dd57600080fd5b506101f860048036038101906101f39190612817565b6106fe565b6040516102059190612866565b60405180910390f35b34801561021a57600080fd5b50610235600480360381019061023091906128d9565b6107c7565b6040516102429190612921565b60405180910390f35b34801561025757600080fd5b50610272600480360381019061026d9190612a82565b6108a9565b005b34801561028057600080fd5b50610289610931565b6040516102969190612b53565b60405180910390f35b3480156102ab57600080fd5b506102c660048036038101906102c19190612b75565b6109bf565b6040516102d39190612b53565b60405180910390f35b3480156102e857600080fd5b506102f1610a53565b6040516102fe9190612866565b60405180910390f35b34801561031357600080fd5b5061032e60048036038101906103299190612d0b565b610a59565b005b34801561033c57600080fd5b50610345610afa565b005b34801561035357600080fd5b5061035c610ba2565b005b34801561036a57600080fd5b50610373610d46565b6040516103809190612866565b60405180910390f35b34801561039557600080fd5b5061039e610d4c565b6040516103ab9190612866565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190612e9d565b610d52565b6040516103e89190612fd3565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190612b75565b610e6b565b6040516104259190612921565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190612817565b610e7f565b005b34801561046357600080fd5b5061047e60048036038101906104799190612ff5565b610f81565b005b34801561048c57600080fd5b5061049561103a565b005b3480156104a357600080fd5b506104ac6110c2565b6040516104b99190612866565b60405180910390f35b3480156104ce57600080fd5b506104d76110cd565b6040516104e4919061306b565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190612a82565b6110f7565b005b34801561052257600080fd5b5061053d600480360381019061053891906130b2565b61118d565b005b34801561054b57600080fd5b506105546111a3565b6040516105619190612866565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190612b75565b6111a8565b60405161059e9190612866565b60405180910390f35b6105c160048036038101906105bc9190612b75565b6111c5565b005b3480156105cf57600080fd5b506105d8611416565b6040516105e59190612866565b60405180910390f35b3480156105fa57600080fd5b5061060361141c565b6040516106109190612b53565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b91906130f2565b6114ae565b60405161064d9190612921565b60405180910390f35b34801561066257600080fd5b5061066b611542565b6040516106789190612921565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613132565b611555565b005b3480156106b657600080fd5b506106d160048036038101906106cc91906131c9565b6115f6565b005b3480156106df57600080fd5b506106e86116ee565b6040516106f59190612866565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561076f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076690613268565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a257506108a1826116f4565b5b9050919050565b6108b161175e565b73ffffffffffffffffffffffffffffffffffffffff166108cf6110cd565b73ffffffffffffffffffffffffffffffffffffffff1614610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c906132d4565b60405180910390fd5b61092e81611766565b50565b600a805461093e90613323565b80601f016020809104026020016040519081016040528092919081815260200182805461096a90613323565b80156109b75780601f1061098c576101008083540402835291602001916109b7565b820191906000526020600020905b81548152906001019060200180831161099a57829003601f168201915b505050505081565b6060600280546109ce90613323565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa90613323565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b50505050509050919050565b60055481565b610a6161175e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610aa75750610aa685610aa161175e565b6114ae565b5b610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add906133c7565b60405180910390fd5b610af38585858585611780565b5050505050565b610b0261175e565b73ffffffffffffffffffffffffffffffffffffffff16610b206110cd565b73ffffffffffffffffffffffffffffffffffffffff1614610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d906132d4565b60405180910390fd5b600460149054906101000a900460ff1615600460146101000a81548160ff021916908315150217905550565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c305750610c016110cd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690613433565b60405180910390fd5b60006019606447610c8091906134b1565b610c8a91906134e2565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cf4573d6000803e3d6000fd5b50610cfd6110cd565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d42573d6000803e3d6000fd5b5050565b60075481565b60065481565b60608151835114610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f906135ae565b60405180910390fd5b6000835167ffffffffffffffff811115610db557610db4612957565b5b604051908082528060200260200182016040528015610de35781602001602082028036833780820191505090505b50905060005b8451811015610e6057610e30858281518110610e0857610e076135ce565b5b6020026020010151858381518110610e2357610e226135ce565b5b60200260200101516106fe565b828281518110610e4357610e426135ce565b5b60200260200101818152505080610e59906135fd565b9050610de9565b508091505092915050565b600080610e77836111a8565b119050919050565b610e8761175e565b73ffffffffffffffffffffffffffffffffffffffff16610ea56110cd565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906132d4565b60405180910390fd5b604281600954610f0b9190613646565b1115610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f439061370e565b60405180910390fd5b610f69826005548360405180602001604052806000815250611a94565b80600954610f779190613646565b6009819055505050565b610f8961175e565b73ffffffffffffffffffffffffffffffffffffffff16610fa76110cd565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff4906132d4565b60405180910390fd5b836005819055508260068190555081600781905550806008819055506000600460146101000a81548160ff02191690831515021790555050505050565b61104261175e565b73ffffffffffffffffffffffffffffffffffffffff166110606110cd565b73ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad906132d4565b60405180910390fd5b6110c06000611c2a565b565b66ec9c58de0a800081565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110ff61175e565b73ffffffffffffffffffffffffffffffffffffffff1661111d6110cd565b73ffffffffffffffffffffffffffffffffffffffff1614611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906132d4565b60405180910390fd5b80600a90805190602001906111899291906126cc565b5050565b61119f61119861175e565b8383611cf0565b5050565b604281565b600060036000838152602001908152602001600020549050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a906137a0565b60405180910390fd5b600460149054906101000a900460ff16611282576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112799061380c565b60405180910390fd5b60008111801561129457506006548111155b6112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca9061389e565b60405180910390fd5b600754816112e3336005546106fe565b6112ed9190613646565b111561132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590613930565b60405180910390fd5b600954604261133d9190613950565b60085461134a9190613950565b816113566005546111a8565b6113609190613646565b11156113a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611398906139d0565b60405180910390fd5b8066ec9c58de0a80006113b491906134e2565b3410156113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed90613a3c565b60405180910390fd5b611413336005548360405180602001604052806000815250611a94565b50565b60085481565b6060600a805461142b90613323565b80601f016020809104026020016040519081016040528092919081815260200182805461145790613323565b80156114a45780601f10611479576101008083540402835291602001916114a4565b820191906000526020600020905b81548152906001019060200180831161148757829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600460149054906101000a900460ff1681565b61155d61175e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806115a357506115a28561159d61175e565b6114ae565b5b6115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990613ace565b60405180910390fd5b6115ef8585858585611e5d565b5050505050565b6115fe61175e565b73ffffffffffffffffffffffffffffffffffffffff1661161c6110cd565b73ffffffffffffffffffffffffffffffffffffffff1614611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906132d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613b60565b60405180910390fd5b6116eb81611c2a565b50565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061177c9291906126cc565b5050565b81518351146117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90613bf2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90613c84565b60405180910390fd5b600061183e61175e565b905061184e8187878787876120df565b60005b84518110156119ff57600085828151811061186f5761186e6135ce565b5b60200260200101519050600085838151811061188e5761188d6135ce565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690613d16565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e49190613646565b92505081905550505050806119f8906135fd565b9050611851565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a76929190613d36565b60405180910390a4611a8c818787878787612259565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90613ddf565b60405180910390fd5b6000611b0e61175e565b9050611b2f81600087611b2088612440565b611b2988612440565b876120df565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b8e9190613646565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611c0c929190613dff565b60405180910390a4611c23816000878787876124ba565b5050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690613e9a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e509190612921565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490613c84565b60405180910390fd5b6000611ed761175e565b9050611ef7818787611ee888612440565b611ef188612440565b876120df565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590613d16565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120439190613646565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516120c0929190613dff565b60405180910390a46120d68288888888886124ba565b50505050505050565b6120ed8686868686866126a1565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561219f5760005b835181101561219d57828181518110612141576121406135ce565b5b6020026020010151600360008684815181106121605761215f6135ce565b5b6020026020010151815260200190815260200160002060008282546121859190613646565b9250508190555080612196906135fd565b9050612125565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122515760005b835181101561224f578281815181106121f3576121f26135ce565b5b602002602001015160036000868481518110612212576122116135ce565b5b6020026020010151815260200190815260200160002060008282546122379190613950565b9250508190555080612248906135fd565b90506121d7565b505b505050505050565b6122788473ffffffffffffffffffffffffffffffffffffffff166126a9565b15612438578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016122be959493929190613f0f565b602060405180830381600087803b1580156122d857600080fd5b505af192505050801561230957506040513d601f19601f820116820180604052508101906123069190613f8c565b60015b6123af57612315613fc6565b806308c379a01415612372575061232a613fe8565b806123355750612374565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123699190612b53565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a6906140f0565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90614182565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561245f5761245e612957565b5b60405190808252806020026020018201604052801561248d5781602001602082028036833780820191505090505b50905082816000815181106124a5576124a46135ce565b5b60200260200101818152505080915050919050565b6124d98473ffffffffffffffffffffffffffffffffffffffff166126a9565b15612699578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161251f9594939291906141a2565b602060405180830381600087803b15801561253957600080fd5b505af192505050801561256a57506040513d601f19601f820116820180604052508101906125679190613f8c565b60015b61261057612576613fc6565b806308c379a014156125d3575061258b613fe8565b8061259657506125d5565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ca9190612b53565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612607906140f0565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90614182565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546126d890613323565b90600052602060002090601f0160209004810192826126fa5760008555612741565b82601f1061271357805160ff1916838001178555612741565b82800160010185558215612741579182015b82811115612740578251825591602001919060010190612725565b5b50905061274e9190612752565b5090565b5b8082111561276b576000816000905550600101612753565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127ae82612783565b9050919050565b6127be816127a3565b81146127c957600080fd5b50565b6000813590506127db816127b5565b92915050565b6000819050919050565b6127f4816127e1565b81146127ff57600080fd5b50565b600081359050612811816127eb565b92915050565b6000806040838503121561282e5761282d612779565b5b600061283c858286016127cc565b925050602061284d85828601612802565b9150509250929050565b612860816127e1565b82525050565b600060208201905061287b6000830184612857565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128b681612881565b81146128c157600080fd5b50565b6000813590506128d3816128ad565b92915050565b6000602082840312156128ef576128ee612779565b5b60006128fd848285016128c4565b91505092915050565b60008115159050919050565b61291b81612906565b82525050565b60006020820190506129366000830184612912565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61298f82612946565b810181811067ffffffffffffffff821117156129ae576129ad612957565b5b80604052505050565b60006129c161276f565b90506129cd8282612986565b919050565b600067ffffffffffffffff8211156129ed576129ec612957565b5b6129f682612946565b9050602081019050919050565b82818337600083830152505050565b6000612a25612a20846129d2565b6129b7565b905082815260208101848484011115612a4157612a40612941565b5b612a4c848285612a03565b509392505050565b600082601f830112612a6957612a6861293c565b5b8135612a79848260208601612a12565b91505092915050565b600060208284031215612a9857612a97612779565b5b600082013567ffffffffffffffff811115612ab657612ab561277e565b5b612ac284828501612a54565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b05578082015181840152602081019050612aea565b83811115612b14576000848401525b50505050565b6000612b2582612acb565b612b2f8185612ad6565b9350612b3f818560208601612ae7565b612b4881612946565b840191505092915050565b60006020820190508181036000830152612b6d8184612b1a565b905092915050565b600060208284031215612b8b57612b8a612779565b5b6000612b9984828501612802565b91505092915050565b600067ffffffffffffffff821115612bbd57612bbc612957565b5b602082029050602081019050919050565b600080fd5b6000612be6612be184612ba2565b6129b7565b90508083825260208201905060208402830185811115612c0957612c08612bce565b5b835b81811015612c325780612c1e8882612802565b845260208401935050602081019050612c0b565b5050509392505050565b600082601f830112612c5157612c5061293c565b5b8135612c61848260208601612bd3565b91505092915050565b600067ffffffffffffffff821115612c8557612c84612957565b5b612c8e82612946565b9050602081019050919050565b6000612cae612ca984612c6a565b6129b7565b905082815260208101848484011115612cca57612cc9612941565b5b612cd5848285612a03565b509392505050565b600082601f830112612cf257612cf161293c565b5b8135612d02848260208601612c9b565b91505092915050565b600080600080600060a08688031215612d2757612d26612779565b5b6000612d35888289016127cc565b9550506020612d46888289016127cc565b945050604086013567ffffffffffffffff811115612d6757612d6661277e565b5b612d7388828901612c3c565b935050606086013567ffffffffffffffff811115612d9457612d9361277e565b5b612da088828901612c3c565b925050608086013567ffffffffffffffff811115612dc157612dc061277e565b5b612dcd88828901612cdd565b9150509295509295909350565b600067ffffffffffffffff821115612df557612df4612957565b5b602082029050602081019050919050565b6000612e19612e1484612dda565b6129b7565b90508083825260208201905060208402830185811115612e3c57612e3b612bce565b5b835b81811015612e655780612e5188826127cc565b845260208401935050602081019050612e3e565b5050509392505050565b600082601f830112612e8457612e8361293c565b5b8135612e94848260208601612e06565b91505092915050565b60008060408385031215612eb457612eb3612779565b5b600083013567ffffffffffffffff811115612ed257612ed161277e565b5b612ede85828601612e6f565b925050602083013567ffffffffffffffff811115612eff57612efe61277e565b5b612f0b85828601612c3c565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f4a816127e1565b82525050565b6000612f5c8383612f41565b60208301905092915050565b6000602082019050919050565b6000612f8082612f15565b612f8a8185612f20565b9350612f9583612f31565b8060005b83811015612fc6578151612fad8882612f50565b9750612fb883612f68565b925050600181019050612f99565b5085935050505092915050565b60006020820190508181036000830152612fed8184612f75565b905092915050565b6000806000806080858703121561300f5761300e612779565b5b600061301d87828801612802565b945050602061302e87828801612802565b935050604061303f87828801612802565b925050606061305087828801612802565b91505092959194509250565b613065816127a3565b82525050565b6000602082019050613080600083018461305c565b92915050565b61308f81612906565b811461309a57600080fd5b50565b6000813590506130ac81613086565b92915050565b600080604083850312156130c9576130c8612779565b5b60006130d7858286016127cc565b92505060206130e88582860161309d565b9150509250929050565b6000806040838503121561310957613108612779565b5b6000613117858286016127cc565b9250506020613128858286016127cc565b9150509250929050565b600080600080600060a0868803121561314e5761314d612779565b5b600061315c888289016127cc565b955050602061316d888289016127cc565b945050604061317e88828901612802565b935050606061318f88828901612802565b925050608086013567ffffffffffffffff8111156131b0576131af61277e565b5b6131bc88828901612cdd565b9150509295509295909350565b6000602082840312156131df576131de612779565b5b60006131ed848285016127cc565b91505092915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613252602b83612ad6565b915061325d826131f6565b604082019050919050565b6000602082019050818103600083015261328181613245565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132be602083612ad6565b91506132c982613288565b602082019050919050565b600060208201905081810360008301526132ed816132b1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061333b57607f821691505b6020821081141561334f5761334e6132f4565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006133b1603283612ad6565b91506133bc82613355565b604082019050919050565b600060208201905081810360008301526133e0816133a4565b9050919050565b7f496e76616c69642073656e646572000000000000000000000000000000000000600082015250565b600061341d600e83612ad6565b9150613428826133e7565b602082019050919050565b6000602082019050818103600083015261344c81613410565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134bc826127e1565b91506134c7836127e1565b9250826134d7576134d6613453565b5b828204905092915050565b60006134ed826127e1565b91506134f8836127e1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561353157613530613482565b5b828202905092915050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613598602983612ad6565b91506135a38261353c565b604082019050919050565b600060208201905081810360008301526135c78161358b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613608826127e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561363b5761363a613482565b5b600182019050919050565b6000613651826127e1565b915061365c836127e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561369157613690613482565b5b828201905092915050565b7f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b60006136f8602483612ad6565b91506137038261369c565b604082019050919050565b60006020820190508181036000830152613727816136eb565b9050919050565b7f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e74726160008201527f6374732100000000000000000000000000000000000000000000000000000000602082015250565b600061378a602483612ad6565b91506137958261372e565b604082019050919050565b600060208201905081810360008301526137b98161377d565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b60006137f6601b83612ad6565b9150613801826137c0565b602082019050919050565b60006020820190508181036000830152613825816137e9565b9050919050565b7f4d617820706572207472616e73616374696f6e20726561636865642c2073616c60008201527f65206e6f7420616c6c6f77656400000000000000000000000000000000000000602082015250565b6000613888602d83612ad6565b91506138938261382c565b604082019050919050565b600060208201905081810360008301526138b78161387b565b9050919050565b7f4c696d6974207065722077616c6c65742072656163686564207769746820746860008201527f697320616d6f756e742c2073616c65206e6f7420616c6c6f7765640000000000602082015250565b600061391a603b83612ad6565b9150613925826138be565b604082019050919050565b600060208201905081810360008301526139498161390d565b9050919050565b600061395b826127e1565b9150613966836127e1565b92508282101561397957613978613482565b5b828203905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b60006139ba602083612ad6565b91506139c582613984565b602082019050919050565b600060208201905081810360008301526139e9816139ad565b9050919050565b7f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e0000600082015250565b6000613a26601e83612ad6565b9150613a31826139f0565b602082019050919050565b60006020820190508181036000830152613a5581613a19565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613ab8602983612ad6565b9150613ac382613a5c565b604082019050919050565b60006020820190508181036000830152613ae781613aab565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b4a602683612ad6565b9150613b5582613aee565b604082019050919050565b60006020820190508181036000830152613b7981613b3d565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613bdc602883612ad6565b9150613be782613b80565b604082019050919050565b60006020820190508181036000830152613c0b81613bcf565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c6e602583612ad6565b9150613c7982613c12565b604082019050919050565b60006020820190508181036000830152613c9d81613c61565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613d00602a83612ad6565b9150613d0b82613ca4565b604082019050919050565b60006020820190508181036000830152613d2f81613cf3565b9050919050565b60006040820190508181036000830152613d508185612f75565b90508181036020830152613d648184612f75565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613dc9602183612ad6565b9150613dd482613d6d565b604082019050919050565b60006020820190508181036000830152613df881613dbc565b9050919050565b6000604082019050613e146000830185612857565b613e216020830184612857565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613e84602983612ad6565b9150613e8f82613e28565b604082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ee182613eba565b613eeb8185613ec5565b9350613efb818560208601612ae7565b613f0481612946565b840191505092915050565b600060a082019050613f24600083018861305c565b613f31602083018761305c565b8181036040830152613f438186612f75565b90508181036060830152613f578185612f75565b90508181036080830152613f6b8184613ed6565b90509695505050505050565b600081519050613f86816128ad565b92915050565b600060208284031215613fa257613fa1612779565b5b6000613fb084828501613f77565b91505092915050565b60008160e01c9050919050565b600060033d1115613fe55760046000803e613fe2600051613fb9565b90505b90565b600060443d1015613ff85761407b565b61400061276f565b60043d036004823e80513d602482011167ffffffffffffffff8211171561402857505061407b565b808201805167ffffffffffffffff811115614046575050505061407b565b80602083010160043d03850181111561406357505050505061407b565b61407282602001850186612986565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006140da603483612ad6565b91506140e58261407e565b604082019050919050565b60006020820190508181036000830152614109816140cd565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061416c602883612ad6565b915061417782614110565b604082019050919050565b6000602082019050818103600083015261419b8161415f565b9050919050565b600060a0820190506141b7600083018861305c565b6141c4602083018761305c565b6141d16040830186612857565b6141de6060830185612857565b81810360808301526141f08184613ed6565b9050969550505050505056fea26469706673582212205ff24d15016cc866b4dbb8c3470836ffc29191dbf8051da1ca629e413966d8aa64736f6c6343000809003368747470733a2f2f697066732e696f2f697066732f516d5271387243656635564548385a384c70547245534372434d694d3238784333784731354437424c434666626f2f313333372e6a736f6e

Deployed Bytecode

0x6080604052600436106101cc5760003560e01c8063715018a6116100f7578063c634d03211610095578063eb8d244411610064578063eb8d244414610656578063f242432a14610681578063f2fde38b146106aa578063f3e38821146106d3576101cc565b8063c634d032146105a7578063d5abeb01146105c3578063e8a3d485146105ee578063e985e9c514610619576101cc565b8063938e3d7b116100d1578063938e3d7b146104ed578063a22cb46514610516578063b22edfbc1461053f578063bd85b0391461056a576101cc565b8063715018a6146104805780638d859f3e146104975780638da5cb5b146104c2576101cc565b806334918dfd1161016f5780634e1273f41161013e5780634e1273f4146103b45780634f558e79146103f157806357535c431461042e578063651bf4b014610457576101cc565b806334918dfd146103305780633ccfd60b14610347578063453c23101461035e5780634b980d6714610389576101cc565b80630612d364116101ab5780630612d364146102745780630e89341c1461029f57806311d26c18146102dc5780632eb2c2d614610307576101cc565b8062fdd58e146101d157806301ffc9a71461020e57806302fe53051461024b575b600080fd5b3480156101dd57600080fd5b506101f860048036038101906101f39190612817565b6106fe565b6040516102059190612866565b60405180910390f35b34801561021a57600080fd5b50610235600480360381019061023091906128d9565b6107c7565b6040516102429190612921565b60405180910390f35b34801561025757600080fd5b50610272600480360381019061026d9190612a82565b6108a9565b005b34801561028057600080fd5b50610289610931565b6040516102969190612b53565b60405180910390f35b3480156102ab57600080fd5b506102c660048036038101906102c19190612b75565b6109bf565b6040516102d39190612b53565b60405180910390f35b3480156102e857600080fd5b506102f1610a53565b6040516102fe9190612866565b60405180910390f35b34801561031357600080fd5b5061032e60048036038101906103299190612d0b565b610a59565b005b34801561033c57600080fd5b50610345610afa565b005b34801561035357600080fd5b5061035c610ba2565b005b34801561036a57600080fd5b50610373610d46565b6040516103809190612866565b60405180910390f35b34801561039557600080fd5b5061039e610d4c565b6040516103ab9190612866565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190612e9d565b610d52565b6040516103e89190612fd3565b60405180910390f35b3480156103fd57600080fd5b5061041860048036038101906104139190612b75565b610e6b565b6040516104259190612921565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190612817565b610e7f565b005b34801561046357600080fd5b5061047e60048036038101906104799190612ff5565b610f81565b005b34801561048c57600080fd5b5061049561103a565b005b3480156104a357600080fd5b506104ac6110c2565b6040516104b99190612866565b60405180910390f35b3480156104ce57600080fd5b506104d76110cd565b6040516104e4919061306b565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190612a82565b6110f7565b005b34801561052257600080fd5b5061053d600480360381019061053891906130b2565b61118d565b005b34801561054b57600080fd5b506105546111a3565b6040516105619190612866565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190612b75565b6111a8565b60405161059e9190612866565b60405180910390f35b6105c160048036038101906105bc9190612b75565b6111c5565b005b3480156105cf57600080fd5b506105d8611416565b6040516105e59190612866565b60405180910390f35b3480156105fa57600080fd5b5061060361141c565b6040516106109190612b53565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b91906130f2565b6114ae565b60405161064d9190612921565b60405180910390f35b34801561066257600080fd5b5061066b611542565b6040516106789190612921565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613132565b611555565b005b3480156106b657600080fd5b506106d160048036038101906106cc91906131c9565b6115f6565b005b3480156106df57600080fd5b506106e86116ee565b6040516106f59190612866565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561076f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076690613268565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a257506108a1826116f4565b5b9050919050565b6108b161175e565b73ffffffffffffffffffffffffffffffffffffffff166108cf6110cd565b73ffffffffffffffffffffffffffffffffffffffff1614610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c906132d4565b60405180910390fd5b61092e81611766565b50565b600a805461093e90613323565b80601f016020809104026020016040519081016040528092919081815260200182805461096a90613323565b80156109b75780601f1061098c576101008083540402835291602001916109b7565b820191906000526020600020905b81548152906001019060200180831161099a57829003601f168201915b505050505081565b6060600280546109ce90613323565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa90613323565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b50505050509050919050565b60055481565b610a6161175e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610aa75750610aa685610aa161175e565b6114ae565b5b610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add906133c7565b60405180910390fd5b610af38585858585611780565b5050505050565b610b0261175e565b73ffffffffffffffffffffffffffffffffffffffff16610b206110cd565b73ffffffffffffffffffffffffffffffffffffffff1614610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d906132d4565b60405180910390fd5b600460149054906101000a900460ff1615600460146101000a81548160ff021916908315150217905550565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c305750610c016110cd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690613433565b60405180910390fd5b60006019606447610c8091906134b1565b610c8a91906134e2565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cf4573d6000803e3d6000fd5b50610cfd6110cd565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d42573d6000803e3d6000fd5b5050565b60075481565b60065481565b60608151835114610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f906135ae565b60405180910390fd5b6000835167ffffffffffffffff811115610db557610db4612957565b5b604051908082528060200260200182016040528015610de35781602001602082028036833780820191505090505b50905060005b8451811015610e6057610e30858281518110610e0857610e076135ce565b5b6020026020010151858381518110610e2357610e226135ce565b5b60200260200101516106fe565b828281518110610e4357610e426135ce565b5b60200260200101818152505080610e59906135fd565b9050610de9565b508091505092915050565b600080610e77836111a8565b119050919050565b610e8761175e565b73ffffffffffffffffffffffffffffffffffffffff16610ea56110cd565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906132d4565b60405180910390fd5b604281600954610f0b9190613646565b1115610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f439061370e565b60405180910390fd5b610f69826005548360405180602001604052806000815250611a94565b80600954610f779190613646565b6009819055505050565b610f8961175e565b73ffffffffffffffffffffffffffffffffffffffff16610fa76110cd565b73ffffffffffffffffffffffffffffffffffffffff1614610ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff4906132d4565b60405180910390fd5b836005819055508260068190555081600781905550806008819055506000600460146101000a81548160ff02191690831515021790555050505050565b61104261175e565b73ffffffffffffffffffffffffffffffffffffffff166110606110cd565b73ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad906132d4565b60405180910390fd5b6110c06000611c2a565b565b66ec9c58de0a800081565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110ff61175e565b73ffffffffffffffffffffffffffffffffffffffff1661111d6110cd565b73ffffffffffffffffffffffffffffffffffffffff1614611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a906132d4565b60405180910390fd5b80600a90805190602001906111899291906126cc565b5050565b61119f61119861175e565b8383611cf0565b5050565b604281565b600060036000838152602001908152602001600020549050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a906137a0565b60405180910390fd5b600460149054906101000a900460ff16611282576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112799061380c565b60405180910390fd5b60008111801561129457506006548111155b6112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca9061389e565b60405180910390fd5b600754816112e3336005546106fe565b6112ed9190613646565b111561132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590613930565b60405180910390fd5b600954604261133d9190613950565b60085461134a9190613950565b816113566005546111a8565b6113609190613646565b11156113a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611398906139d0565b60405180910390fd5b8066ec9c58de0a80006113b491906134e2565b3410156113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed90613a3c565b60405180910390fd5b611413336005548360405180602001604052806000815250611a94565b50565b60085481565b6060600a805461142b90613323565b80601f016020809104026020016040519081016040528092919081815260200182805461145790613323565b80156114a45780601f10611479576101008083540402835291602001916114a4565b820191906000526020600020905b81548152906001019060200180831161148757829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600460149054906101000a900460ff1681565b61155d61175e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806115a357506115a28561159d61175e565b6114ae565b5b6115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d990613ace565b60405180910390fd5b6115ef8585858585611e5d565b5050505050565b6115fe61175e565b73ffffffffffffffffffffffffffffffffffffffff1661161c6110cd565b73ffffffffffffffffffffffffffffffffffffffff1614611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906132d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613b60565b60405180910390fd5b6116eb81611c2a565b50565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061177c9291906126cc565b5050565b81518351146117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90613bf2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90613c84565b60405180910390fd5b600061183e61175e565b905061184e8187878787876120df565b60005b84518110156119ff57600085828151811061186f5761186e6135ce565b5b60200260200101519050600085838151811061188e5761188d6135ce565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690613d16565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e49190613646565b92505081905550505050806119f8906135fd565b9050611851565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a76929190613d36565b60405180910390a4611a8c818787878787612259565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90613ddf565b60405180910390fd5b6000611b0e61175e565b9050611b2f81600087611b2088612440565b611b2988612440565b876120df565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b8e9190613646565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611c0c929190613dff565b60405180910390a4611c23816000878787876124ba565b5050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690613e9a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e509190612921565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec490613c84565b60405180910390fd5b6000611ed761175e565b9050611ef7818787611ee888612440565b611ef188612440565b876120df565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590613d16565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120439190613646565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516120c0929190613dff565b60405180910390a46120d68288888888886124ba565b50505050505050565b6120ed8686868686866126a1565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561219f5760005b835181101561219d57828181518110612141576121406135ce565b5b6020026020010151600360008684815181106121605761215f6135ce565b5b6020026020010151815260200190815260200160002060008282546121859190613646565b9250508190555080612196906135fd565b9050612125565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122515760005b835181101561224f578281815181106121f3576121f26135ce565b5b602002602001015160036000868481518110612212576122116135ce565b5b6020026020010151815260200190815260200160002060008282546122379190613950565b9250508190555080612248906135fd565b90506121d7565b505b505050505050565b6122788473ffffffffffffffffffffffffffffffffffffffff166126a9565b15612438578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016122be959493929190613f0f565b602060405180830381600087803b1580156122d857600080fd5b505af192505050801561230957506040513d601f19601f820116820180604052508101906123069190613f8c565b60015b6123af57612315613fc6565b806308c379a01415612372575061232a613fe8565b806123355750612374565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123699190612b53565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a6906140f0565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90614182565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561245f5761245e612957565b5b60405190808252806020026020018201604052801561248d5781602001602082028036833780820191505090505b50905082816000815181106124a5576124a46135ce565b5b60200260200101818152505080915050919050565b6124d98473ffffffffffffffffffffffffffffffffffffffff166126a9565b15612699578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161251f9594939291906141a2565b602060405180830381600087803b15801561253957600080fd5b505af192505050801561256a57506040513d601f19601f820116820180604052508101906125679190613f8c565b60015b61261057612576613fc6565b806308c379a014156125d3575061258b613fe8565b8061259657506125d5565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ca9190612b53565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612607906140f0565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90614182565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546126d890613323565b90600052602060002090601f0160209004810192826126fa5760008555612741565b82601f1061271357805160ff1916838001178555612741565b82800160010185558215612741579182015b82811115612740578251825591602001919060010190612725565b5b50905061274e9190612752565b5090565b5b8082111561276b576000816000905550600101612753565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127ae82612783565b9050919050565b6127be816127a3565b81146127c957600080fd5b50565b6000813590506127db816127b5565b92915050565b6000819050919050565b6127f4816127e1565b81146127ff57600080fd5b50565b600081359050612811816127eb565b92915050565b6000806040838503121561282e5761282d612779565b5b600061283c858286016127cc565b925050602061284d85828601612802565b9150509250929050565b612860816127e1565b82525050565b600060208201905061287b6000830184612857565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128b681612881565b81146128c157600080fd5b50565b6000813590506128d3816128ad565b92915050565b6000602082840312156128ef576128ee612779565b5b60006128fd848285016128c4565b91505092915050565b60008115159050919050565b61291b81612906565b82525050565b60006020820190506129366000830184612912565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61298f82612946565b810181811067ffffffffffffffff821117156129ae576129ad612957565b5b80604052505050565b60006129c161276f565b90506129cd8282612986565b919050565b600067ffffffffffffffff8211156129ed576129ec612957565b5b6129f682612946565b9050602081019050919050565b82818337600083830152505050565b6000612a25612a20846129d2565b6129b7565b905082815260208101848484011115612a4157612a40612941565b5b612a4c848285612a03565b509392505050565b600082601f830112612a6957612a6861293c565b5b8135612a79848260208601612a12565b91505092915050565b600060208284031215612a9857612a97612779565b5b600082013567ffffffffffffffff811115612ab657612ab561277e565b5b612ac284828501612a54565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b05578082015181840152602081019050612aea565b83811115612b14576000848401525b50505050565b6000612b2582612acb565b612b2f8185612ad6565b9350612b3f818560208601612ae7565b612b4881612946565b840191505092915050565b60006020820190508181036000830152612b6d8184612b1a565b905092915050565b600060208284031215612b8b57612b8a612779565b5b6000612b9984828501612802565b91505092915050565b600067ffffffffffffffff821115612bbd57612bbc612957565b5b602082029050602081019050919050565b600080fd5b6000612be6612be184612ba2565b6129b7565b90508083825260208201905060208402830185811115612c0957612c08612bce565b5b835b81811015612c325780612c1e8882612802565b845260208401935050602081019050612c0b565b5050509392505050565b600082601f830112612c5157612c5061293c565b5b8135612c61848260208601612bd3565b91505092915050565b600067ffffffffffffffff821115612c8557612c84612957565b5b612c8e82612946565b9050602081019050919050565b6000612cae612ca984612c6a565b6129b7565b905082815260208101848484011115612cca57612cc9612941565b5b612cd5848285612a03565b509392505050565b600082601f830112612cf257612cf161293c565b5b8135612d02848260208601612c9b565b91505092915050565b600080600080600060a08688031215612d2757612d26612779565b5b6000612d35888289016127cc565b9550506020612d46888289016127cc565b945050604086013567ffffffffffffffff811115612d6757612d6661277e565b5b612d7388828901612c3c565b935050606086013567ffffffffffffffff811115612d9457612d9361277e565b5b612da088828901612c3c565b925050608086013567ffffffffffffffff811115612dc157612dc061277e565b5b612dcd88828901612cdd565b9150509295509295909350565b600067ffffffffffffffff821115612df557612df4612957565b5b602082029050602081019050919050565b6000612e19612e1484612dda565b6129b7565b90508083825260208201905060208402830185811115612e3c57612e3b612bce565b5b835b81811015612e655780612e5188826127cc565b845260208401935050602081019050612e3e565b5050509392505050565b600082601f830112612e8457612e8361293c565b5b8135612e94848260208601612e06565b91505092915050565b60008060408385031215612eb457612eb3612779565b5b600083013567ffffffffffffffff811115612ed257612ed161277e565b5b612ede85828601612e6f565b925050602083013567ffffffffffffffff811115612eff57612efe61277e565b5b612f0b85828601612c3c565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f4a816127e1565b82525050565b6000612f5c8383612f41565b60208301905092915050565b6000602082019050919050565b6000612f8082612f15565b612f8a8185612f20565b9350612f9583612f31565b8060005b83811015612fc6578151612fad8882612f50565b9750612fb883612f68565b925050600181019050612f99565b5085935050505092915050565b60006020820190508181036000830152612fed8184612f75565b905092915050565b6000806000806080858703121561300f5761300e612779565b5b600061301d87828801612802565b945050602061302e87828801612802565b935050604061303f87828801612802565b925050606061305087828801612802565b91505092959194509250565b613065816127a3565b82525050565b6000602082019050613080600083018461305c565b92915050565b61308f81612906565b811461309a57600080fd5b50565b6000813590506130ac81613086565b92915050565b600080604083850312156130c9576130c8612779565b5b60006130d7858286016127cc565b92505060206130e88582860161309d565b9150509250929050565b6000806040838503121561310957613108612779565b5b6000613117858286016127cc565b9250506020613128858286016127cc565b9150509250929050565b600080600080600060a0868803121561314e5761314d612779565b5b600061315c888289016127cc565b955050602061316d888289016127cc565b945050604061317e88828901612802565b935050606061318f88828901612802565b925050608086013567ffffffffffffffff8111156131b0576131af61277e565b5b6131bc88828901612cdd565b9150509295509295909350565b6000602082840312156131df576131de612779565b5b60006131ed848285016127cc565b91505092915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613252602b83612ad6565b915061325d826131f6565b604082019050919050565b6000602082019050818103600083015261328181613245565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132be602083612ad6565b91506132c982613288565b602082019050919050565b600060208201905081810360008301526132ed816132b1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061333b57607f821691505b6020821081141561334f5761334e6132f4565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006133b1603283612ad6565b91506133bc82613355565b604082019050919050565b600060208201905081810360008301526133e0816133a4565b9050919050565b7f496e76616c69642073656e646572000000000000000000000000000000000000600082015250565b600061341d600e83612ad6565b9150613428826133e7565b602082019050919050565b6000602082019050818103600083015261344c81613410565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134bc826127e1565b91506134c7836127e1565b9250826134d7576134d6613453565b5b828204905092915050565b60006134ed826127e1565b91506134f8836127e1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561353157613530613482565b5b828202905092915050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613598602983612ad6565b91506135a38261353c565b604082019050919050565b600060208201905081810360008301526135c78161358b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613608826127e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561363b5761363a613482565b5b600182019050919050565b6000613651826127e1565b915061365c836127e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561369157613690613482565b5b828201905092915050565b7f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b60006136f8602483612ad6565b91506137038261369c565b604082019050919050565b60006020820190508181036000830152613727816136eb565b9050919050565b7f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e74726160008201527f6374732100000000000000000000000000000000000000000000000000000000602082015250565b600061378a602483612ad6565b91506137958261372e565b604082019050919050565b600060208201905081810360008301526137b98161377d565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b60006137f6601b83612ad6565b9150613801826137c0565b602082019050919050565b60006020820190508181036000830152613825816137e9565b9050919050565b7f4d617820706572207472616e73616374696f6e20726561636865642c2073616c60008201527f65206e6f7420616c6c6f77656400000000000000000000000000000000000000602082015250565b6000613888602d83612ad6565b91506138938261382c565b604082019050919050565b600060208201905081810360008301526138b78161387b565b9050919050565b7f4c696d6974207065722077616c6c65742072656163686564207769746820746860008201527f697320616d6f756e742c2073616c65206e6f7420616c6c6f7765640000000000602082015250565b600061391a603b83612ad6565b9150613925826138be565b604082019050919050565b600060208201905081810360008301526139498161390d565b9050919050565b600061395b826127e1565b9150613966836127e1565b92508282101561397957613978613482565b5b828203905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b60006139ba602083612ad6565b91506139c582613984565b602082019050919050565b600060208201905081810360008301526139e9816139ad565b9050919050565b7f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e0000600082015250565b6000613a26601e83612ad6565b9150613a31826139f0565b602082019050919050565b60006020820190508181036000830152613a5581613a19565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000613ab8602983612ad6565b9150613ac382613a5c565b604082019050919050565b60006020820190508181036000830152613ae781613aab565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b4a602683612ad6565b9150613b5582613aee565b604082019050919050565b60006020820190508181036000830152613b7981613b3d565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613bdc602883612ad6565b9150613be782613b80565b604082019050919050565b60006020820190508181036000830152613c0b81613bcf565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c6e602583612ad6565b9150613c7982613c12565b604082019050919050565b60006020820190508181036000830152613c9d81613c61565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613d00602a83612ad6565b9150613d0b82613ca4565b604082019050919050565b60006020820190508181036000830152613d2f81613cf3565b9050919050565b60006040820190508181036000830152613d508185612f75565b90508181036020830152613d648184612f75565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613dc9602183612ad6565b9150613dd482613d6d565b604082019050919050565b60006020820190508181036000830152613df881613dbc565b9050919050565b6000604082019050613e146000830185612857565b613e216020830184612857565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613e84602983612ad6565b9150613e8f82613e28565b604082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ee182613eba565b613eeb8185613ec5565b9350613efb818560208601612ae7565b613f0481612946565b840191505092915050565b600060a082019050613f24600083018861305c565b613f31602083018761305c565b8181036040830152613f438186612f75565b90508181036060830152613f578185612f75565b90508181036080830152613f6b8184613ed6565b90509695505050505050565b600081519050613f86816128ad565b92915050565b600060208284031215613fa257613fa1612779565b5b6000613fb084828501613f77565b91505092915050565b60008160e01c9050919050565b600060033d1115613fe55760046000803e613fe2600051613fb9565b90505b90565b600060443d1015613ff85761407b565b61400061276f565b60043d036004823e80513d602482011167ffffffffffffffff8211171561402857505061407b565b808201805167ffffffffffffffff811115614046575050505061407b565b80602083010160043d03850181111561406357505050505061407b565b61407282602001850186612986565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006140da603483612ad6565b91506140e58261407e565b604082019050919050565b60006020820190508181036000830152614109816140cd565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061416c602883612ad6565b915061417782614110565b604082019050919050565b6000602082019050818103600083015261419b8161415f565b9050919050565b600060a0820190506141b7600083018861305c565b6141c4602083018761305c565b6141d16040830186612857565b6141de6060830185612857565b81810360808301526141f08184613ed6565b9050969550505050505056fea26469706673582212205ff24d15016cc866b4dbb8c3470836ffc29191dbf8051da1ca629e413966d8aa64736f6c63430008090033

Deployed Bytecode Sourcemap

38790:2862:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23427:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22450:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39704:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39209:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23171:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38882:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25366:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41204:97;;;;;;;;;;;;;:::i;:::-;;40910:282;;;;;;;;;;;;;:::i;:::-;;38961:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38921:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23824:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37866:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40582:316;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41313:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2656:103;;;;;;;;;;;;;:::i;:::-;;39085:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2005:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39581:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24421:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39030:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37655:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39813:757;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38996:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39465:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24648:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38843:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24888:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2914:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39160:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23427:231;23513:7;23560:1;23541:21;;:7;:21;;;;23533:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;23628:9;:13;23638:2;23628:13;;;;;;;;;;;:22;23642:7;23628:22;;;;;;;;;;;;;;;;23621:29;;23427:231;;;;:::o;22450:310::-;22552:4;22604:26;22589:41;;;:11;:41;;;;:110;;;;22662:37;22647:52;;;:11;:52;;;;22589:110;:163;;;;22716:36;22740:11;22716:23;:36::i;:::-;22589:163;22569:183;;22450:310;;;:::o;39704:97::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39778:15:::1;39786:6;39778:7;:15::i;:::-;39704:97:::0;:::o;39209:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23171:105::-;23231:13;23264:4;23257:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23171:105;;;:::o;38882:32::-;;;;:::o;25366:442::-;25607:12;:10;:12::i;:::-;25599:20;;:4;:20;;;:60;;;;25623:36;25640:4;25646:12;:10;:12::i;:::-;25623:16;:36::i;:::-;25599:60;25577:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;25748:52;25771:4;25777:2;25781:3;25786:7;25795:4;25748:22;:52::i;:::-;25366:442;;;;;:::o;41204:97::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41281:12:::1;;;;;;;;;;;41280:13;41265:12;;:28;;;;;;;;;;;;;;;;;;41204:97::o:0;40910:282::-;40978:10;;;;;;;;;;;40964:24;;:10;:24;;;:49;;;;41006:7;:5;:7::i;:::-;40992:21;;:10;:21;;;40964:49;40956:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;41045:9;41087:2;41081:3;41057:21;:27;;;;:::i;:::-;:32;;;;:::i;:::-;41045:44;;41100:10;;;;;;;;;;;:19;;:25;41120:4;41100:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41144:7;:5;:7::i;:::-;41136:25;;:48;41162:21;41136:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40945:247;40910:282::o;38961:28::-;;;;:::o;38921:33::-;;;;:::o;23824:524::-;23980:16;24041:3;:10;24022:8;:15;:29;24014:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;24110:30;24157:8;:15;24143:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24110:63;;24191:9;24186:122;24210:8;:15;24206:1;:19;24186:122;;;24266:30;24276:8;24285:1;24276:11;;;;;;;;:::i;:::-;;;;;;;;24289:3;24293:1;24289:6;;;;;;;;:::i;:::-;;;;;;;;24266:9;:30::i;:::-;24247:13;24261:1;24247:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;24227:3;;;;:::i;:::-;;;24186:122;;;;24327:13;24320:20;;;23824:524;;;;:::o;37866:122::-;37923:4;37979:1;37947:29;37973:2;37947:25;:29::i;:::-;:33;37940:40;;37866:122;;;:::o;40582:316::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39076:2:::1;40705:6;40682:20;;:29;;;;:::i;:::-;:55;;40674:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;40791:36;40797:2;40801:13;;40816:6;40791:36;;;;;;;;;;;::::0;:5:::1;:36::i;:::-;40884:6;40861:20;;:29;;;;:::i;:::-;40838:20;:52;;;;40582:316:::0;;:::o;41313:336::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41475:14:::1;41459:13;:30;;;;41520:18;41500:17;:38;;;;41564:13;41549:12;:28;;;;41600:10;41588:9;:22;;;;41636:5;41621:12;;:20;;;;;;;;;;;;;;;;;;41313:336:::0;;;;:::o;2656:103::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2721:30:::1;2748:1;2721:18;:30::i;:::-;2656:103::o:0;39085:49::-;39117:17;39085:49;:::o;2005:87::-;2051:7;2078:6;;;;;;;;;;;2071:13;;2005:87;:::o;39581:111::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39678:6:::1;39661:14;:23;;;;;;;;;;;;:::i;:::-;;39581:111:::0;:::o;24421:155::-;24516:52;24535:12;:10;:12::i;:::-;24549:8;24559;24516:18;:52::i;:::-;24421:155;;:::o;39030:48::-;39076:2;39030:48;:::o;37655:113::-;37717:7;37744:12;:16;37757:2;37744:16;;;;;;;;;;;;37737:23;;37655:113;;;:::o;39813:757::-;39903:9;39889:23;;:10;:23;;;39881:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;39972:12;;;;;;;;;;;39964:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;40044:1;40035:6;:10;:41;;;;;40059:17;;40049:6;:27;;40035:41;40027:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;40194:12;;40184:6;40145:36;40155:10;40167:13;;40145:9;:36::i;:::-;:45;;;;:::i;:::-;:61;;40137:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;40366:20;;39076:2;40341:45;;;;:::i;:::-;40328:9;;:59;;;;:::i;:::-;40318:6;40289:26;40301:13;;40289:11;:26::i;:::-;:35;;;;:::i;:::-;:98;;40281:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;40464:6;39117:17;40456:14;;;;:::i;:::-;40443:9;:27;;40435:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;40518:44;40524:10;40536:13;;40551:6;40518:44;;;;;;;;;;;;:5;:44::i;:::-;39813:757;:::o;38996:27::-;;;;:::o;39465:104::-;39509:13;39547:14;39540:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39465:104;:::o;24648:168::-;24747:4;24771:18;:27;24790:7;24771:27;;;;;;;;;;;;;;;:37;24799:8;24771:37;;;;;;;;;;;;;;;;;;;;;;;;;24764:44;;24648:168;;;;:::o;38843:32::-;;;;;;;;;;;;;:::o;24888:401::-;25104:12;:10;:12::i;:::-;25096:20;;:4;:20;;;:60;;;;25120:36;25137:4;25143:12;:10;:12::i;:::-;25120:16;:36::i;:::-;25096:60;25074:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;25236:45;25254:4;25260:2;25264;25268:6;25276:4;25236:17;:45::i;:::-;24888:401;;;;;:::o;2914:201::-;2236:12;:10;:12::i;:::-;2225:23;;:7;:5;:7::i;:::-;:23;;;2217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3023:1:::1;3003:22;;:8;:22;;;;2995:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3079:28;3098:8;3079:18;:28::i;:::-;2914:201:::0;:::o;39160:36::-;;;;:::o;13758:157::-;13843:4;13882:25;13867:40;;;:11;:40;;;;13860:47;;13758:157;;;:::o;729:98::-;782:7;809:10;802:17;;729:98;:::o;29368:88::-;29442:6;29435:4;:13;;;;;;;;;;;;:::i;:::-;;29368:88;:::o;27450:1074::-;27677:7;:14;27663:3;:10;:28;27655:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;27769:1;27755:16;;:2;:16;;;;27747:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27826:16;27845:12;:10;:12::i;:::-;27826:31;;27870:60;27891:8;27901:4;27907:2;27911:3;27916:7;27925:4;27870:20;:60::i;:::-;27948:9;27943:421;27967:3;:10;27963:1;:14;27943:421;;;27999:10;28012:3;28016:1;28012:6;;;;;;;;:::i;:::-;;;;;;;;27999:19;;28033:14;28050:7;28058:1;28050:10;;;;;;;;:::i;:::-;;;;;;;;28033:27;;28077:19;28099:9;:13;28109:2;28099:13;;;;;;;;;;;:19;28113:4;28099:19;;;;;;;;;;;;;;;;28077:41;;28156:6;28141:11;:21;;28133:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28289:6;28275:11;:20;28253:9;:13;28263:2;28253:13;;;;;;;;;;;:19;28267:4;28253:19;;;;;;;;;;;;;;;:42;;;;28346:6;28325:9;:13;28335:2;28325:13;;;;;;;;;;;:17;28339:2;28325:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;27984:380;;;27979:3;;;;:::i;:::-;;;27943:421;;;;28411:2;28381:47;;28405:4;28381:47;;28395:8;28381:47;;;28415:3;28420:7;28381:47;;;;;;;:::i;:::-;;;;;;;;28441:75;28477:8;28487:4;28493:2;28497:3;28502:7;28511:4;28441:35;:75::i;:::-;27644:880;27450:1074;;;;;:::o;29842:569::-;30009:1;29995:16;;:2;:16;;;;29987:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30062:16;30081:12;:10;:12::i;:::-;30062:31;;30106:102;30127:8;30145:1;30149:2;30153:21;30171:2;30153:17;:21::i;:::-;30176:25;30194:6;30176:17;:25::i;:::-;30203:4;30106:20;:102::i;:::-;30242:6;30221:9;:13;30231:2;30221:13;;;;;;;;;;;:17;30235:2;30221:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;30301:2;30264:52;;30297:1;30264:52;;30279:8;30264:52;;;30305:2;30309:6;30264:52;;;;;;;:::i;:::-;;;;;;;;30329:74;30360:8;30378:1;30382:2;30386;30390:6;30398:4;30329:30;:74::i;:::-;29976:435;29842:569;;;;:::o;3275:191::-;3349:16;3368:6;;;;;;;;;;;3349:25;;3394:8;3385:6;;:17;;;;;;;;;;;;;;;;;;3449:8;3418:40;;3439:8;3418:40;;;;;;;;;;;;3338:128;3275:191;:::o;33636:331::-;33791:8;33782:17;;:5;:17;;;;33774:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33894:8;33856:18;:25;33875:5;33856:25;;;;;;;;;;;;;;;:35;33882:8;33856:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33940:8;33918:41;;33933:5;33918:41;;;33950:8;33918:41;;;;;;:::i;:::-;;;;;;;;33636:331;;;:::o;26272:820::-;26474:1;26460:16;;:2;:16;;;;26452:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;26531:16;26550:12;:10;:12::i;:::-;26531:31;;26575:96;26596:8;26606:4;26612:2;26616:21;26634:2;26616:17;:21::i;:::-;26639:25;26657:6;26639:17;:25::i;:::-;26666:4;26575:20;:96::i;:::-;26684:19;26706:9;:13;26716:2;26706:13;;;;;;;;;;;:19;26720:4;26706:19;;;;;;;;;;;;;;;;26684:41;;26759:6;26744:11;:21;;26736:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26884:6;26870:11;:20;26848:9;:13;26858:2;26848:13;;;;;;;;;;;:19;26862:4;26848:19;;;;;;;;;;;;;;;:42;;;;26933:6;26912:9;:13;26922:2;26912:13;;;;;;;;;;;:17;26926:2;26912:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;26988:2;26957:46;;26982:4;26957:46;;26972:8;26957:46;;;26992:2;26996:6;26957:46;;;;;;;:::i;:::-;;;;;;;;27016:68;27047:8;27057:4;27063:2;27067;27071:6;27079:4;27016:30;:68::i;:::-;26441:651;;26272:820;;;;;:::o;38063:655::-;38302:66;38329:8;38339:4;38345:2;38349:3;38354:7;38363:4;38302:26;:66::i;:::-;38401:1;38385:18;;:4;:18;;;38381:160;;;38425:9;38420:110;38444:3;:10;38440:1;:14;38420:110;;;38504:7;38512:1;38504:10;;;;;;;;:::i;:::-;;;;;;;;38480:12;:20;38493:3;38497:1;38493:6;;;;;;;;:::i;:::-;;;;;;;;38480:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;38456:3;;;;:::i;:::-;;;38420:110;;;;38381:160;38571:1;38557:16;;:2;:16;;;38553:158;;;38595:9;38590:110;38614:3;:10;38610:1;:14;38590:110;;;38674:7;38682:1;38674:10;;;;;;;;:::i;:::-;;;;;;;;38650:12;:20;38663:3;38667:1;38663:6;;;;;;;;:::i;:::-;;;;;;;;38650:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;38626:3;;;;:::i;:::-;;;38590:110;;;;38553:158;38063:655;;;;;;:::o;35904:813::-;36144:15;:2;:13;;;:15::i;:::-;36140:570;;;36197:2;36180:43;;;36224:8;36234:4;36240:3;36245:7;36254:4;36180:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36176:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;36572:6;36565:14;;;;;;;;;;;:::i;:::-;;;;;;;;36176:523;;;36621:62;;;;;;;;;;:::i;:::-;;;;;;;;36176:523;36353:48;;;36341:60;;;:8;:60;;;;36337:159;;36426:50;;;;;;;;;;:::i;:::-;;;;;;;;36337:159;36260:251;36140:570;35904:813;;;;;;:::o;36725:198::-;36791:16;36820:22;36859:1;36845:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36820:41;;36883:7;36872:5;36878:1;36872:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;36910:5;36903:12;;;36725:198;;;:::o;35152:744::-;35367:15;:2;:13;;;:15::i;:::-;35363:526;;;35420:2;35403:38;;;35442:8;35452:4;35458:2;35462:6;35470:4;35403:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35399:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;35751:6;35744:14;;;;;;;;;;;:::i;:::-;;;;;;;;35399:479;;;35800:62;;;;;;;;;;:::i;:::-;;;;;;;;35399:479;35537:43;;;35525:55;;;:8;:55;;;;35521:154;;35605:50;;;;;;;;;;:::i;:::-;;;;;;;;35521:154;35476:214;35363:526;35152:744;;;;;;:::o;34923:221::-;;;;;;;:::o;4706:326::-;4766:4;5023:1;5001:7;:19;;;:23;4994:30;;4706:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:77::-;878:7;907:5;896:16;;841:77;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:118::-;1764:24;1782:5;1764:24;:::i;:::-;1759:3;1752:37;1677:118;;:::o;1801:222::-;1894:4;1932:2;1921:9;1917:18;1909:26;;1945:71;2013:1;2002:9;1998:17;1989:6;1945:71;:::i;:::-;1801:222;;;;:::o;2029:149::-;2065:7;2105:66;2098:5;2094:78;2083:89;;2029:149;;;:::o;2184:120::-;2256:23;2273:5;2256:23;:::i;:::-;2249:5;2246:34;2236:62;;2294:1;2291;2284:12;2236:62;2184:120;:::o;2310:137::-;2355:5;2393:6;2380:20;2371:29;;2409:32;2435:5;2409:32;:::i;:::-;2310:137;;;;:::o;2453:327::-;2511:6;2560:2;2548:9;2539:7;2535:23;2531:32;2528:119;;;2566:79;;:::i;:::-;2528:119;2686:1;2711:52;2755:7;2746:6;2735:9;2731:22;2711:52;:::i;:::-;2701:62;;2657:116;2453:327;;;;:::o;2786:90::-;2820:7;2863:5;2856:13;2849:21;2838:32;;2786:90;;;:::o;2882:109::-;2963:21;2978:5;2963:21;:::i;:::-;2958:3;2951:34;2882:109;;:::o;2997:210::-;3084:4;3122:2;3111:9;3107:18;3099:26;;3135:65;3197:1;3186:9;3182:17;3173:6;3135:65;:::i;:::-;2997:210;;;;:::o;3213:117::-;3322:1;3319;3312:12;3336:117;3445:1;3442;3435:12;3459:102;3500:6;3551:2;3547:7;3542:2;3535:5;3531:14;3527:28;3517:38;;3459:102;;;:::o;3567:180::-;3615:77;3612:1;3605:88;3712:4;3709:1;3702:15;3736:4;3733:1;3726:15;3753:281;3836:27;3858:4;3836:27;:::i;:::-;3828:6;3824:40;3966:6;3954:10;3951:22;3930:18;3918:10;3915:34;3912:62;3909:88;;;3977:18;;:::i;:::-;3909:88;4017:10;4013:2;4006:22;3796:238;3753:281;;:::o;4040:129::-;4074:6;4101:20;;:::i;:::-;4091:30;;4130:33;4158:4;4150:6;4130:33;:::i;:::-;4040:129;;;:::o;4175:308::-;4237:4;4327:18;4319:6;4316:30;4313:56;;;4349:18;;:::i;:::-;4313:56;4387:29;4409:6;4387:29;:::i;:::-;4379:37;;4471:4;4465;4461:15;4453:23;;4175:308;;;:::o;4489:154::-;4573:6;4568:3;4563;4550:30;4635:1;4626:6;4621:3;4617:16;4610:27;4489:154;;;:::o;4649:412::-;4727:5;4752:66;4768:49;4810:6;4768:49;:::i;:::-;4752:66;:::i;:::-;4743:75;;4841:6;4834:5;4827:21;4879:4;4872:5;4868:16;4917:3;4908:6;4903:3;4899:16;4896:25;4893:112;;;4924:79;;:::i;:::-;4893:112;5014:41;5048:6;5043:3;5038;5014:41;:::i;:::-;4733:328;4649:412;;;;;:::o;5081:340::-;5137:5;5186:3;5179:4;5171:6;5167:17;5163:27;5153:122;;5194:79;;:::i;:::-;5153:122;5311:6;5298:20;5336:79;5411:3;5403:6;5396:4;5388:6;5384:17;5336:79;:::i;:::-;5327:88;;5143:278;5081:340;;;;:::o;5427:509::-;5496:6;5545:2;5533:9;5524:7;5520:23;5516:32;5513:119;;;5551:79;;:::i;:::-;5513:119;5699:1;5688:9;5684:17;5671:31;5729:18;5721:6;5718:30;5715:117;;;5751:79;;:::i;:::-;5715:117;5856:63;5911:7;5902:6;5891:9;5887:22;5856:63;:::i;:::-;5846:73;;5642:287;5427:509;;;;:::o;5942:99::-;5994:6;6028:5;6022:12;6012:22;;5942:99;;;:::o;6047:169::-;6131:11;6165:6;6160:3;6153:19;6205:4;6200:3;6196:14;6181:29;;6047:169;;;;:::o;6222:307::-;6290:1;6300:113;6314:6;6311:1;6308:13;6300:113;;;6399:1;6394:3;6390:11;6384:18;6380:1;6375:3;6371:11;6364:39;6336:2;6333:1;6329:10;6324:15;;6300:113;;;6431:6;6428:1;6425:13;6422:101;;;6511:1;6502:6;6497:3;6493:16;6486:27;6422:101;6271:258;6222:307;;;:::o;6535:364::-;6623:3;6651:39;6684:5;6651:39;:::i;:::-;6706:71;6770:6;6765:3;6706:71;:::i;:::-;6699:78;;6786:52;6831:6;6826:3;6819:4;6812:5;6808:16;6786:52;:::i;:::-;6863:29;6885:6;6863:29;:::i;:::-;6858:3;6854:39;6847:46;;6627:272;6535:364;;;;:::o;6905:313::-;7018:4;7056:2;7045:9;7041:18;7033:26;;7105:9;7099:4;7095:20;7091:1;7080:9;7076:17;7069:47;7133:78;7206:4;7197:6;7133:78;:::i;:::-;7125:86;;6905:313;;;;:::o;7224:329::-;7283:6;7332:2;7320:9;7311:7;7307:23;7303:32;7300:119;;;7338:79;;:::i;:::-;7300:119;7458:1;7483:53;7528:7;7519:6;7508:9;7504:22;7483:53;:::i;:::-;7473:63;;7429:117;7224:329;;;;:::o;7559:311::-;7636:4;7726:18;7718:6;7715:30;7712:56;;;7748:18;;:::i;:::-;7712:56;7798:4;7790:6;7786:17;7778:25;;7858:4;7852;7848:15;7840:23;;7559:311;;;:::o;7876:117::-;7985:1;7982;7975:12;8016:710;8112:5;8137:81;8153:64;8210:6;8153:64;:::i;:::-;8137:81;:::i;:::-;8128:90;;8238:5;8267:6;8260:5;8253:21;8301:4;8294:5;8290:16;8283:23;;8354:4;8346:6;8342:17;8334:6;8330:30;8383:3;8375:6;8372:15;8369:122;;;8402:79;;:::i;:::-;8369:122;8517:6;8500:220;8534:6;8529:3;8526:15;8500:220;;;8609:3;8638:37;8671:3;8659:10;8638:37;:::i;:::-;8633:3;8626:50;8705:4;8700:3;8696:14;8689:21;;8576:144;8560:4;8555:3;8551:14;8544:21;;8500:220;;;8504:21;8118:608;;8016:710;;;;;:::o;8749:370::-;8820:5;8869:3;8862:4;8854:6;8850:17;8846:27;8836:122;;8877:79;;:::i;:::-;8836:122;8994:6;8981:20;9019:94;9109:3;9101:6;9094:4;9086:6;9082:17;9019:94;:::i;:::-;9010:103;;8826:293;8749:370;;;;:::o;9125:307::-;9186:4;9276:18;9268:6;9265:30;9262:56;;;9298:18;;:::i;:::-;9262:56;9336:29;9358:6;9336:29;:::i;:::-;9328:37;;9420:4;9414;9410:15;9402:23;;9125:307;;;:::o;9438:410::-;9515:5;9540:65;9556:48;9597:6;9556:48;:::i;:::-;9540:65;:::i;:::-;9531:74;;9628:6;9621:5;9614:21;9666:4;9659:5;9655:16;9704:3;9695:6;9690:3;9686:16;9683:25;9680:112;;;9711:79;;:::i;:::-;9680:112;9801:41;9835:6;9830:3;9825;9801:41;:::i;:::-;9521:327;9438:410;;;;;:::o;9867:338::-;9922:5;9971:3;9964:4;9956:6;9952:17;9948:27;9938:122;;9979:79;;:::i;:::-;9938:122;10096:6;10083:20;10121:78;10195:3;10187:6;10180:4;10172:6;10168:17;10121:78;:::i;:::-;10112:87;;9928:277;9867:338;;;;:::o;10211:1509::-;10365:6;10373;10381;10389;10397;10446:3;10434:9;10425:7;10421:23;10417:33;10414:120;;;10453:79;;:::i;:::-;10414:120;10573:1;10598:53;10643:7;10634:6;10623:9;10619:22;10598:53;:::i;:::-;10588:63;;10544:117;10700:2;10726:53;10771:7;10762:6;10751:9;10747:22;10726:53;:::i;:::-;10716:63;;10671:118;10856:2;10845:9;10841:18;10828:32;10887:18;10879:6;10876:30;10873:117;;;10909:79;;:::i;:::-;10873:117;11014:78;11084:7;11075:6;11064:9;11060:22;11014:78;:::i;:::-;11004:88;;10799:303;11169:2;11158:9;11154:18;11141:32;11200:18;11192:6;11189:30;11186:117;;;11222:79;;:::i;:::-;11186:117;11327:78;11397:7;11388:6;11377:9;11373:22;11327:78;:::i;:::-;11317:88;;11112:303;11482:3;11471:9;11467:19;11454:33;11514:18;11506:6;11503:30;11500:117;;;11536:79;;:::i;:::-;11500:117;11641:62;11695:7;11686:6;11675:9;11671:22;11641:62;:::i;:::-;11631:72;;11425:288;10211:1509;;;;;;;;:::o;11726:311::-;11803:4;11893:18;11885:6;11882:30;11879:56;;;11915:18;;:::i;:::-;11879:56;11965:4;11957:6;11953:17;11945:25;;12025:4;12019;12015:15;12007:23;;11726:311;;;:::o;12060:710::-;12156:5;12181:81;12197:64;12254:6;12197:64;:::i;:::-;12181:81;:::i;:::-;12172:90;;12282:5;12311:6;12304:5;12297:21;12345:4;12338:5;12334:16;12327:23;;12398:4;12390:6;12386:17;12378:6;12374:30;12427:3;12419:6;12416:15;12413:122;;;12446:79;;:::i;:::-;12413:122;12561:6;12544:220;12578:6;12573:3;12570:15;12544:220;;;12653:3;12682:37;12715:3;12703:10;12682:37;:::i;:::-;12677:3;12670:50;12749:4;12744:3;12740:14;12733:21;;12620:144;12604:4;12599:3;12595:14;12588:21;;12544:220;;;12548:21;12162:608;;12060:710;;;;;:::o;12793:370::-;12864:5;12913:3;12906:4;12898:6;12894:17;12890:27;12880:122;;12921:79;;:::i;:::-;12880:122;13038:6;13025:20;13063:94;13153:3;13145:6;13138:4;13130:6;13126:17;13063:94;:::i;:::-;13054:103;;12870:293;12793:370;;;;:::o;13169:894::-;13287:6;13295;13344:2;13332:9;13323:7;13319:23;13315:32;13312:119;;;13350:79;;:::i;:::-;13312:119;13498:1;13487:9;13483:17;13470:31;13528:18;13520:6;13517:30;13514:117;;;13550:79;;:::i;:::-;13514:117;13655:78;13725:7;13716:6;13705:9;13701:22;13655:78;:::i;:::-;13645:88;;13441:302;13810:2;13799:9;13795:18;13782:32;13841:18;13833:6;13830:30;13827:117;;;13863:79;;:::i;:::-;13827:117;13968:78;14038:7;14029:6;14018:9;14014:22;13968:78;:::i;:::-;13958:88;;13753:303;13169:894;;;;;:::o;14069:114::-;14136:6;14170:5;14164:12;14154:22;;14069:114;;;:::o;14189:184::-;14288:11;14322:6;14317:3;14310:19;14362:4;14357:3;14353:14;14338:29;;14189:184;;;;:::o;14379:132::-;14446:4;14469:3;14461:11;;14499:4;14494:3;14490:14;14482:22;;14379:132;;;:::o;14517:108::-;14594:24;14612:5;14594:24;:::i;:::-;14589:3;14582:37;14517:108;;:::o;14631:179::-;14700:10;14721:46;14763:3;14755:6;14721:46;:::i;:::-;14799:4;14794:3;14790:14;14776:28;;14631:179;;;;:::o;14816:113::-;14886:4;14918;14913:3;14909:14;14901:22;;14816:113;;;:::o;14965:732::-;15084:3;15113:54;15161:5;15113:54;:::i;:::-;15183:86;15262:6;15257:3;15183:86;:::i;:::-;15176:93;;15293:56;15343:5;15293:56;:::i;:::-;15372:7;15403:1;15388:284;15413:6;15410:1;15407:13;15388:284;;;15489:6;15483:13;15516:63;15575:3;15560:13;15516:63;:::i;:::-;15509:70;;15602:60;15655:6;15602:60;:::i;:::-;15592:70;;15448:224;15435:1;15432;15428:9;15423:14;;15388:284;;;15392:14;15688:3;15681:10;;15089:608;;;14965:732;;;;:::o;15703:373::-;15846:4;15884:2;15873:9;15869:18;15861:26;;15933:9;15927:4;15923:20;15919:1;15908:9;15904:17;15897:47;15961:108;16064:4;16055:6;15961:108;:::i;:::-;15953:116;;15703:373;;;;:::o;16082:765::-;16168:6;16176;16184;16192;16241:3;16229:9;16220:7;16216:23;16212:33;16209:120;;;16248:79;;:::i;:::-;16209:120;16368:1;16393:53;16438:7;16429:6;16418:9;16414:22;16393:53;:::i;:::-;16383:63;;16339:117;16495:2;16521:53;16566:7;16557:6;16546:9;16542:22;16521:53;:::i;:::-;16511:63;;16466:118;16623:2;16649:53;16694:7;16685:6;16674:9;16670:22;16649:53;:::i;:::-;16639:63;;16594:118;16751:2;16777:53;16822:7;16813:6;16802:9;16798:22;16777:53;:::i;:::-;16767:63;;16722:118;16082:765;;;;;;;:::o;16853:118::-;16940:24;16958:5;16940:24;:::i;:::-;16935:3;16928:37;16853:118;;:::o;16977:222::-;17070:4;17108:2;17097:9;17093:18;17085:26;;17121:71;17189:1;17178:9;17174:17;17165:6;17121:71;:::i;:::-;16977:222;;;;:::o;17205:116::-;17275:21;17290:5;17275:21;:::i;:::-;17268:5;17265:32;17255:60;;17311:1;17308;17301:12;17255:60;17205:116;:::o;17327:133::-;17370:5;17408:6;17395:20;17386:29;;17424:30;17448:5;17424:30;:::i;:::-;17327:133;;;;:::o;17466:468::-;17531:6;17539;17588:2;17576:9;17567:7;17563:23;17559:32;17556:119;;;17594:79;;:::i;:::-;17556:119;17714:1;17739:53;17784:7;17775:6;17764:9;17760:22;17739:53;:::i;:::-;17729:63;;17685:117;17841:2;17867:50;17909:7;17900:6;17889:9;17885:22;17867:50;:::i;:::-;17857:60;;17812:115;17466:468;;;;;:::o;17940:474::-;18008:6;18016;18065:2;18053:9;18044:7;18040:23;18036:32;18033:119;;;18071:79;;:::i;:::-;18033:119;18191:1;18216:53;18261:7;18252:6;18241:9;18237:22;18216:53;:::i;:::-;18206:63;;18162:117;18318:2;18344:53;18389:7;18380:6;18369:9;18365:22;18344:53;:::i;:::-;18334:63;;18289:118;17940:474;;;;;:::o;18420:1089::-;18524:6;18532;18540;18548;18556;18605:3;18593:9;18584:7;18580:23;18576:33;18573:120;;;18612:79;;:::i;:::-;18573:120;18732:1;18757:53;18802:7;18793:6;18782:9;18778:22;18757:53;:::i;:::-;18747:63;;18703:117;18859:2;18885:53;18930:7;18921:6;18910:9;18906:22;18885:53;:::i;:::-;18875:63;;18830:118;18987:2;19013:53;19058:7;19049:6;19038:9;19034:22;19013:53;:::i;:::-;19003:63;;18958:118;19115:2;19141:53;19186:7;19177:6;19166:9;19162:22;19141:53;:::i;:::-;19131:63;;19086:118;19271:3;19260:9;19256:19;19243:33;19303:18;19295:6;19292:30;19289:117;;;19325:79;;:::i;:::-;19289:117;19430:62;19484:7;19475:6;19464:9;19460:22;19430:62;:::i;:::-;19420:72;;19214:288;18420:1089;;;;;;;;:::o;19515:329::-;19574:6;19623:2;19611:9;19602:7;19598:23;19594:32;19591:119;;;19629:79;;:::i;:::-;19591:119;19749:1;19774:53;19819:7;19810:6;19799:9;19795:22;19774:53;:::i;:::-;19764:63;;19720:117;19515:329;;;;:::o;19850:230::-;19990:34;19986:1;19978:6;19974:14;19967:58;20059:13;20054:2;20046:6;20042:15;20035:38;19850:230;:::o;20086:366::-;20228:3;20249:67;20313:2;20308:3;20249:67;:::i;:::-;20242:74;;20325:93;20414:3;20325:93;:::i;:::-;20443:2;20438:3;20434:12;20427:19;;20086:366;;;:::o;20458:419::-;20624:4;20662:2;20651:9;20647:18;20639:26;;20711:9;20705:4;20701:20;20697:1;20686:9;20682:17;20675:47;20739:131;20865:4;20739:131;:::i;:::-;20731:139;;20458:419;;;:::o;20883:182::-;21023:34;21019:1;21011:6;21007:14;21000:58;20883:182;:::o;21071:366::-;21213:3;21234:67;21298:2;21293:3;21234:67;:::i;:::-;21227:74;;21310:93;21399:3;21310:93;:::i;:::-;21428:2;21423:3;21419:12;21412:19;;21071:366;;;:::o;21443:419::-;21609:4;21647:2;21636:9;21632:18;21624:26;;21696:9;21690:4;21686:20;21682:1;21671:9;21667:17;21660:47;21724:131;21850:4;21724:131;:::i;:::-;21716:139;;21443:419;;;:::o;21868:180::-;21916:77;21913:1;21906:88;22013:4;22010:1;22003:15;22037:4;22034:1;22027:15;22054:320;22098:6;22135:1;22129:4;22125:12;22115:22;;22182:1;22176:4;22172:12;22203:18;22193:81;;22259:4;22251:6;22247:17;22237:27;;22193:81;22321:2;22313:6;22310:14;22290:18;22287:38;22284:84;;;22340:18;;:::i;:::-;22284:84;22105:269;22054:320;;;:::o;22380:237::-;22520:34;22516:1;22508:6;22504:14;22497:58;22589:20;22584:2;22576:6;22572:15;22565:45;22380:237;:::o;22623:366::-;22765:3;22786:67;22850:2;22845:3;22786:67;:::i;:::-;22779:74;;22862:93;22951:3;22862:93;:::i;:::-;22980:2;22975:3;22971:12;22964:19;;22623:366;;;:::o;22995:419::-;23161:4;23199:2;23188:9;23184:18;23176:26;;23248:9;23242:4;23238:20;23234:1;23223:9;23219:17;23212:47;23276:131;23402:4;23276:131;:::i;:::-;23268:139;;22995:419;;;:::o;23420:164::-;23560:16;23556:1;23548:6;23544:14;23537:40;23420:164;:::o;23590:366::-;23732:3;23753:67;23817:2;23812:3;23753:67;:::i;:::-;23746:74;;23829:93;23918:3;23829:93;:::i;:::-;23947:2;23942:3;23938:12;23931:19;;23590:366;;;:::o;23962:419::-;24128:4;24166:2;24155:9;24151:18;24143:26;;24215:9;24209:4;24205:20;24201:1;24190:9;24186:17;24179:47;24243:131;24369:4;24243:131;:::i;:::-;24235:139;;23962:419;;;:::o;24387:180::-;24435:77;24432:1;24425:88;24532:4;24529:1;24522:15;24556:4;24553:1;24546:15;24573:180;24621:77;24618:1;24611:88;24718:4;24715:1;24708:15;24742:4;24739:1;24732:15;24759:185;24799:1;24816:20;24834:1;24816:20;:::i;:::-;24811:25;;24850:20;24868:1;24850:20;:::i;:::-;24845:25;;24889:1;24879:35;;24894:18;;:::i;:::-;24879:35;24936:1;24933;24929:9;24924:14;;24759:185;;;;:::o;24950:348::-;24990:7;25013:20;25031:1;25013:20;:::i;:::-;25008:25;;25047:20;25065:1;25047:20;:::i;:::-;25042:25;;25235:1;25167:66;25163:74;25160:1;25157:81;25152:1;25145:9;25138:17;25134:105;25131:131;;;25242:18;;:::i;:::-;25131:131;25290:1;25287;25283:9;25272:20;;24950:348;;;;:::o;25304:228::-;25444:34;25440:1;25432:6;25428:14;25421:58;25513:11;25508:2;25500:6;25496:15;25489:36;25304:228;:::o;25538:366::-;25680:3;25701:67;25765:2;25760:3;25701:67;:::i;:::-;25694:74;;25777:93;25866:3;25777:93;:::i;:::-;25895:2;25890:3;25886:12;25879:19;;25538:366;;;:::o;25910:419::-;26076:4;26114:2;26103:9;26099:18;26091:26;;26163:9;26157:4;26153:20;26149:1;26138:9;26134:17;26127:47;26191:131;26317:4;26191:131;:::i;:::-;26183:139;;25910:419;;;:::o;26335:180::-;26383:77;26380:1;26373:88;26480:4;26477:1;26470:15;26504:4;26501:1;26494:15;26521:233;26560:3;26583:24;26601:5;26583:24;:::i;:::-;26574:33;;26629:66;26622:5;26619:77;26616:103;;;26699:18;;:::i;:::-;26616:103;26746:1;26739:5;26735:13;26728:20;;26521:233;;;:::o;26760:305::-;26800:3;26819:20;26837:1;26819:20;:::i;:::-;26814:25;;26853:20;26871:1;26853:20;:::i;:::-;26848:25;;27007:1;26939:66;26935:74;26932:1;26929:81;26926:107;;;27013:18;;:::i;:::-;26926:107;27057:1;27054;27050:9;27043:16;;26760:305;;;;:::o;27071:223::-;27211:34;27207:1;27199:6;27195:14;27188:58;27280:6;27275:2;27267:6;27263:15;27256:31;27071:223;:::o;27300:366::-;27442:3;27463:67;27527:2;27522:3;27463:67;:::i;:::-;27456:74;;27539:93;27628:3;27539:93;:::i;:::-;27657:2;27652:3;27648:12;27641:19;;27300:366;;;:::o;27672:419::-;27838:4;27876:2;27865:9;27861:18;27853:26;;27925:9;27919:4;27915:20;27911:1;27900:9;27896:17;27889:47;27953:131;28079:4;27953:131;:::i;:::-;27945:139;;27672:419;;;:::o;28097:223::-;28237:34;28233:1;28225:6;28221:14;28214:58;28306:6;28301:2;28293:6;28289:15;28282:31;28097:223;:::o;28326:366::-;28468:3;28489:67;28553:2;28548:3;28489:67;:::i;:::-;28482:74;;28565:93;28654:3;28565:93;:::i;:::-;28683:2;28678:3;28674:12;28667:19;;28326:366;;;:::o;28698:419::-;28864:4;28902:2;28891:9;28887:18;28879:26;;28951:9;28945:4;28941:20;28937:1;28926:9;28922:17;28915:47;28979:131;29105:4;28979:131;:::i;:::-;28971:139;;28698:419;;;:::o;29123:177::-;29263:29;29259:1;29251:6;29247:14;29240:53;29123:177;:::o;29306:366::-;29448:3;29469:67;29533:2;29528:3;29469:67;:::i;:::-;29462:74;;29545:93;29634:3;29545:93;:::i;:::-;29663:2;29658:3;29654:12;29647:19;;29306:366;;;:::o;29678:419::-;29844:4;29882:2;29871:9;29867:18;29859:26;;29931:9;29925:4;29921:20;29917:1;29906:9;29902:17;29895:47;29959:131;30085:4;29959:131;:::i;:::-;29951:139;;29678:419;;;:::o;30103:232::-;30243:34;30239:1;30231:6;30227:14;30220:58;30312:15;30307:2;30299:6;30295:15;30288:40;30103:232;:::o;30341:366::-;30483:3;30504:67;30568:2;30563:3;30504:67;:::i;:::-;30497:74;;30580:93;30669:3;30580:93;:::i;:::-;30698:2;30693:3;30689:12;30682:19;;30341:366;;;:::o;30713:419::-;30879:4;30917:2;30906:9;30902:18;30894:26;;30966:9;30960:4;30956:20;30952:1;30941:9;30937:17;30930:47;30994:131;31120:4;30994:131;:::i;:::-;30986:139;;30713:419;;;:::o;31138:246::-;31278:34;31274:1;31266:6;31262:14;31255:58;31347:29;31342:2;31334:6;31330:15;31323:54;31138:246;:::o;31390:366::-;31532:3;31553:67;31617:2;31612:3;31553:67;:::i;:::-;31546:74;;31629:93;31718:3;31629:93;:::i;:::-;31747:2;31742:3;31738:12;31731:19;;31390:366;;;:::o;31762:419::-;31928:4;31966:2;31955:9;31951:18;31943:26;;32015:9;32009:4;32005:20;32001:1;31990:9;31986:17;31979:47;32043:131;32169:4;32043:131;:::i;:::-;32035:139;;31762:419;;;:::o;32187:191::-;32227:4;32247:20;32265:1;32247:20;:::i;:::-;32242:25;;32281:20;32299:1;32281:20;:::i;:::-;32276:25;;32320:1;32317;32314:8;32311:34;;;32325:18;;:::i;:::-;32311:34;32370:1;32367;32363:9;32355:17;;32187:191;;;;:::o;32384:182::-;32524:34;32520:1;32512:6;32508:14;32501:58;32384:182;:::o;32572:366::-;32714:3;32735:67;32799:2;32794:3;32735:67;:::i;:::-;32728:74;;32811:93;32900:3;32811:93;:::i;:::-;32929:2;32924:3;32920:12;32913:19;;32572:366;;;:::o;32944:419::-;33110:4;33148:2;33137:9;33133:18;33125:26;;33197:9;33191:4;33187:20;33183:1;33172:9;33168:17;33161:47;33225:131;33351:4;33225:131;:::i;:::-;33217:139;;32944:419;;;:::o;33369:180::-;33509:32;33505:1;33497:6;33493:14;33486:56;33369:180;:::o;33555:366::-;33697:3;33718:67;33782:2;33777:3;33718:67;:::i;:::-;33711:74;;33794:93;33883:3;33794:93;:::i;:::-;33912:2;33907:3;33903:12;33896:19;;33555:366;;;:::o;33927:419::-;34093:4;34131:2;34120:9;34116:18;34108:26;;34180:9;34174:4;34170:20;34166:1;34155:9;34151:17;34144:47;34208:131;34334:4;34208:131;:::i;:::-;34200:139;;33927:419;;;:::o;34352:228::-;34492:34;34488:1;34480:6;34476:14;34469:58;34561:11;34556:2;34548:6;34544:15;34537:36;34352:228;:::o;34586:366::-;34728:3;34749:67;34813:2;34808:3;34749:67;:::i;:::-;34742:74;;34825:93;34914:3;34825:93;:::i;:::-;34943:2;34938:3;34934:12;34927:19;;34586:366;;;:::o;34958:419::-;35124:4;35162:2;35151:9;35147:18;35139:26;;35211:9;35205:4;35201:20;35197:1;35186:9;35182:17;35175:47;35239:131;35365:4;35239:131;:::i;:::-;35231:139;;34958:419;;;:::o;35383:225::-;35523:34;35519:1;35511:6;35507:14;35500:58;35592:8;35587:2;35579:6;35575:15;35568:33;35383:225;:::o;35614:366::-;35756:3;35777:67;35841:2;35836:3;35777:67;:::i;:::-;35770:74;;35853:93;35942:3;35853:93;:::i;:::-;35971:2;35966:3;35962:12;35955:19;;35614:366;;;:::o;35986:419::-;36152:4;36190:2;36179:9;36175:18;36167:26;;36239:9;36233:4;36229:20;36225:1;36214:9;36210:17;36203:47;36267:131;36393:4;36267:131;:::i;:::-;36259:139;;35986:419;;;:::o;36411:227::-;36551:34;36547:1;36539:6;36535:14;36528:58;36620:10;36615:2;36607:6;36603:15;36596:35;36411:227;:::o;36644:366::-;36786:3;36807:67;36871:2;36866:3;36807:67;:::i;:::-;36800:74;;36883:93;36972:3;36883:93;:::i;:::-;37001:2;36996:3;36992:12;36985:19;;36644:366;;;:::o;37016:419::-;37182:4;37220:2;37209:9;37205:18;37197:26;;37269:9;37263:4;37259:20;37255:1;37244:9;37240:17;37233:47;37297:131;37423:4;37297:131;:::i;:::-;37289:139;;37016:419;;;:::o;37441:224::-;37581:34;37577:1;37569:6;37565:14;37558:58;37650:7;37645:2;37637:6;37633:15;37626:32;37441:224;:::o;37671:366::-;37813:3;37834:67;37898:2;37893:3;37834:67;:::i;:::-;37827:74;;37910:93;37999:3;37910:93;:::i;:::-;38028:2;38023:3;38019:12;38012:19;;37671:366;;;:::o;38043:419::-;38209:4;38247:2;38236:9;38232:18;38224:26;;38296:9;38290:4;38286:20;38282:1;38271:9;38267:17;38260:47;38324:131;38450:4;38324:131;:::i;:::-;38316:139;;38043:419;;;:::o;38468:229::-;38608:34;38604:1;38596:6;38592:14;38585:58;38677:12;38672:2;38664:6;38660:15;38653:37;38468:229;:::o;38703:366::-;38845:3;38866:67;38930:2;38925:3;38866:67;:::i;:::-;38859:74;;38942:93;39031:3;38942:93;:::i;:::-;39060:2;39055:3;39051:12;39044:19;;38703:366;;;:::o;39075:419::-;39241:4;39279:2;39268:9;39264:18;39256:26;;39328:9;39322:4;39318:20;39314:1;39303:9;39299:17;39292:47;39356:131;39482:4;39356:131;:::i;:::-;39348:139;;39075:419;;;:::o;39500:634::-;39721:4;39759:2;39748:9;39744:18;39736:26;;39808:9;39802:4;39798:20;39794:1;39783:9;39779:17;39772:47;39836:108;39939:4;39930:6;39836:108;:::i;:::-;39828:116;;39991:9;39985:4;39981:20;39976:2;39965:9;39961:18;39954:48;40019:108;40122:4;40113:6;40019:108;:::i;:::-;40011:116;;39500:634;;;;;:::o;40140:220::-;40280:34;40276:1;40268:6;40264:14;40257:58;40349:3;40344:2;40336:6;40332:15;40325:28;40140:220;:::o;40366:366::-;40508:3;40529:67;40593:2;40588:3;40529:67;:::i;:::-;40522:74;;40605:93;40694:3;40605:93;:::i;:::-;40723:2;40718:3;40714:12;40707:19;;40366:366;;;:::o;40738:419::-;40904:4;40942:2;40931:9;40927:18;40919:26;;40991:9;40985:4;40981:20;40977:1;40966:9;40962:17;40955:47;41019:131;41145:4;41019:131;:::i;:::-;41011:139;;40738:419;;;:::o;41163:332::-;41284:4;41322:2;41311:9;41307:18;41299:26;;41335:71;41403:1;41392:9;41388:17;41379:6;41335:71;:::i;:::-;41416:72;41484:2;41473:9;41469:18;41460:6;41416:72;:::i;:::-;41163:332;;;;;:::o;41501:228::-;41641:34;41637:1;41629:6;41625:14;41618:58;41710:11;41705:2;41697:6;41693:15;41686:36;41501:228;:::o;41735:366::-;41877:3;41898:67;41962:2;41957:3;41898:67;:::i;:::-;41891:74;;41974:93;42063:3;41974:93;:::i;:::-;42092:2;42087:3;42083:12;42076:19;;41735:366;;;:::o;42107:419::-;42273:4;42311:2;42300:9;42296:18;42288:26;;42360:9;42354:4;42350:20;42346:1;42335:9;42331:17;42324:47;42388:131;42514:4;42388:131;:::i;:::-;42380:139;;42107:419;;;:::o;42532:98::-;42583:6;42617:5;42611:12;42601:22;;42532:98;;;:::o;42636:168::-;42719:11;42753:6;42748:3;42741:19;42793:4;42788:3;42784:14;42769:29;;42636:168;;;;:::o;42810:360::-;42896:3;42924:38;42956:5;42924:38;:::i;:::-;42978:70;43041:6;43036:3;42978:70;:::i;:::-;42971:77;;43057:52;43102:6;43097:3;43090:4;43083:5;43079:16;43057:52;:::i;:::-;43134:29;43156:6;43134:29;:::i;:::-;43129:3;43125:39;43118:46;;42900:270;42810:360;;;;:::o;43176:1053::-;43499:4;43537:3;43526:9;43522:19;43514:27;;43551:71;43619:1;43608:9;43604:17;43595:6;43551:71;:::i;:::-;43632:72;43700:2;43689:9;43685:18;43676:6;43632:72;:::i;:::-;43751:9;43745:4;43741:20;43736:2;43725:9;43721:18;43714:48;43779:108;43882:4;43873:6;43779:108;:::i;:::-;43771:116;;43934:9;43928:4;43924:20;43919:2;43908:9;43904:18;43897:48;43962:108;44065:4;44056:6;43962:108;:::i;:::-;43954:116;;44118:9;44112:4;44108:20;44102:3;44091:9;44087:19;44080:49;44146:76;44217:4;44208:6;44146:76;:::i;:::-;44138:84;;43176:1053;;;;;;;;:::o;44235:141::-;44291:5;44322:6;44316:13;44307:22;;44338:32;44364:5;44338:32;:::i;:::-;44235:141;;;;:::o;44382:349::-;44451:6;44500:2;44488:9;44479:7;44475:23;44471:32;44468:119;;;44506:79;;:::i;:::-;44468:119;44626:1;44651:63;44706:7;44697:6;44686:9;44682:22;44651:63;:::i;:::-;44641:73;;44597:127;44382:349;;;;:::o;44737:106::-;44781:8;44830:5;44825:3;44821:15;44800:36;;44737:106;;;:::o;44849:183::-;44884:3;44922:1;44904:16;44901:23;44898:128;;;44960:1;44957;44954;44939:23;44982:34;45013:1;45007:8;44982:34;:::i;:::-;44975:41;;44898:128;44849:183;:::o;45038:711::-;45077:3;45115:4;45097:16;45094:26;45091:39;;;45123:5;;45091:39;45152:20;;:::i;:::-;45227:1;45209:16;45205:24;45202:1;45196:4;45181:49;45260:4;45254:11;45359:16;45352:4;45344:6;45340:17;45337:39;45304:18;45296:6;45293:30;45277:113;45274:146;;;45405:5;;;;45274:146;45451:6;45445:4;45441:17;45487:3;45481:10;45514:18;45506:6;45503:30;45500:43;;;45536:5;;;;;;45500:43;45584:6;45577:4;45572:3;45568:14;45564:27;45643:1;45625:16;45621:24;45615:4;45611:35;45606:3;45603:44;45600:57;;;45650:5;;;;;;;45600:57;45667;45715:6;45709:4;45705:17;45697:6;45693:30;45687:4;45667:57;:::i;:::-;45740:3;45733:10;;45081:668;;;;;45038:711;;:::o;45755:239::-;45895:34;45891:1;45883:6;45879:14;45872:58;45964:22;45959:2;45951:6;45947:15;45940:47;45755:239;:::o;46000:366::-;46142:3;46163:67;46227:2;46222:3;46163:67;:::i;:::-;46156:74;;46239:93;46328:3;46239:93;:::i;:::-;46357:2;46352:3;46348:12;46341:19;;46000:366;;;:::o;46372:419::-;46538:4;46576:2;46565:9;46561:18;46553:26;;46625:9;46619:4;46615:20;46611:1;46600:9;46596:17;46589:47;46653:131;46779:4;46653:131;:::i;:::-;46645:139;;46372:419;;;:::o;46797:227::-;46937:34;46933:1;46925:6;46921:14;46914:58;47006:10;47001:2;46993:6;46989:15;46982:35;46797:227;:::o;47030:366::-;47172:3;47193:67;47257:2;47252:3;47193:67;:::i;:::-;47186:74;;47269:93;47358:3;47269:93;:::i;:::-;47387:2;47382:3;47378:12;47371:19;;47030:366;;;:::o;47402:419::-;47568:4;47606:2;47595:9;47591:18;47583:26;;47655:9;47649:4;47645:20;47641:1;47630:9;47626:17;47619:47;47683:131;47809:4;47683:131;:::i;:::-;47675:139;;47402:419;;;:::o;47827:751::-;48050:4;48088:3;48077:9;48073:19;48065:27;;48102:71;48170:1;48159:9;48155:17;48146:6;48102:71;:::i;:::-;48183:72;48251:2;48240:9;48236:18;48227:6;48183:72;:::i;:::-;48265;48333:2;48322:9;48318:18;48309:6;48265:72;:::i;:::-;48347;48415:2;48404:9;48400:18;48391:6;48347:72;:::i;:::-;48467:9;48461:4;48457:20;48451:3;48440:9;48436:19;48429:49;48495:76;48566:4;48557:6;48495:76;:::i;:::-;48487:84;;47827:751;;;;;;;;:::o

Swarm Source

ipfs://5ff24d15016cc866b4dbb8c3470836ffc29191dbf8051da1ca629e413966d8aa
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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