Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 8 from a total of 8 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Toggle Burn Stat... | 15919966 | 877 days ago | IN | 0 ETH | 0.00087906 | ||||
Toggle Mint Stat... | 15919964 | 877 days ago | IN | 0 ETH | 0.00090747 | ||||
Burn | 15912794 | 878 days ago | IN | 0 ETH | 0.00052665 | ||||
Burn | 15912058 | 878 days ago | IN | 0 ETH | 0.00080386 | ||||
Safe Transfer Fr... | 15912046 | 878 days ago | IN | 0 ETH | 0.00067437 | ||||
Mint | 15912025 | 878 days ago | IN | 0 ETH | 0.00115897 | ||||
Set Fee To Burn | 15912021 | 878 days ago | IN | 0 ETH | 0.00030226 | ||||
Set Fee To Mint | 15912019 | 878 days ago | IN | 0 ETH | 0.00031379 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PointNFT
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-06 */ // SPDX-License-Identifier: MIT /// @title PointNFT /// @author André Costa @ Digits Brands pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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); } /** * @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. 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. 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); } /** * @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; } /** * @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); } /** * @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; } } /* * @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; } } /** * @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() { } /** * @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 { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, 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 `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, 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 account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @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(to).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(to).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; } } /** * @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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract PointNFT is ERC1155, Ownable { using Strings for uint256; mapping(uint256 => string) public typeToURI; mapping(uint256 => bool) public validTypes; uint256 public feeToMint = 0.0001 ether; uint256 public feeToBurn = 0.0001 ether; //dummy address that we use to sign the mint transaction to make sure it is valid address private dummy = 0x80E4929c869102140E69550BBECC20bEd61B080c; bool public mintState = true; bool public burnState = true; uint256 public nonce; constructor() { addType(50, "ipfs://QmZXSbF36MkgaeFaCqWconU4G9wauxvLhpeiy77dkEx8C4"); addType(100, "ipfs://QmS2hj1AFGGXg7WDJZycHSiQMWMaTe3Sy4GC4QbFEtXJxY"); addType(250, "ipfs://Qmc2phasJtsH7v76HbuFKvt6zeBZmDTCRMKRfJGXBipPBx"); addType(1000, "ipfs://QmcTnKxtELBeHkyhSJ91TQtj4VzVLpdhcePpXHJ554UYT7"); _mint(msg.sender, 50, 1, ""); } receive() payable external { _withdraw(payable(owner()), msg.value); } fallback() payable external { revert(); } //Turn on and off the minting function toggleMintState() external onlyOwner { mintState = !mintState; } //Turn on and off the burning function toggleBurnState() external onlyOwner { burnState = !burnState; } function addType(uint type_, string memory typeURI) public onlyOwner { require(!validTypes[type_], "This type already exists!"); validTypes[type_] = true; typeToURI[type_] = typeURI; } function removeType(uint type_) public onlyOwner { require(validTypes[type_], "This type does not exist!"); validTypes[type_] = false; } function setTypeURI(uint type_, string calldata typeURI) public onlyOwner { require(validTypes[type_], "This type does not exist!"); typeToURI[type_] = typeURI; } modifier onlyValidAccess(uint8 _v, bytes32 _r, bytes32 _s, uint _id, uint _amount) { require( isValidAccessMessage(msg.sender,_v,_r,_s, _id, _amount), 'Invalid Signature' ); _; } /* * @dev Verifies if message was signed by owner to give access to _add for this contract. * Assumes Geth signature prefix. * @param _add Address of agent with access * @param _v ECDSA signature parameter v. * @param _r ECDSA signature parameters r. * @param _s ECDSA signature parameters s. * @return Validity of access message for a given address. */ function isValidAccessMessage(address _add, uint8 _v, bytes32 _r, bytes32 _s, uint _id, uint _amount) view public returns (bool) { bytes32 hash = keccak256(abi.encodePacked(address(this), _add, nonce, _id, _amount)); return dummy == ecrecover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)), _v, _r, _s); } function mint(uint _id, uint _amount, uint8 _v, bytes32 _r, bytes32 _s) onlyValidAccess(_v, _r, _s, _id, _amount) external payable { require(mintState, "Minting is currently closed!"); require(validTypes[_id], "This type does not exist!"); require(msg.value >= _amount * feeToMint, "Insufficient Ether to mint this amount of NFTs!"); nonce++; _mint(msg.sender, _id, _amount, ""); } /*function mintBatch(uint256[] memory ids, uint256[] memory amounts, uint8 _v, bytes32 _r, bytes32 _s) onlyValidAccess(_v, _r, _s) external payable { require(mintState, "Minting is currently closed!"); require(ids.length != amounts.length, "Different Length Arrays!"); uint256 _amount; bool check; for (uint i; i < amounts.length; i++) { _amount += amounts[i]; if (!validTypes[ids[i]]) { check = true; } } require(!check, "This type does not exist!"); require(msg.value >= _amount * feeToMint, "Insufficient Ether to mint this amount of NFTs!"); nonce++; _mintBatch(msg.sender, ids, amounts, ""); }*/ function burn(uint _id, uint _amount) external payable { require(burnState, "Burning is currently closed!"); require(msg.value >= _amount * feeToBurn, "Insufficient Ether to mint this amount of NFTs!"); _burn(msg.sender, _id, _amount); } function burnBatch(uint256[] memory ids, uint256[] memory amounts) external payable { require(burnState, "Burning is currently closed!"); require(ids.length != amounts.length, "Different Length Arrays!"); uint256 _amount; bool check; for (uint i; i < amounts.length; i++) { _amount += amounts[i]; if (!validTypes[ids[i]]) { check = true; } } require(msg.value >= _amount * feeToBurn, "Insufficient Ether to mint this amount of NFTs!"); _burnBatch(msg.sender, ids, amounts); } function setFeeToMint(uint256 newFee) external onlyOwner { feeToMint = newFee; } function setFeeToBurn(uint256 newFee) external onlyOwner { feeToBurn = newFee; } function setDummy(address newDummy) external onlyOwner { dummy = newDummy; } //retrieve all funds function withdraw() public onlyOwner { uint256 balance = accountBalance(); require(balance > 0, 'No Funds to withdraw, Balance is 0'); _withdraw(payable(owner()), balance); } //send the percentage of funds to a shareholder´s wallet function _withdraw(address payable account, uint256 amount) internal { (bool sent, ) = account.call{value: amount}(""); require(sent, "Failed to send Ether"); } function uri(uint256 typeId)public view override returns (string memory) { return typeToURI[typeId]; } //see the eth that this contract has function accountBalance() public view returns(uint256) { return address(this).balance; } function isType(uint256 type_) public view returns(bool) { return validTypes[type_]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"type_","type":"uint256"},{"internalType":"string","name":"typeURI","type":"string"}],"name":"addType","outputs":[],"stateMutability":"nonpayable","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":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"burnState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeToBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"type_","type":"uint256"}],"name":"isType","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"type_","type":"uint256"}],"name":"removeType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDummy","type":"address"}],"name":"setDummy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setFeeToBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setFeeToMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"type_","type":"uint256"},{"internalType":"string","name":"typeURI","type":"string"}],"name":"setTypeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleBurnState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"typeToURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"validTypes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052655af3107a4000600655655af3107a40006007557380e4929c869102140e69550bbecc20bed61b080c600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff021916908315150217905550348015620000b057600080fd5b50620000d1620000c5620001ad60201b60201c565b620001b560201b60201c565b620000fd60326040518060600160405280603581526020016200620e603591396200027b60201b60201c565b62000129606460405180606001604052806035815260200162006243603591396200027b60201b60201c565b6200015560fa604051806060016040528060358152602001620061d9603591396200027b60201b60201c565b620001826103e8604051806060016040528060358152602001620061a4603591396200027b60201b60201c565b620001a7336032600160405180602001604052806000815250620003c860201b60201c565b620010c6565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028b620001ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b16200058d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200030a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000301906200096e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900460ff16156200036e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036590620009e0565b60405180910390fd5b60016005600084815260200190815260200160002060006101000a81548160ff02191690831515021790555080600460008481526020019081526020016000209080519060200190620003c39291906200085d565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156200043b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004329062000a78565b60405180910390fd5b60006200044d620001ad60201b60201c565b905062000486816000876200046888620005b760201b60201c565b6200047988620005b760201b60201c565b876200063860201b60201c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004e7919062000ad3565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516200056792919062000b41565b60405180910390a462000586816000878787876200064060201b60201c565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606000600167ffffffffffffffff811115620005d957620005d862000b6e565b5b604051908082528060200260200182016040528015620006085781602001602082028036833780820191505090505b509050828160008151811062000623576200062262000b9d565b5b60200260200101818152505080915050919050565b505050505050565b6200066c8473ffffffffffffffffffffffffffffffffffffffff166200084a60201b62001df81760201c565b1562000842578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401620006b595949392919062000cb5565b602060405180830381600087803b158015620006d057600080fd5b505af19250505080156200070457506040513d601f19601f8201168201806040525081019062000701919062000d85565b60015b620007b6576200071362000dc4565b806308c379a014156200077757506200072b62000e1f565b8062000738575062000779565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076e919062000f0d565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ad9062000fa7565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161462000840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000837906200103f565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b8280546200086b9062001090565b90600052602060002090601f0160209004810192826200088f5760008555620008db565b82601f10620008aa57805160ff1916838001178555620008db565b82800160010185558215620008db579182015b82811115620008da578251825591602001919060010190620008bd565b5b509050620008ea9190620008ee565b5090565b5b8082111562000909576000816000905550600101620008ef565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620009566020836200090d565b915062000963826200091e565b602082019050919050565b60006020820190508181036000830152620009898162000947565b9050919050565b7f54686973207479706520616c7265616479206578697374732100000000000000600082015250565b6000620009c86019836200090d565b9150620009d58262000990565b602082019050919050565b60006020820190508181036000830152620009fb81620009b9565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000a606021836200090d565b915062000a6d8262000a02565b604082019050919050565b6000602082019050818103600083015262000a938162000a51565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ae08262000a9a565b915062000aed8362000a9a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b255762000b2462000aa4565b5b828201905092915050565b62000b3b8162000a9a565b82525050565b600060408201905062000b58600083018562000b30565b62000b67602083018462000b30565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bf98262000bcc565b9050919050565b62000c0b8162000bec565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000c4d57808201518184015260208101905062000c30565b8381111562000c5d576000848401525b50505050565b6000601f19601f8301169050919050565b600062000c818262000c11565b62000c8d818562000c1c565b935062000c9f81856020860162000c2d565b62000caa8162000c63565b840191505092915050565b600060a08201905062000ccc600083018862000c00565b62000cdb602083018762000c00565b62000cea604083018662000b30565b62000cf9606083018562000b30565b818103608083015262000d0d818462000c74565b90509695505050505050565b6000604051905090565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000d5f8162000d28565b811462000d6b57600080fd5b50565b60008151905062000d7f8162000d54565b92915050565b60006020828403121562000d9e5762000d9d62000d23565b5b600062000dae8482850162000d6e565b91505092915050565b60008160e01c9050919050565b600060033d111562000de65760046000803e62000de360005162000db7565b90505b90565b62000df48262000c63565b810181811067ffffffffffffffff8211171562000e165762000e1562000b6e565b5b80604052505050565b600060443d101562000e315762000ebe565b62000e3b62000d19565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000e6557505062000ebe565b808201805167ffffffffffffffff81111562000e85575050505062000ebe565b80602083010160043d03850181111562000ea457505050505062000ebe565b62000eb58260200185018662000de9565b82955050505050505b90565b600081519050919050565b600062000ed98262000ec1565b62000ee581856200090d565b935062000ef781856020860162000c2d565b62000f028162000c63565b840191505092915050565b6000602082019050818103600083015262000f29818462000ecc565b905092915050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600062000f8f6034836200090d565b915062000f9c8262000f31565b604082019050919050565b6000602082019050818103600083015262000fc28162000f80565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000620010276028836200090d565b9150620010348262000fc9565b604082019050919050565b600060208201905081810360008301526200105a8162001018565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010a957607f821691505b60208210811415620010c057620010bf62001061565b5b50919050565b6150ce80620010d66000396000f3fe6080604052600436106101f15760003560e01c80637b534dbf1161010d578063b390c0ab116100a0578063c5c5ca5b1161006f578063c5c5ca5b146106b5578063d6d6c6c1146106f2578063e985e9c51461071b578063f242432a14610758578063f2fde38b1461078157610209565b8063b390c0ab1461061a578063be99aaa714610636578063c051e38a1461064d578063c0aa41101461067857610209565b80638e52b7ce116100dc5780638e52b7ce14610572578063a22cb4651461059b578063affed0e0146105c4578063b0a1c1c4146105ef57610209565b80637b534dbf146104e45780637fb9a0631461050f57806383ca4b6f1461052b5780638da5cb5b1461054757610209565b80632eb2c2d611610185578063590315a611610154578063590315a61461043c578063715018a61461046557806372d7ca211461047c57806373126a8e146104b957610209565b80632eb2c2d6146103a85780633ccfd60b146103d15780634e1273f4146103e8578063510db75a1461042557610209565b806317f40b83116101c157806317f40b83146102ee57806319ffc19e146103175780632582a61614610340578063269d9e921461037d57610209565b8062fdd58e1461020e57806301ffc9a71461024b5780630a452232146102885780630e89341c146102b157610209565b36610209576102076102016107aa565b346107d4565b005b600080fd5b34801561021a57600080fd5b506102356004803603810190610230919061315e565b610885565b60405161024291906131ad565b60405180910390f35b34801561025757600080fd5b50610272600480360381019061026d9190613220565b61094e565b60405161027f9190613268565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613283565b610a30565b005b3480156102bd57600080fd5b506102d860048036038101906102d39190613283565b610ab6565b6040516102e59190613349565b60405180910390f35b3480156102fa57600080fd5b50610315600480360381019061031091906134a0565b610b5b565b005b34801561032357600080fd5b5061033e60048036038101906103399190613283565b610c90565b005b34801561034c57600080fd5b5061036760048036038101906103629190613283565b610d16565b6040516103749190613268565b60405180910390f35b34801561038957600080fd5b50610392610d40565b60405161039f9190613268565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190613665565b610d53565b005b3480156103dd57600080fd5b506103e6610df4565b005b3480156103f457600080fd5b5061040f600480360381019061040a91906137f7565b610ed3565b60405161041c919061392d565b60405180910390f35b34801561043157600080fd5b5061043a610fec565b005b34801561044857600080fd5b50610463600480360381019061045e9190613283565b611094565b005b34801561047157600080fd5b5061047a61119f565b005b34801561048857600080fd5b506104a3600480360381019061049e91906139be565b611227565b6040516104b09190613268565b60405180910390f35b3480156104c557600080fd5b506104ce61132f565b6040516104db91906131ad565b60405180910390f35b3480156104f057600080fd5b506104f9611335565b60405161050691906131ad565b60405180910390f35b61052960048036038101906105249190613a4b565b61133b565b005b61054560048036038101906105409190613ac6565b6114cb565b005b34801561055357600080fd5b5061055c6107aa565b6040516105699190613b4d565b60405180910390f35b34801561057e57600080fd5b5061059960048036038101906105949190613bc3565b61164f565b005b3480156105a757600080fd5b506105c260048036038101906105bd9190613c4f565b611753565b005b3480156105d057600080fd5b506105d96118d4565b6040516105e691906131ad565b60405180910390f35b3480156105fb57600080fd5b506106046118da565b60405161061191906131ad565b60405180910390f35b610634600480360381019061062f9190613c8f565b6118e2565b005b34801561064257600080fd5b5061064b611990565b005b34801561065957600080fd5b50610662611a38565b60405161066f9190613268565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190613283565b611a4b565b6040516106ac9190613268565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190613283565b611a6b565b6040516106e99190613349565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190613ccf565b611b0b565b005b34801561072757600080fd5b50610742600480360381019061073d9190613cfc565b611bcb565b60405161074f9190613268565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190613d3c565b611c5f565b005b34801561078d57600080fd5b506107a860048036038101906107a39190613ccf565b611d00565b005b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516107fa90613e04565b60006040518083038185875af1925050503d8060008114610837576040519150601f19603f3d011682016040523d82523d6000602084013e61083c565b606091505b5050905080610880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087790613e65565b60405180910390fd5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90613ef7565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a295750610a2882611e0b565b5b9050919050565b610a38611e75565b73ffffffffffffffffffffffffffffffffffffffff16610a566107aa565b73ffffffffffffffffffffffffffffffffffffffff1614610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390613f63565b60405180910390fd5b8060068190555050565b6060600460008381526020019081526020016000208054610ad690613fb2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0290613fb2565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b50505050509050919050565b610b63611e75565b73ffffffffffffffffffffffffffffffffffffffff16610b816107aa565b73ffffffffffffffffffffffffffffffffffffffff1614610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90613f63565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900460ff1615610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f90614030565b60405180910390fd5b60016005600084815260200190815260200160002060006101000a81548160ff02191690831515021790555080600460008481526020019081526020016000209080519060200190610c8b929190612f8d565b505050565b610c98611e75565b73ffffffffffffffffffffffffffffffffffffffff16610cb66107aa565b73ffffffffffffffffffffffffffffffffffffffff1614610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390613f63565b60405180910390fd5b8060078190555050565b60006005600083815260200190815260200160002060009054906101000a900460ff169050919050565b600860159054906101000a900460ff1681565b610d5b611e75565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610da15750610da085610d9b611e75565b611bcb565b5b610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd7906140c2565b60405180910390fd5b610ded8585858585611e7d565b5050505050565b610dfc611e75565b73ffffffffffffffffffffffffffffffffffffffff16610e1a6107aa565b73ffffffffffffffffffffffffffffffffffffffff1614610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790613f63565b60405180910390fd5b6000610e7a6118da565b905060008111610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690614154565b60405180910390fd5b610ed0610eca6107aa565b826107d4565b50565b60608151835114610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f10906141e6565b60405180910390fd5b6000835167ffffffffffffffff811115610f3657610f35613375565b5b604051908082528060200260200182016040528015610f645781602001602082028036833780820191505090505b50905060005b8451811015610fe157610fb1858281518110610f8957610f88614206565b5b6020026020010151858381518110610fa457610fa3614206565b5b6020026020010151610885565b828281518110610fc457610fc3614206565b5b60200260200101818152505080610fda90614264565b9050610f6a565b508091505092915050565b610ff4611e75565b73ffffffffffffffffffffffffffffffffffffffff166110126107aa565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90613f63565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b61109c611e75565b73ffffffffffffffffffffffffffffffffffffffff166110ba6107aa565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790613f63565b60405180910390fd5b6005600082815260200190815260200160002060009054906101000a900460ff16611170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611167906142f9565b60405180910390fd5b60006005600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6111a7611e75565b73ffffffffffffffffffffffffffffffffffffffff166111c56107aa565b73ffffffffffffffffffffffffffffffffffffffff161461121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290613f63565b60405180910390fd5b6112256000612191565b565b60008030886009548686604051602001611245959493929190614382565b6040516020818303038152906040528051906020012090506001816040516020016112709190614459565b60405160208183030381529060405280519060200120888888604051600081526020016040526040516112a6949392919061449d565b6020604051602081039080840390855afa1580156112c8573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149150509695505050505050565b60065481565b60075481565b828282878761134e338686868686611227565b61138d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113849061452e565b60405180910390fd5b600860149054906101000a900460ff166113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d39061459a565b60405180910390fd5b600560008b815260200190815260200160002060009054906101000a900460ff1661143c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611433906142f9565b60405180910390fd5b6006548961144a91906145ba565b34101561148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390614686565b60405180910390fd5b6009600081548092919061149f90614264565b91905055506114bf338b8b60405180602001604052806000815250612257565b50505050505050505050565b600860159054906101000a900460ff1661151a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611511906146f2565b60405180910390fd5b80518251141561155f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115569061475e565b60405180910390fd5b60008060005b83518110156115ed5783818151811061158157611580614206565b5b602002602001015183611594919061477e565b9250600560008683815181106115ad576115ac614206565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff166115da57600191505b80806115e590614264565b915050611565565b50600754826115fc91906145ba565b34101561163e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163590614686565b60405180910390fd5b6116493385856123ed565b50505050565b611657611e75565b73ffffffffffffffffffffffffffffffffffffffff166116756107aa565b73ffffffffffffffffffffffffffffffffffffffff16146116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290613f63565b60405180910390fd5b6005600084815260200190815260200160002060009054906101000a900460ff1661172b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611722906142f9565b60405180910390fd5b818160046000868152602001908152602001600020919061174d929190613013565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff16611772611e75565b73ffffffffffffffffffffffffffffffffffffffff1614156117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090614846565b60405180910390fd5b80600160006117d6611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611883611e75565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118c89190613268565b60405180910390a35050565b60095481565b600047905090565b600860159054906101000a900460ff16611931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611928906146f2565b60405180910390fd5b6007548161193f91906145ba565b341015611981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197890614686565b60405180910390fd5b61198c33838361269e565b5050565b611998611e75565b73ffffffffffffffffffffffffffffffffffffffff166119b66107aa565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613f63565b60405180910390fd5b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b600860149054906101000a900460ff1681565b60056020528060005260406000206000915054906101000a900460ff1681565b60046020528060005260406000206000915090508054611a8a90613fb2565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab690613fb2565b8015611b035780601f10611ad857610100808354040283529160200191611b03565b820191906000526020600020905b815481529060010190602001808311611ae657829003601f168201915b505050505081565b611b13611e75565b73ffffffffffffffffffffffffffffffffffffffff16611b316107aa565b73ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90613f63565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c67611e75565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611cad5750611cac85611ca7611e75565b611bcb565b5b611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce3906148d8565b60405180910390fd5b611cf985858585856128bb565b5050505050565b611d08611e75565b73ffffffffffffffffffffffffffffffffffffffff16611d266107aa565b73ffffffffffffffffffffffffffffffffffffffff1614611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390613f63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de39061496a565b60405180910390fd5b611df581612191565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb8906149fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890614a8e565b60405180910390fd5b6000611f3b611e75565b9050611f4b818787878787612b3d565b60005b84518110156120fc576000858281518110611f6c57611f6b614206565b5b602002602001015190506000858381518110611f8b57611f8a614206565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561202c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202390614b20565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e1919061477e565b92505081905550505050806120f590614264565b9050611f4e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612173929190614b40565b60405180910390a4612189818787878787612b45565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be90614be9565b60405180910390fd5b60006122d1611e75565b90506122f2816000876122e388612d2c565b6122ec88612d2c565b87612b3d565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612351919061477e565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516123cf929190614c09565b60405180910390a46123e681600087878787612da6565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561245d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245490614ca4565b60405180910390fd5b80518251146124a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612498906149fc565b60405180910390fd5b60006124ab611e75565b90506124cb81856000868660405180602001604052806000815250612b3d565b60005b83518110156126185760008482815181106124ec576124eb614206565b5b60200260200101519050600084838151811061250b5761250a614206565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156125ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a390614d36565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061261090614264565b9150506124ce565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612690929190614b40565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561270e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270590614ca4565b60405180910390fd5b6000612718611e75565b90506127488185600061272a87612d2c565b61273387612d2c565b60405180602001604052806000815250612b3d565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156127df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d690614d36565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516128ac929190614c09565b60405180910390a45050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561292b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292290614a8e565b60405180910390fd5b6000612935611e75565b905061295581878761294688612d2c565b61294f88612d2c565b87612b3d565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156129ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e390614b20565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aa1919061477e565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612b1e929190614c09565b60405180910390a4612b34828888888888612da6565b50505050505050565b505050505050565b612b648473ffffffffffffffffffffffffffffffffffffffff16611df8565b15612d24578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612baa959493929190614dab565b602060405180830381600087803b158015612bc457600080fd5b505af1925050508015612bf557506040513d601f19601f82011682018060405250810190612bf29190614e28565b60015b612c9b57612c01614e62565b806308c379a01415612c5e5750612c16614e84565b80612c215750612c60565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c559190613349565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9290614f8c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d199061501e565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612d4b57612d4a613375565b5b604051908082528060200260200182016040528015612d795781602001602082028036833780820191505090505b5090508281600081518110612d9157612d90614206565b5b60200260200101818152505080915050919050565b612dc58473ffffffffffffffffffffffffffffffffffffffff16611df8565b15612f85578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612e0b95949392919061503e565b602060405180830381600087803b158015612e2557600080fd5b505af1925050508015612e5657506040513d601f19601f82011682018060405250810190612e539190614e28565b60015b612efc57612e62614e62565b806308c379a01415612ebf5750612e77614e84565b80612e825750612ec1565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb69190613349565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef390614f8c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7a9061501e565b60405180910390fd5b505b505050505050565b828054612f9990613fb2565b90600052602060002090601f016020900481019282612fbb5760008555613002565b82601f10612fd457805160ff1916838001178555613002565b82800160010185558215613002579182015b82811115613001578251825591602001919060010190612fe6565b5b50905061300f9190613099565b5090565b82805461301f90613fb2565b90600052602060002090601f0160209004810192826130415760008555613088565b82601f1061305a57803560ff1916838001178555613088565b82800160010185558215613088579182015b8281111561308757823582559160200191906001019061306c565b5b5090506130959190613099565b5090565b5b808211156130b257600081600090555060010161309a565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130f5826130ca565b9050919050565b613105816130ea565b811461311057600080fd5b50565b600081359050613122816130fc565b92915050565b6000819050919050565b61313b81613128565b811461314657600080fd5b50565b60008135905061315881613132565b92915050565b60008060408385031215613175576131746130c0565b5b600061318385828601613113565b925050602061319485828601613149565b9150509250929050565b6131a781613128565b82525050565b60006020820190506131c2600083018461319e565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131fd816131c8565b811461320857600080fd5b50565b60008135905061321a816131f4565b92915050565b600060208284031215613236576132356130c0565b5b60006132448482850161320b565b91505092915050565b60008115159050919050565b6132628161324d565b82525050565b600060208201905061327d6000830184613259565b92915050565b600060208284031215613299576132986130c0565b5b60006132a784828501613149565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132ea5780820151818401526020810190506132cf565b838111156132f9576000848401525b50505050565b6000601f19601f8301169050919050565b600061331b826132b0565b61332581856132bb565b93506133358185602086016132cc565b61333e816132ff565b840191505092915050565b600060208201905081810360008301526133638184613310565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133ad826132ff565b810181811067ffffffffffffffff821117156133cc576133cb613375565b5b80604052505050565b60006133df6130b6565b90506133eb82826133a4565b919050565b600067ffffffffffffffff82111561340b5761340a613375565b5b613414826132ff565b9050602081019050919050565b82818337600083830152505050565b600061344361343e846133f0565b6133d5565b90508281526020810184848401111561345f5761345e613370565b5b61346a848285613421565b509392505050565b600082601f8301126134875761348661336b565b5b8135613497848260208601613430565b91505092915050565b600080604083850312156134b7576134b66130c0565b5b60006134c585828601613149565b925050602083013567ffffffffffffffff8111156134e6576134e56130c5565b5b6134f285828601613472565b9150509250929050565b600067ffffffffffffffff82111561351757613516613375565b5b602082029050602081019050919050565b600080fd5b600061354061353b846134fc565b6133d5565b9050808382526020820190506020840283018581111561356357613562613528565b5b835b8181101561358c57806135788882613149565b845260208401935050602081019050613565565b5050509392505050565b600082601f8301126135ab576135aa61336b565b5b81356135bb84826020860161352d565b91505092915050565b600067ffffffffffffffff8211156135df576135de613375565b5b6135e8826132ff565b9050602081019050919050565b6000613608613603846135c4565b6133d5565b90508281526020810184848401111561362457613623613370565b5b61362f848285613421565b509392505050565b600082601f83011261364c5761364b61336b565b5b813561365c8482602086016135f5565b91505092915050565b600080600080600060a08688031215613681576136806130c0565b5b600061368f88828901613113565b95505060206136a088828901613113565b945050604086013567ffffffffffffffff8111156136c1576136c06130c5565b5b6136cd88828901613596565b935050606086013567ffffffffffffffff8111156136ee576136ed6130c5565b5b6136fa88828901613596565b925050608086013567ffffffffffffffff81111561371b5761371a6130c5565b5b61372788828901613637565b9150509295509295909350565b600067ffffffffffffffff82111561374f5761374e613375565b5b602082029050602081019050919050565b600061377361376e84613734565b6133d5565b9050808382526020820190506020840283018581111561379657613795613528565b5b835b818110156137bf57806137ab8882613113565b845260208401935050602081019050613798565b5050509392505050565b600082601f8301126137de576137dd61336b565b5b81356137ee848260208601613760565b91505092915050565b6000806040838503121561380e5761380d6130c0565b5b600083013567ffffffffffffffff81111561382c5761382b6130c5565b5b613838858286016137c9565b925050602083013567ffffffffffffffff811115613859576138586130c5565b5b61386585828601613596565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138a481613128565b82525050565b60006138b6838361389b565b60208301905092915050565b6000602082019050919050565b60006138da8261386f565b6138e4818561387a565b93506138ef8361388b565b8060005b8381101561392057815161390788826138aa565b9750613912836138c2565b9250506001810190506138f3565b5085935050505092915050565b6000602082019050818103600083015261394781846138cf565b905092915050565b600060ff82169050919050565b6139658161394f565b811461397057600080fd5b50565b6000813590506139828161395c565b92915050565b6000819050919050565b61399b81613988565b81146139a657600080fd5b50565b6000813590506139b881613992565b92915050565b60008060008060008060c087890312156139db576139da6130c0565b5b60006139e989828a01613113565b96505060206139fa89828a01613973565b9550506040613a0b89828a016139a9565b9450506060613a1c89828a016139a9565b9350506080613a2d89828a01613149565b92505060a0613a3e89828a01613149565b9150509295509295509295565b600080600080600060a08688031215613a6757613a666130c0565b5b6000613a7588828901613149565b9550506020613a8688828901613149565b9450506040613a9788828901613973565b9350506060613aa8888289016139a9565b9250506080613ab9888289016139a9565b9150509295509295909350565b60008060408385031215613add57613adc6130c0565b5b600083013567ffffffffffffffff811115613afb57613afa6130c5565b5b613b0785828601613596565b925050602083013567ffffffffffffffff811115613b2857613b276130c5565b5b613b3485828601613596565b9150509250929050565b613b47816130ea565b82525050565b6000602082019050613b626000830184613b3e565b92915050565b600080fd5b60008083601f840112613b8357613b8261336b565b5b8235905067ffffffffffffffff811115613ba057613b9f613b68565b5b602083019150836001820283011115613bbc57613bbb613528565b5b9250929050565b600080600060408486031215613bdc57613bdb6130c0565b5b6000613bea86828701613149565b935050602084013567ffffffffffffffff811115613c0b57613c0a6130c5565b5b613c1786828701613b6d565b92509250509250925092565b613c2c8161324d565b8114613c3757600080fd5b50565b600081359050613c4981613c23565b92915050565b60008060408385031215613c6657613c656130c0565b5b6000613c7485828601613113565b9250506020613c8585828601613c3a565b9150509250929050565b60008060408385031215613ca657613ca56130c0565b5b6000613cb485828601613149565b9250506020613cc585828601613149565b9150509250929050565b600060208284031215613ce557613ce46130c0565b5b6000613cf384828501613113565b91505092915050565b60008060408385031215613d1357613d126130c0565b5b6000613d2185828601613113565b9250506020613d3285828601613113565b9150509250929050565b600080600080600060a08688031215613d5857613d576130c0565b5b6000613d6688828901613113565b9550506020613d7788828901613113565b9450506040613d8888828901613149565b9350506060613d9988828901613149565b925050608086013567ffffffffffffffff811115613dba57613db96130c5565b5b613dc688828901613637565b9150509295509295909350565b600081905092915050565b50565b6000613dee600083613dd3565b9150613df982613dde565b600082019050919050565b6000613e0f82613de1565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000613e4f6014836132bb565b9150613e5a82613e19565b602082019050919050565b60006020820190508181036000830152613e7e81613e42565b9050919050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ee1602b836132bb565b9150613eec82613e85565b604082019050919050565b60006020820190508181036000830152613f1081613ed4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f4d6020836132bb565b9150613f5882613f17565b602082019050919050565b60006020820190508181036000830152613f7c81613f40565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fca57607f821691505b60208210811415613fde57613fdd613f83565b5b50919050565b7f54686973207479706520616c7265616479206578697374732100000000000000600082015250565b600061401a6019836132bb565b915061402582613fe4565b602082019050919050565b600060208201905081810360008301526140498161400d565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006140ac6032836132bb565b91506140b782614050565b604082019050919050565b600060208201905081810360008301526140db8161409f565b9050919050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b600061413e6022836132bb565b9150614149826140e2565b604082019050919050565b6000602082019050818103600083015261416d81614131565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006141d06029836132bb565b91506141db82614174565b604082019050919050565b600060208201905081810360008301526141ff816141c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061426f82613128565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142a2576142a1614235565b5b600182019050919050565b7f54686973207479706520646f6573206e6f742065786973742100000000000000600082015250565b60006142e36019836132bb565b91506142ee826142ad565b602082019050919050565b60006020820190508181036000830152614312816142d6565b9050919050565b60008160601b9050919050565b600061433182614319565b9050919050565b600061434382614326565b9050919050565b61435b614356826130ea565b614338565b82525050565b6000819050919050565b61437c61437782613128565b614361565b82525050565b600061438e828861434a565b60148201915061439e828761434a565b6014820191506143ae828661436b565b6020820191506143be828561436b565b6020820191506143ce828461436b565b6020820191508190509695505050505050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614422601c836143e1565b915061442d826143ec565b601c82019050919050565b6000819050919050565b61445361444e82613988565b614438565b82525050565b600061446482614415565b91506144708284614442565b60208201915081905092915050565b61448881613988565b82525050565b6144978161394f565b82525050565b60006080820190506144b2600083018761447f565b6144bf602083018661448e565b6144cc604083018561447f565b6144d9606083018461447f565b95945050505050565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b60006145186011836132bb565b9150614523826144e2565b602082019050919050565b600060208201905081810360008301526145478161450b565b9050919050565b7f4d696e74696e672069732063757272656e746c7920636c6f7365642100000000600082015250565b6000614584601c836132bb565b915061458f8261454e565b602082019050919050565b600060208201905081810360008301526145b381614577565b9050919050565b60006145c582613128565b91506145d083613128565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460957614608614235565b5b828202905092915050565b7f496e73756666696369656e7420457468657220746f206d696e7420746869732060008201527f616d6f756e74206f66204e465473210000000000000000000000000000000000602082015250565b6000614670602f836132bb565b915061467b82614614565b604082019050919050565b6000602082019050818103600083015261469f81614663565b9050919050565b7f4275726e696e672069732063757272656e746c7920636c6f7365642100000000600082015250565b60006146dc601c836132bb565b91506146e7826146a6565b602082019050919050565b6000602082019050818103600083015261470b816146cf565b9050919050565b7f446966666572656e74204c656e67746820417272617973210000000000000000600082015250565b60006147486018836132bb565b915061475382614712565b602082019050919050565b600060208201905081810360008301526147778161473b565b9050919050565b600061478982613128565b915061479483613128565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147c9576147c8614235565b5b828201905092915050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006148306029836132bb565b915061483b826147d4565b604082019050919050565b6000602082019050818103600083015261485f81614823565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006148c26029836132bb565b91506148cd82614866565b604082019050919050565b600060208201905081810360008301526148f1816148b5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149546026836132bb565b915061495f826148f8565b604082019050919050565b6000602082019050818103600083015261498381614947565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006149e66028836132bb565b91506149f18261498a565b604082019050919050565b60006020820190508181036000830152614a15816149d9565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a786025836132bb565b9150614a8382614a1c565b604082019050919050565b60006020820190508181036000830152614aa781614a6b565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614b0a602a836132bb565b9150614b1582614aae565b604082019050919050565b60006020820190508181036000830152614b3981614afd565b9050919050565b60006040820190508181036000830152614b5a81856138cf565b90508181036020830152614b6e81846138cf565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bd36021836132bb565b9150614bde82614b77565b604082019050919050565b60006020820190508181036000830152614c0281614bc6565b9050919050565b6000604082019050614c1e600083018561319e565b614c2b602083018461319e565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614c8e6023836132bb565b9150614c9982614c32565b604082019050919050565b60006020820190508181036000830152614cbd81614c81565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614d206024836132bb565b9150614d2b82614cc4565b604082019050919050565b60006020820190508181036000830152614d4f81614d13565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d7d82614d56565b614d878185614d61565b9350614d978185602086016132cc565b614da0816132ff565b840191505092915050565b600060a082019050614dc06000830188613b3e565b614dcd6020830187613b3e565b8181036040830152614ddf81866138cf565b90508181036060830152614df381856138cf565b90508181036080830152614e078184614d72565b90509695505050505050565b600081519050614e22816131f4565b92915050565b600060208284031215614e3e57614e3d6130c0565b5b6000614e4c84828501614e13565b91505092915050565b60008160e01c9050919050565b600060033d1115614e815760046000803e614e7e600051614e55565b90505b90565b600060443d1015614e9457614f17565b614e9c6130b6565b60043d036004823e80513d602482011167ffffffffffffffff82111715614ec4575050614f17565b808201805167ffffffffffffffff811115614ee25750505050614f17565b80602083010160043d038501811115614eff575050505050614f17565b614f0e826020018501866133a4565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614f766034836132bb565b9150614f8182614f1a565b604082019050919050565b60006020820190508181036000830152614fa581614f69565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006150086028836132bb565b915061501382614fac565b604082019050919050565b6000602082019050818103600083015261503781614ffb565b9050919050565b600060a0820190506150536000830188613b3e565b6150606020830187613b3e565b61506d604083018661319e565b61507a606083018561319e565b818103608083015261508c8184614d72565b9050969550505050505056fea264697066735822122023dab73a335a100d7df2ad8ee6241f0639b75dacdac977d78fabec9e2a30e4cb64736f6c63430008090033697066733a2f2f516d63546e4b7874454c4265486b7968534a39315451746a34567a564c7064686365507058484a35353455595437697066733a2f2f516d6332706861734a74734837763736486275464b7674367a65425a6d445443524d4b52664a4758426970504278697066733a2f2f516d5a5853624633364d6b6761654661437157636f6e5534473977617578764c68706569793737646b4578384334697066733a2f2f516d5332686a314146474758673757444a5a7963485369514d574d615465335379344743345162464574584a7859
Deployed Bytecode
0x6080604052600436106101f15760003560e01c80637b534dbf1161010d578063b390c0ab116100a0578063c5c5ca5b1161006f578063c5c5ca5b146106b5578063d6d6c6c1146106f2578063e985e9c51461071b578063f242432a14610758578063f2fde38b1461078157610209565b8063b390c0ab1461061a578063be99aaa714610636578063c051e38a1461064d578063c0aa41101461067857610209565b80638e52b7ce116100dc5780638e52b7ce14610572578063a22cb4651461059b578063affed0e0146105c4578063b0a1c1c4146105ef57610209565b80637b534dbf146104e45780637fb9a0631461050f57806383ca4b6f1461052b5780638da5cb5b1461054757610209565b80632eb2c2d611610185578063590315a611610154578063590315a61461043c578063715018a61461046557806372d7ca211461047c57806373126a8e146104b957610209565b80632eb2c2d6146103a85780633ccfd60b146103d15780634e1273f4146103e8578063510db75a1461042557610209565b806317f40b83116101c157806317f40b83146102ee57806319ffc19e146103175780632582a61614610340578063269d9e921461037d57610209565b8062fdd58e1461020e57806301ffc9a71461024b5780630a452232146102885780630e89341c146102b157610209565b36610209576102076102016107aa565b346107d4565b005b600080fd5b34801561021a57600080fd5b506102356004803603810190610230919061315e565b610885565b60405161024291906131ad565b60405180910390f35b34801561025757600080fd5b50610272600480360381019061026d9190613220565b61094e565b60405161027f9190613268565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613283565b610a30565b005b3480156102bd57600080fd5b506102d860048036038101906102d39190613283565b610ab6565b6040516102e59190613349565b60405180910390f35b3480156102fa57600080fd5b50610315600480360381019061031091906134a0565b610b5b565b005b34801561032357600080fd5b5061033e60048036038101906103399190613283565b610c90565b005b34801561034c57600080fd5b5061036760048036038101906103629190613283565b610d16565b6040516103749190613268565b60405180910390f35b34801561038957600080fd5b50610392610d40565b60405161039f9190613268565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca9190613665565b610d53565b005b3480156103dd57600080fd5b506103e6610df4565b005b3480156103f457600080fd5b5061040f600480360381019061040a91906137f7565b610ed3565b60405161041c919061392d565b60405180910390f35b34801561043157600080fd5b5061043a610fec565b005b34801561044857600080fd5b50610463600480360381019061045e9190613283565b611094565b005b34801561047157600080fd5b5061047a61119f565b005b34801561048857600080fd5b506104a3600480360381019061049e91906139be565b611227565b6040516104b09190613268565b60405180910390f35b3480156104c557600080fd5b506104ce61132f565b6040516104db91906131ad565b60405180910390f35b3480156104f057600080fd5b506104f9611335565b60405161050691906131ad565b60405180910390f35b61052960048036038101906105249190613a4b565b61133b565b005b61054560048036038101906105409190613ac6565b6114cb565b005b34801561055357600080fd5b5061055c6107aa565b6040516105699190613b4d565b60405180910390f35b34801561057e57600080fd5b5061059960048036038101906105949190613bc3565b61164f565b005b3480156105a757600080fd5b506105c260048036038101906105bd9190613c4f565b611753565b005b3480156105d057600080fd5b506105d96118d4565b6040516105e691906131ad565b60405180910390f35b3480156105fb57600080fd5b506106046118da565b60405161061191906131ad565b60405180910390f35b610634600480360381019061062f9190613c8f565b6118e2565b005b34801561064257600080fd5b5061064b611990565b005b34801561065957600080fd5b50610662611a38565b60405161066f9190613268565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190613283565b611a4b565b6040516106ac9190613268565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190613283565b611a6b565b6040516106e99190613349565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190613ccf565b611b0b565b005b34801561072757600080fd5b50610742600480360381019061073d9190613cfc565b611bcb565b60405161074f9190613268565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190613d3c565b611c5f565b005b34801561078d57600080fd5b506107a860048036038101906107a39190613ccf565b611d00565b005b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516107fa90613e04565b60006040518083038185875af1925050503d8060008114610837576040519150601f19603f3d011682016040523d82523d6000602084013e61083c565b606091505b5050905080610880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087790613e65565b60405180910390fd5b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90613ef7565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a295750610a2882611e0b565b5b9050919050565b610a38611e75565b73ffffffffffffffffffffffffffffffffffffffff16610a566107aa565b73ffffffffffffffffffffffffffffffffffffffff1614610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390613f63565b60405180910390fd5b8060068190555050565b6060600460008381526020019081526020016000208054610ad690613fb2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0290613fb2565b8015610b4f5780601f10610b2457610100808354040283529160200191610b4f565b820191906000526020600020905b815481529060010190602001808311610b3257829003601f168201915b50505050509050919050565b610b63611e75565b73ffffffffffffffffffffffffffffffffffffffff16610b816107aa565b73ffffffffffffffffffffffffffffffffffffffff1614610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90613f63565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900460ff1615610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f90614030565b60405180910390fd5b60016005600084815260200190815260200160002060006101000a81548160ff02191690831515021790555080600460008481526020019081526020016000209080519060200190610c8b929190612f8d565b505050565b610c98611e75565b73ffffffffffffffffffffffffffffffffffffffff16610cb66107aa565b73ffffffffffffffffffffffffffffffffffffffff1614610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0390613f63565b60405180910390fd5b8060078190555050565b60006005600083815260200190815260200160002060009054906101000a900460ff169050919050565b600860159054906101000a900460ff1681565b610d5b611e75565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610da15750610da085610d9b611e75565b611bcb565b5b610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd7906140c2565b60405180910390fd5b610ded8585858585611e7d565b5050505050565b610dfc611e75565b73ffffffffffffffffffffffffffffffffffffffff16610e1a6107aa565b73ffffffffffffffffffffffffffffffffffffffff1614610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790613f63565b60405180910390fd5b6000610e7a6118da565b905060008111610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690614154565b60405180910390fd5b610ed0610eca6107aa565b826107d4565b50565b60608151835114610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f10906141e6565b60405180910390fd5b6000835167ffffffffffffffff811115610f3657610f35613375565b5b604051908082528060200260200182016040528015610f645781602001602082028036833780820191505090505b50905060005b8451811015610fe157610fb1858281518110610f8957610f88614206565b5b6020026020010151858381518110610fa457610fa3614206565b5b6020026020010151610885565b828281518110610fc457610fc3614206565b5b60200260200101818152505080610fda90614264565b9050610f6a565b508091505092915050565b610ff4611e75565b73ffffffffffffffffffffffffffffffffffffffff166110126107aa565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90613f63565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b61109c611e75565b73ffffffffffffffffffffffffffffffffffffffff166110ba6107aa565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790613f63565b60405180910390fd5b6005600082815260200190815260200160002060009054906101000a900460ff16611170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611167906142f9565b60405180910390fd5b60006005600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6111a7611e75565b73ffffffffffffffffffffffffffffffffffffffff166111c56107aa565b73ffffffffffffffffffffffffffffffffffffffff161461121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290613f63565b60405180910390fd5b6112256000612191565b565b60008030886009548686604051602001611245959493929190614382565b6040516020818303038152906040528051906020012090506001816040516020016112709190614459565b60405160208183030381529060405280519060200120888888604051600081526020016040526040516112a6949392919061449d565b6020604051602081039080840390855afa1580156112c8573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16149150509695505050505050565b60065481565b60075481565b828282878761134e338686868686611227565b61138d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113849061452e565b60405180910390fd5b600860149054906101000a900460ff166113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d39061459a565b60405180910390fd5b600560008b815260200190815260200160002060009054906101000a900460ff1661143c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611433906142f9565b60405180910390fd5b6006548961144a91906145ba565b34101561148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390614686565b60405180910390fd5b6009600081548092919061149f90614264565b91905055506114bf338b8b60405180602001604052806000815250612257565b50505050505050505050565b600860159054906101000a900460ff1661151a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611511906146f2565b60405180910390fd5b80518251141561155f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115569061475e565b60405180910390fd5b60008060005b83518110156115ed5783818151811061158157611580614206565b5b602002602001015183611594919061477e565b9250600560008683815181106115ad576115ac614206565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff166115da57600191505b80806115e590614264565b915050611565565b50600754826115fc91906145ba565b34101561163e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163590614686565b60405180910390fd5b6116493385856123ed565b50505050565b611657611e75565b73ffffffffffffffffffffffffffffffffffffffff166116756107aa565b73ffffffffffffffffffffffffffffffffffffffff16146116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290613f63565b60405180910390fd5b6005600084815260200190815260200160002060009054906101000a900460ff1661172b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611722906142f9565b60405180910390fd5b818160046000868152602001908152602001600020919061174d929190613013565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff16611772611e75565b73ffffffffffffffffffffffffffffffffffffffff1614156117c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c090614846565b60405180910390fd5b80600160006117d6611e75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611883611e75565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118c89190613268565b60405180910390a35050565b60095481565b600047905090565b600860159054906101000a900460ff16611931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611928906146f2565b60405180910390fd5b6007548161193f91906145ba565b341015611981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197890614686565b60405180910390fd5b61198c33838361269e565b5050565b611998611e75565b73ffffffffffffffffffffffffffffffffffffffff166119b66107aa565b73ffffffffffffffffffffffffffffffffffffffff1614611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0390613f63565b60405180910390fd5b600860159054906101000a900460ff1615600860156101000a81548160ff021916908315150217905550565b600860149054906101000a900460ff1681565b60056020528060005260406000206000915054906101000a900460ff1681565b60046020528060005260406000206000915090508054611a8a90613fb2565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab690613fb2565b8015611b035780601f10611ad857610100808354040283529160200191611b03565b820191906000526020600020905b815481529060010190602001808311611ae657829003601f168201915b505050505081565b611b13611e75565b73ffffffffffffffffffffffffffffffffffffffff16611b316107aa565b73ffffffffffffffffffffffffffffffffffffffff1614611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90613f63565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c67611e75565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611cad5750611cac85611ca7611e75565b611bcb565b5b611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce3906148d8565b60405180910390fd5b611cf985858585856128bb565b5050505050565b611d08611e75565b73ffffffffffffffffffffffffffffffffffffffff16611d266107aa565b73ffffffffffffffffffffffffffffffffffffffff1614611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390613f63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de39061496a565b60405180910390fd5b611df581612191565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb8906149fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890614a8e565b60405180910390fd5b6000611f3b611e75565b9050611f4b818787878787612b3d565b60005b84518110156120fc576000858281518110611f6c57611f6b614206565b5b602002602001015190506000858381518110611f8b57611f8a614206565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561202c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202390614b20565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e1919061477e565b92505081905550505050806120f590614264565b9050611f4e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612173929190614b40565b60405180910390a4612189818787878787612b45565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be90614be9565b60405180910390fd5b60006122d1611e75565b90506122f2816000876122e388612d2c565b6122ec88612d2c565b87612b3d565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612351919061477e565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516123cf929190614c09565b60405180910390a46123e681600087878787612da6565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561245d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245490614ca4565b60405180910390fd5b80518251146124a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612498906149fc565b60405180910390fd5b60006124ab611e75565b90506124cb81856000868660405180602001604052806000815250612b3d565b60005b83518110156126185760008482815181106124ec576124eb614206565b5b60200260200101519050600084838151811061250b5761250a614206565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156125ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a390614d36565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050808061261090614264565b9150506124ce565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612690929190614b40565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561270e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270590614ca4565b60405180910390fd5b6000612718611e75565b90506127488185600061272a87612d2c565b61273387612d2c565b60405180602001604052806000815250612b3d565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156127df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d690614d36565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516128ac929190614c09565b60405180910390a45050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561292b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292290614a8e565b60405180910390fd5b6000612935611e75565b905061295581878761294688612d2c565b61294f88612d2c565b87612b3d565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156129ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e390614b20565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aa1919061477e565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612b1e929190614c09565b60405180910390a4612b34828888888888612da6565b50505050505050565b505050505050565b612b648473ffffffffffffffffffffffffffffffffffffffff16611df8565b15612d24578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612baa959493929190614dab565b602060405180830381600087803b158015612bc457600080fd5b505af1925050508015612bf557506040513d601f19601f82011682018060405250810190612bf29190614e28565b60015b612c9b57612c01614e62565b806308c379a01415612c5e5750612c16614e84565b80612c215750612c60565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c559190613349565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9290614f8c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d199061501e565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612d4b57612d4a613375565b5b604051908082528060200260200182016040528015612d795781602001602082028036833780820191505090505b5090508281600081518110612d9157612d90614206565b5b60200260200101818152505080915050919050565b612dc58473ffffffffffffffffffffffffffffffffffffffff16611df8565b15612f85578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612e0b95949392919061503e565b602060405180830381600087803b158015612e2557600080fd5b505af1925050508015612e5657506040513d601f19601f82011682018060405250810190612e539190614e28565b60015b612efc57612e62614e62565b806308c379a01415612ebf5750612e77614e84565b80612e825750612ec1565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb69190613349565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef390614f8c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7a9061501e565b60405180910390fd5b505b505050505050565b828054612f9990613fb2565b90600052602060002090601f016020900481019282612fbb5760008555613002565b82601f10612fd457805160ff1916838001178555613002565b82800160010185558215613002579182015b82811115613001578251825591602001919060010190612fe6565b5b50905061300f9190613099565b5090565b82805461301f90613fb2565b90600052602060002090601f0160209004810192826130415760008555613088565b82601f1061305a57803560ff1916838001178555613088565b82800160010185558215613088579182015b8281111561308757823582559160200191906001019061306c565b5b5090506130959190613099565b5090565b5b808211156130b257600081600090555060010161309a565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130f5826130ca565b9050919050565b613105816130ea565b811461311057600080fd5b50565b600081359050613122816130fc565b92915050565b6000819050919050565b61313b81613128565b811461314657600080fd5b50565b60008135905061315881613132565b92915050565b60008060408385031215613175576131746130c0565b5b600061318385828601613113565b925050602061319485828601613149565b9150509250929050565b6131a781613128565b82525050565b60006020820190506131c2600083018461319e565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131fd816131c8565b811461320857600080fd5b50565b60008135905061321a816131f4565b92915050565b600060208284031215613236576132356130c0565b5b60006132448482850161320b565b91505092915050565b60008115159050919050565b6132628161324d565b82525050565b600060208201905061327d6000830184613259565b92915050565b600060208284031215613299576132986130c0565b5b60006132a784828501613149565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132ea5780820151818401526020810190506132cf565b838111156132f9576000848401525b50505050565b6000601f19601f8301169050919050565b600061331b826132b0565b61332581856132bb565b93506133358185602086016132cc565b61333e816132ff565b840191505092915050565b600060208201905081810360008301526133638184613310565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133ad826132ff565b810181811067ffffffffffffffff821117156133cc576133cb613375565b5b80604052505050565b60006133df6130b6565b90506133eb82826133a4565b919050565b600067ffffffffffffffff82111561340b5761340a613375565b5b613414826132ff565b9050602081019050919050565b82818337600083830152505050565b600061344361343e846133f0565b6133d5565b90508281526020810184848401111561345f5761345e613370565b5b61346a848285613421565b509392505050565b600082601f8301126134875761348661336b565b5b8135613497848260208601613430565b91505092915050565b600080604083850312156134b7576134b66130c0565b5b60006134c585828601613149565b925050602083013567ffffffffffffffff8111156134e6576134e56130c5565b5b6134f285828601613472565b9150509250929050565b600067ffffffffffffffff82111561351757613516613375565b5b602082029050602081019050919050565b600080fd5b600061354061353b846134fc565b6133d5565b9050808382526020820190506020840283018581111561356357613562613528565b5b835b8181101561358c57806135788882613149565b845260208401935050602081019050613565565b5050509392505050565b600082601f8301126135ab576135aa61336b565b5b81356135bb84826020860161352d565b91505092915050565b600067ffffffffffffffff8211156135df576135de613375565b5b6135e8826132ff565b9050602081019050919050565b6000613608613603846135c4565b6133d5565b90508281526020810184848401111561362457613623613370565b5b61362f848285613421565b509392505050565b600082601f83011261364c5761364b61336b565b5b813561365c8482602086016135f5565b91505092915050565b600080600080600060a08688031215613681576136806130c0565b5b600061368f88828901613113565b95505060206136a088828901613113565b945050604086013567ffffffffffffffff8111156136c1576136c06130c5565b5b6136cd88828901613596565b935050606086013567ffffffffffffffff8111156136ee576136ed6130c5565b5b6136fa88828901613596565b925050608086013567ffffffffffffffff81111561371b5761371a6130c5565b5b61372788828901613637565b9150509295509295909350565b600067ffffffffffffffff82111561374f5761374e613375565b5b602082029050602081019050919050565b600061377361376e84613734565b6133d5565b9050808382526020820190506020840283018581111561379657613795613528565b5b835b818110156137bf57806137ab8882613113565b845260208401935050602081019050613798565b5050509392505050565b600082601f8301126137de576137dd61336b565b5b81356137ee848260208601613760565b91505092915050565b6000806040838503121561380e5761380d6130c0565b5b600083013567ffffffffffffffff81111561382c5761382b6130c5565b5b613838858286016137c9565b925050602083013567ffffffffffffffff811115613859576138586130c5565b5b61386585828601613596565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138a481613128565b82525050565b60006138b6838361389b565b60208301905092915050565b6000602082019050919050565b60006138da8261386f565b6138e4818561387a565b93506138ef8361388b565b8060005b8381101561392057815161390788826138aa565b9750613912836138c2565b9250506001810190506138f3565b5085935050505092915050565b6000602082019050818103600083015261394781846138cf565b905092915050565b600060ff82169050919050565b6139658161394f565b811461397057600080fd5b50565b6000813590506139828161395c565b92915050565b6000819050919050565b61399b81613988565b81146139a657600080fd5b50565b6000813590506139b881613992565b92915050565b60008060008060008060c087890312156139db576139da6130c0565b5b60006139e989828a01613113565b96505060206139fa89828a01613973565b9550506040613a0b89828a016139a9565b9450506060613a1c89828a016139a9565b9350506080613a2d89828a01613149565b92505060a0613a3e89828a01613149565b9150509295509295509295565b600080600080600060a08688031215613a6757613a666130c0565b5b6000613a7588828901613149565b9550506020613a8688828901613149565b9450506040613a9788828901613973565b9350506060613aa8888289016139a9565b9250506080613ab9888289016139a9565b9150509295509295909350565b60008060408385031215613add57613adc6130c0565b5b600083013567ffffffffffffffff811115613afb57613afa6130c5565b5b613b0785828601613596565b925050602083013567ffffffffffffffff811115613b2857613b276130c5565b5b613b3485828601613596565b9150509250929050565b613b47816130ea565b82525050565b6000602082019050613b626000830184613b3e565b92915050565b600080fd5b60008083601f840112613b8357613b8261336b565b5b8235905067ffffffffffffffff811115613ba057613b9f613b68565b5b602083019150836001820283011115613bbc57613bbb613528565b5b9250929050565b600080600060408486031215613bdc57613bdb6130c0565b5b6000613bea86828701613149565b935050602084013567ffffffffffffffff811115613c0b57613c0a6130c5565b5b613c1786828701613b6d565b92509250509250925092565b613c2c8161324d565b8114613c3757600080fd5b50565b600081359050613c4981613c23565b92915050565b60008060408385031215613c6657613c656130c0565b5b6000613c7485828601613113565b9250506020613c8585828601613c3a565b9150509250929050565b60008060408385031215613ca657613ca56130c0565b5b6000613cb485828601613149565b9250506020613cc585828601613149565b9150509250929050565b600060208284031215613ce557613ce46130c0565b5b6000613cf384828501613113565b91505092915050565b60008060408385031215613d1357613d126130c0565b5b6000613d2185828601613113565b9250506020613d3285828601613113565b9150509250929050565b600080600080600060a08688031215613d5857613d576130c0565b5b6000613d6688828901613113565b9550506020613d7788828901613113565b9450506040613d8888828901613149565b9350506060613d9988828901613149565b925050608086013567ffffffffffffffff811115613dba57613db96130c5565b5b613dc688828901613637565b9150509295509295909350565b600081905092915050565b50565b6000613dee600083613dd3565b9150613df982613dde565b600082019050919050565b6000613e0f82613de1565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000613e4f6014836132bb565b9150613e5a82613e19565b602082019050919050565b60006020820190508181036000830152613e7e81613e42565b9050919050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ee1602b836132bb565b9150613eec82613e85565b604082019050919050565b60006020820190508181036000830152613f1081613ed4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f4d6020836132bb565b9150613f5882613f17565b602082019050919050565b60006020820190508181036000830152613f7c81613f40565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613fca57607f821691505b60208210811415613fde57613fdd613f83565b5b50919050565b7f54686973207479706520616c7265616479206578697374732100000000000000600082015250565b600061401a6019836132bb565b915061402582613fe4565b602082019050919050565b600060208201905081810360008301526140498161400d565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006140ac6032836132bb565b91506140b782614050565b604082019050919050565b600060208201905081810360008301526140db8161409f565b9050919050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b600061413e6022836132bb565b9150614149826140e2565b604082019050919050565b6000602082019050818103600083015261416d81614131565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006141d06029836132bb565b91506141db82614174565b604082019050919050565b600060208201905081810360008301526141ff816141c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061426f82613128565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142a2576142a1614235565b5b600182019050919050565b7f54686973207479706520646f6573206e6f742065786973742100000000000000600082015250565b60006142e36019836132bb565b91506142ee826142ad565b602082019050919050565b60006020820190508181036000830152614312816142d6565b9050919050565b60008160601b9050919050565b600061433182614319565b9050919050565b600061434382614326565b9050919050565b61435b614356826130ea565b614338565b82525050565b6000819050919050565b61437c61437782613128565b614361565b82525050565b600061438e828861434a565b60148201915061439e828761434a565b6014820191506143ae828661436b565b6020820191506143be828561436b565b6020820191506143ce828461436b565b6020820191508190509695505050505050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614422601c836143e1565b915061442d826143ec565b601c82019050919050565b6000819050919050565b61445361444e82613988565b614438565b82525050565b600061446482614415565b91506144708284614442565b60208201915081905092915050565b61448881613988565b82525050565b6144978161394f565b82525050565b60006080820190506144b2600083018761447f565b6144bf602083018661448e565b6144cc604083018561447f565b6144d9606083018461447f565b95945050505050565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b60006145186011836132bb565b9150614523826144e2565b602082019050919050565b600060208201905081810360008301526145478161450b565b9050919050565b7f4d696e74696e672069732063757272656e746c7920636c6f7365642100000000600082015250565b6000614584601c836132bb565b915061458f8261454e565b602082019050919050565b600060208201905081810360008301526145b381614577565b9050919050565b60006145c582613128565b91506145d083613128565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561460957614608614235565b5b828202905092915050565b7f496e73756666696369656e7420457468657220746f206d696e7420746869732060008201527f616d6f756e74206f66204e465473210000000000000000000000000000000000602082015250565b6000614670602f836132bb565b915061467b82614614565b604082019050919050565b6000602082019050818103600083015261469f81614663565b9050919050565b7f4275726e696e672069732063757272656e746c7920636c6f7365642100000000600082015250565b60006146dc601c836132bb565b91506146e7826146a6565b602082019050919050565b6000602082019050818103600083015261470b816146cf565b9050919050565b7f446966666572656e74204c656e67746820417272617973210000000000000000600082015250565b60006147486018836132bb565b915061475382614712565b602082019050919050565b600060208201905081810360008301526147778161473b565b9050919050565b600061478982613128565b915061479483613128565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147c9576147c8614235565b5b828201905092915050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006148306029836132bb565b915061483b826147d4565b604082019050919050565b6000602082019050818103600083015261485f81614823565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006148c26029836132bb565b91506148cd82614866565b604082019050919050565b600060208201905081810360008301526148f1816148b5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149546026836132bb565b915061495f826148f8565b604082019050919050565b6000602082019050818103600083015261498381614947565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006149e66028836132bb565b91506149f18261498a565b604082019050919050565b60006020820190508181036000830152614a15816149d9565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a786025836132bb565b9150614a8382614a1c565b604082019050919050565b60006020820190508181036000830152614aa781614a6b565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614b0a602a836132bb565b9150614b1582614aae565b604082019050919050565b60006020820190508181036000830152614b3981614afd565b9050919050565b60006040820190508181036000830152614b5a81856138cf565b90508181036020830152614b6e81846138cf565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bd36021836132bb565b9150614bde82614b77565b604082019050919050565b60006020820190508181036000830152614c0281614bc6565b9050919050565b6000604082019050614c1e600083018561319e565b614c2b602083018461319e565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614c8e6023836132bb565b9150614c9982614c32565b604082019050919050565b60006020820190508181036000830152614cbd81614c81565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614d206024836132bb565b9150614d2b82614cc4565b604082019050919050565b60006020820190508181036000830152614d4f81614d13565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d7d82614d56565b614d878185614d61565b9350614d978185602086016132cc565b614da0816132ff565b840191505092915050565b600060a082019050614dc06000830188613b3e565b614dcd6020830187613b3e565b8181036040830152614ddf81866138cf565b90508181036060830152614df381856138cf565b90508181036080830152614e078184614d72565b90509695505050505050565b600081519050614e22816131f4565b92915050565b600060208284031215614e3e57614e3d6130c0565b5b6000614e4c84828501614e13565b91505092915050565b60008160e01c9050919050565b600060033d1115614e815760046000803e614e7e600051614e55565b90505b90565b600060443d1015614e9457614f17565b614e9c6130b6565b60043d036004823e80513d602482011167ffffffffffffffff82111715614ec4575050614f17565b808201805167ffffffffffffffff811115614ee25750505050614f17565b80602083010160043d038501811115614eff575050505050614f17565b614f0e826020018501866133a4565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614f766034836132bb565b9150614f8182614f1a565b604082019050919050565b60006020820190508181036000830152614fa581614f69565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006150086028836132bb565b915061501382614fac565b604082019050919050565b6000602082019050818103600083015261503781614ffb565b9050919050565b600060a0820190506150536000830188613b3e565b6150606020830187613b3e565b61506d604083018661319e565b61507a606083018561319e565b818103608083015261508c8184614d72565b9050969550505050505056fea264697066735822122023dab73a335a100d7df2ad8ee6241f0639b75dacdac977d78fabec9e2a30e4cb64736f6c63430008090033
Deployed Bytecode Sourcemap
36482:6208:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37446:38;37464:7;:5;:7::i;:::-;37474:9;37446;:38::i;:::-;36482:6208;;37537:8;;;20990:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20013:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41502:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42311:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37821:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41604:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42587:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36953:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23085:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41835:209;;;;;;;;;;;;;:::i;:::-;;21387:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37596:87;;;;;;;;;;;;;:::i;:::-;;38045:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35853:94;;;;;;;;;;;;;:::i;:::-;;39020:351;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36662:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36708;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39379:432;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40870:624;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35202:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38212:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21984:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36990:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42477:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40593:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37726:87;;;;;;;;;;;;;:::i;:::-;;36918:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36611:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36561:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41706:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22367:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22607:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36102:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35202:87;35248:7;35275:6;;;;;;;;;;;35268:13;;35202:87;:::o;42119:183::-;42200:9;42215:7;:12;;42235:6;42215:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42199:47;;;42265:4;42257:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;42188:114;42119:183;;:::o;20990:231::-;21076:7;21123:1;21104:21;;:7;:21;;;;21096:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;21191:9;:13;21201:2;21191:13;;;;;;;;;;;:22;21205:7;21191:22;;;;;;;;;;;;;;;;21184:29;;20990:231;;;;:::o;20013:310::-;20115:4;20167:26;20152:41;;;:11;:41;;;;:110;;;;20225:37;20210:52;;;:11;:52;;;;20152:110;:163;;;;20279:36;20303:11;20279:23;:36::i;:::-;20152:163;20132:183;;20013:310;;;:::o;41502:94::-;35433:12;:10;:12::i;:::-;35422:23;;:7;:5;:7::i;:::-;:23;;;35414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41582:6:::1;41570:9;:18;;;;41502:94:::0;:::o;42311:116::-;42369:13;42402:9;:17;42412:6;42402:17;;;;;;;;;;;42395:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42311:116;;;:::o;37821:216::-;35433:12;:10;:12::i;:::-;35422:23;;:7;:5;:7::i;:::-;:23;;;35414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37910:10:::1;:17;37921:5;37910:17;;;;;;;;;;;;;;;;;;;;;37909:18;37901:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;37988:4;37968:10;:17;37979:5;37968:17;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;38022:7;38003:9;:16;38013:5;38003:16;;;;;;;;;;;:26;;;;;;;;;;;;:::i;:::-;;37821:216:::0;;:::o;41604:94::-;35433:12;:10;:12::i;:::-;35422:23;;:7;:5;:7::i;:::-;:23;;;35414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41684:6:::1;41672:9;:18;;;;41604:94:::0;:::o;42587:100::-;42638:4;42662:10;:17;42673:5;42662:17;;;;;;;;;;;;;;;;;;;;;42655:24;;42587:100;;;:::o;36953:28::-;;;;;;;;;;;;;:::o;23085:442::-;23326:12;:10;:12::i;:::-;23318:20;;:4;:20;;;:60;;;;23342:36;23359:4;23365:12;:10;:12::i;:::-;23342:16;:36::i;:::-;23318:60;23296:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;23467:52;23490:4;23496:2;23500:3;23505:7;23514:4;23467:22;:52::i;:::-;23085:442;;;;;:::o;41835:209::-;35433:12;:10;:12::i;:::-;35422:23;;:7;:5;:7::i;:::-;:23;;;35414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41883:15:::1;41901:16;:14;:16::i;:::-;41883:34;;41946:1;41936:7;:11;41928:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;41999:36;42017:7;:5;:7::i;:::-;42027;41999:9;:36::i;:::-;41872:172;41835:209::o:0;21387:524::-;21543:16;21604:3;:10;21585:8;:15;:29;21577:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;21673:30;21720:8;:15;21706:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21673:63;;21754:9;21749:122;21773:8;:15;21769:1;:19;21749:122;;;21829:30;21839:8;21848:1;21839:11;;;;;;;;:::i;:::-;;;;;;;;21852:3;21856:1;21852:6;;;;;;;;:::i;:::-;;;;;;;;21829:9;:30::i;:::-;21810:13;21824:1;21810:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;21790:3;;;;:::i;:::-;;;21749:122;;;;21890:13;21883:20;;;21387:524;;;;:::o;37596:87::-;35433:12;:10;:12::i;:::-;35422:23;;:7;:5;:7::i;:::-;:23;;;35414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37666:9:::1;;;;;;;;;;;37665:10;37653:9;;:22;;;;;;;;;;;;;;;;;;37596:87::o:0;38045:159::-;35433:12;:10;:12::i;:::-;35422:23;;:7;:5;:7::i;:::-;:23;;;35414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38113:10:::1;:17;38124:5;38113:17;;;;;;;;;;;;;;;;;;;;;38105:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;38191:5;38171:10;:17;38182:5;38171:17;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;38045:159:::0;:::o;35853:94::-;35433:12;:10;:12::i;:::-;35422:23;;:7;:5;:7::i;:::-;:23;;;35414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35918:21:::1;35936:1;35918:9;:21::i;:::-;35853:94::o:0;39020:351::-;39143:4;39160:12;39210:4;39217;39223:5;;39230:3;39235:7;39185:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39175:69;;;;;;39160:84;;39271:92;39344:4;39291:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;39281:69;;;;;;39352:2;39356;39360;39271:92;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39262:101;;:5;;;;;;;;;;;:101;;;39255:108;;;39020:351;;;;;;;;:::o;36662:39::-;;;;:::o;36708:::-;;;;:::o;39379:432::-;39467:2;39472;39476;39480:3;39485:7;38508:55;38529:10;38540:2;38543;38546;38550:3;38555:7;38508:20;:55::i;:::-;38499:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39530:9:::1;;;;;;;;;;;39522:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;39591:10;:15;39602:3;39591:15;;;;;;;;;;;;;;;;;;;;;39583:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;39678:9;;39668:7;:19;;;;:::i;:::-;39655:9;:32;;39647:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;39750:5;;:7;;;;;;;;;:::i;:::-;;;;;;39768:35;39774:10;39786:3;39791:7;39768:35;;;;;;;;;;;::::0;:5:::1;:35::i;:::-;39379:432:::0;;;;;;;;;;:::o;40870:624::-;40973:9;;;;;;;;;;;40965:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;41048:7;:14;41034:3;:10;:28;;41026:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41102:15;41128:10;41154:6;41149:186;41166:7;:14;41162:1;:18;41149:186;;;41213:7;41221:1;41213:10;;;;;;;;:::i;:::-;;;;;;;;41202:21;;;;;:::i;:::-;;;41243:10;:18;41254:3;41258:1;41254:6;;;;;;;;:::i;:::-;;;;;;;;41243:18;;;;;;;;;;;;;;;;;;;;;41238:72;;41290:4;41282:12;;41238:72;41182:3;;;;;:::i;:::-;;;;41149:186;;;;41378:9;;41368:7;:19;;;;:::i;:::-;41355:9;:32;;41347:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;41450:36;41461:10;41473:3;41478:7;41450:10;:36::i;:::-;40954:540;;40870:624;;:::o;38212:185::-;35433:12;:10;:12::i;:::-;35422:23;;:7;:5;:7::i;:::-;:23;;;35414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38305:10:::1;:17;38316:5;38305:17;;;;;;;;;;;;;;;;;;;;;38297:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;38382:7;;38363:9;:16;38373:5;38363:16;;;;;;;;;;;:26;;;;;;;:::i;:::-;;38212:185:::0;;;:::o;21984:311::-;22103:8;22087:24;;:12;:10;:12::i;:::-;:24;;;;22079:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;22215:8;22170:18;:32;22189:12;:10;:12::i;:::-;22170:32;;;;;;;;;;;;;;;:42;22203:8;22170:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22268:8;22239:48;;22254:12;:10;:12::i;:::-;22239:48;;;22278:8;22239:48;;;;;;:::i;:::-;;;;;;;;21984:311;;:::o;36990:20::-;;;;:::o;42477:102::-;42523:7;42550:21;42543:28;;42477:102;:::o;40593:269::-;40667:9;;;;;;;;;;;40659:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;40751:9;;40741:7;:19;;;;:::i;:::-;40728:9;:32;;40720:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;40823:31;40829:10;40841:3;40846:7;40823:5;:31::i;:::-;40593:269;;:::o;37726:87::-;35433:12;:10;:12::i;:::-;35422:23;;:7;:5;:7::i;:::-;:23;;;35414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37796:9:::1;;;;;;;;;;;37795:10;37783:9;;:22;;;;;;;;;;;;;;;;;;37726:87::o:0;36918:28::-;;;;;;;;;;;;;:::o;36611:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;36561:43::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41706:90::-;35433:12;:10;:12::i;:::-;35422:23;;:7;:5;:7::i;:::-;:23;;;35414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41780:8:::1;41772:5;;:16;;;;;;;;;;;;;;;;;;41706:90:::0;:::o;22367:168::-;22466:4;22490:18;:27;22509:7;22490:27;;;;;;;;;;;;;;;:37;22518:8;22490:37;;;;;;;;;;;;;;;;;;;;;;;;;22483:44;;22367:168;;;;:::o;22607:401::-;22823:12;:10;:12::i;:::-;22815:20;;:4;:20;;;:60;;;;22839:36;22856:4;22862:12;:10;:12::i;:::-;22839:16;:36::i;:::-;22815:60;22793:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;22955:45;22973:4;22979:2;22983;22987:6;22995:4;22955:17;:45::i;:::-;22607:401;;;;;:::o;36102:192::-;35433:12;:10;:12::i;:::-;35422:23;;:7;:5;:7::i;:::-;:23;;;35414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36211:1:::1;36191:22;;:8;:22;;;;36183:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36267:19;36277:8;36267:9;:19::i;:::-;36102:192:::0;:::o;2795:387::-;2855:4;3063:12;3130:7;3118:20;3110:28;;3173:1;3166:4;:8;3159:15;;;2795:387;;;:::o;18228:157::-;18313:4;18352:25;18337:40;;;:11;:40;;;;18330:47;;18228:157;;;:::o;18931:98::-;18984:7;19011:10;19004:17;;18931:98;:::o;25169:1074::-;25396:7;:14;25382:3;:10;:28;25374:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;25488:1;25474:16;;:2;:16;;;;25466:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;25545:16;25564:12;:10;:12::i;:::-;25545:31;;25589:60;25610:8;25620:4;25626:2;25630:3;25635:7;25644:4;25589:20;:60::i;:::-;25667:9;25662:421;25686:3;:10;25682:1;:14;25662:421;;;25718:10;25731:3;25735:1;25731:6;;;;;;;;:::i;:::-;;;;;;;;25718:19;;25752:14;25769:7;25777:1;25769:10;;;;;;;;:::i;:::-;;;;;;;;25752:27;;25796:19;25818:9;:13;25828:2;25818:13;;;;;;;;;;;:19;25832:4;25818:19;;;;;;;;;;;;;;;;25796:41;;25875:6;25860:11;:21;;25852:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26008:6;25994:11;:20;25972:9;:13;25982:2;25972:13;;;;;;;;;;;:19;25986:4;25972:19;;;;;;;;;;;;;;;:42;;;;26065:6;26044:9;:13;26054:2;26044:13;;;;;;;;;;;:17;26058:2;26044:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;25703:380;;;25698:3;;;;:::i;:::-;;;25662:421;;;;26130:2;26100:47;;26124:4;26100:47;;26114:8;26100:47;;;26134:3;26139:7;26100:47;;;;;;;:::i;:::-;;;;;;;;26160:75;26196:8;26206:4;26212:2;26216:3;26221:7;26230:4;26160:35;:75::i;:::-;25363:880;25169:1074;;;;;:::o;36302:173::-;36358:16;36377:6;;;;;;;;;;;36358:25;;36403:8;36394:6;;:17;;;;;;;;;;;;;;;;;;36458:8;36427:40;;36448:8;36427:40;;;;;;;;;;;;36347:128;36302:173;:::o;27576:599::-;27753:1;27734:21;;:7;:21;;;;27726:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;27806:16;27825:12;:10;:12::i;:::-;27806:31;;27850:107;27871:8;27889:1;27893:7;27902:21;27920:2;27902:17;:21::i;:::-;27925:25;27943:6;27925:17;:25::i;:::-;27952:4;27850:20;:107::i;:::-;27996:6;27970:9;:13;27980:2;27970:13;;;;;;;;;;;:22;27984:7;27970:22;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;28055:7;28018:57;;28051:1;28018:57;;28033:8;28018:57;;;28064:2;28068:6;28018:57;;;;;;;:::i;:::-;;;;;;;;28088:79;28119:8;28137:1;28141:7;28150:2;28154:6;28162:4;28088:30;:79::i;:::-;27715:460;27576:599;;;;:::o;30403:918::-;30577:1;30558:21;;:7;:21;;;;30550:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;30652:7;:14;30638:3;:10;:28;30630:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;30724:16;30743:12;:10;:12::i;:::-;30724:31;;30768:69;30789:8;30799:7;30816:1;30820:3;30825:7;30768:69;;;;;;;;;;;;:20;:69::i;:::-;30855:9;30850:388;30874:3;:10;30870:1;:14;30850:388;;;30906:10;30919:3;30923:1;30919:6;;;;;;;;:::i;:::-;;;;;;;;30906:19;;30940:14;30957:7;30965:1;30957:10;;;;;;;;:::i;:::-;;;;;;;;30940:27;;30984:22;31009:9;:13;31019:2;31009:13;;;;;;;;;;;:22;31023:7;31009:22;;;;;;;;;;;;;;;;30984:47;;31072:6;31054:14;:24;;31046:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31205:6;31188:14;:23;31163:9;:13;31173:2;31163:13;;;;;;;;;;;:22;31177:7;31163:22;;;;;;;;;;;;;;;:48;;;;30891:347;;;30886:3;;;;;:::i;:::-;;;;30850:388;;;;31296:1;31255:58;;31279:7;31255:58;;31269:8;31255:58;;;31300:3;31305:7;31255:58;;;;;;;:::i;:::-;;;;;;;;30539:782;30403:918;;;:::o;29525:675::-;29674:1;29655:21;;:7;:21;;;;29647:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;29729:16;29748:12;:10;:12::i;:::-;29729:31;;29773:105;29794:8;29804:7;29821:1;29825:21;29843:2;29825:17;:21::i;:::-;29848:25;29866:6;29848:17;:25::i;:::-;29773:105;;;;;;;;;;;;:20;:105::i;:::-;29891:22;29916:9;:13;29926:2;29916:13;;;;;;;;;;;:22;29930:7;29916:22;;;;;;;;;;;;;;;;29891:47;;29975:6;29957:14;:24;;29949:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30100:6;30083:14;:23;30058:9;:13;30068:2;30058:13;;;;;;;;;;;:22;30072:7;30058:22;;;;;;;;;;;;;;;:48;;;;30177:1;30135:57;;30160:7;30135:57;;30150:8;30135:57;;;30181:2;30185:6;30135:57;;;;;;;:::i;:::-;;;;;;;;29636:564;;29525:675;;;:::o;23991:820::-;24193:1;24179:16;;:2;:16;;;;24171:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;24250:16;24269:12;:10;:12::i;:::-;24250:31;;24294:96;24315:8;24325:4;24331:2;24335:21;24353:2;24335:17;:21::i;:::-;24358:25;24376:6;24358:17;:25::i;:::-;24385:4;24294:20;:96::i;:::-;24403:19;24425:9;:13;24435:2;24425:13;;;;;;;;;;;:19;24439:4;24425:19;;;;;;;;;;;;;;;;24403:41;;24478:6;24463:11;:21;;24455:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24603:6;24589:11;:20;24567:9;:13;24577:2;24567:13;;;;;;;;;;;:19;24581:4;24567:19;;;;;;;;;;;;;;;:42;;;;24652:6;24631:9;:13;24641:2;24631:13;;;;;;;;;;;:17;24645:2;24631:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;24707:2;24676:46;;24701:4;24676:46;;24691:8;24676:46;;;24711:2;24715:6;24676:46;;;;;;;:::i;:::-;;;;;;;;24735:68;24766:8;24776:4;24782:2;24786;24790:6;24798:4;24735:30;:68::i;:::-;24160:651;;23991:820;;;;;:::o;32277:221::-;;;;;;;:::o;33262:817::-;33502:15;:2;:13;;;:15::i;:::-;33498:574;;;33555:2;33538:43;;;33582:8;33592:4;33598:3;33603:7;33612:4;33538:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33534:527;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;33934:6;33927:14;;;;;;;;;;;:::i;:::-;;;;;;;;33534:527;;;33983:62;;;;;;;;;;:::i;:::-;;;;;;;;33534:527;33711:52;;;33699:64;;;:8;:64;;;;33695:163;;33788:50;;;;;;;;;;:::i;:::-;;;;;;;;33695:163;33618:255;33498:574;33262:817;;;;;;:::o;34087:198::-;34153:16;34182:22;34221:1;34207:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34182:41;;34245:7;34234:5;34240:1;34234:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;34272:5;34265:12;;;34087:198;;;:::o;32506:748::-;32721:15;:2;:13;;;:15::i;:::-;32717:530;;;32774:2;32757:38;;;32796:8;32806:4;32812:2;32816:6;32824:4;32757:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32753:483;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;33109:6;33102:14;;;;;;;;;;;:::i;:::-;;;;;;;;32753:483;;;33158:62;;;;;;;;;;:::i;:::-;;;;;;;;32753:483;32891:47;;;32879:59;;;:8;:59;;;;32875:158;;32963:50;;;;;;;;;;:::i;:::-;;;;;;;;32875:158;32830:218;32717:530;32506:748;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::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:329::-;3272:6;3321:2;3309:9;3300:7;3296:23;3292:32;3289:119;;;3327:79;;:::i;:::-;3289:119;3447:1;3472:53;3517:7;3508:6;3497:9;3493:22;3472:53;:::i;:::-;3462:63;;3418:117;3213:329;;;;:::o;3548:99::-;3600:6;3634:5;3628:12;3618:22;;3548:99;;;:::o;3653:169::-;3737:11;3771:6;3766:3;3759:19;3811:4;3806:3;3802:14;3787:29;;3653:169;;;;:::o;3828:307::-;3896:1;3906:113;3920:6;3917:1;3914:13;3906:113;;;4005:1;4000:3;3996:11;3990:18;3986:1;3981:3;3977:11;3970:39;3942:2;3939:1;3935:10;3930:15;;3906:113;;;4037:6;4034:1;4031:13;4028:101;;;4117:1;4108:6;4103:3;4099:16;4092:27;4028:101;3877:258;3828:307;;;:::o;4141:102::-;4182:6;4233:2;4229:7;4224:2;4217:5;4213:14;4209:28;4199:38;;4141:102;;;:::o;4249:364::-;4337:3;4365:39;4398:5;4365:39;:::i;:::-;4420:71;4484:6;4479:3;4420:71;:::i;:::-;4413:78;;4500:52;4545:6;4540:3;4533:4;4526:5;4522:16;4500:52;:::i;:::-;4577:29;4599:6;4577:29;:::i;:::-;4572:3;4568:39;4561:46;;4341:272;4249:364;;;;:::o;4619:313::-;4732:4;4770:2;4759:9;4755:18;4747:26;;4819:9;4813:4;4809:20;4805:1;4794:9;4790:17;4783:47;4847:78;4920:4;4911:6;4847:78;:::i;:::-;4839:86;;4619:313;;;;:::o;4938:117::-;5047:1;5044;5037:12;5061:117;5170:1;5167;5160:12;5184:180;5232:77;5229:1;5222:88;5329:4;5326:1;5319:15;5353:4;5350:1;5343:15;5370:281;5453:27;5475:4;5453:27;:::i;:::-;5445:6;5441:40;5583:6;5571:10;5568:22;5547:18;5535:10;5532:34;5529:62;5526:88;;;5594:18;;:::i;:::-;5526:88;5634:10;5630:2;5623:22;5413:238;5370:281;;:::o;5657:129::-;5691:6;5718:20;;:::i;:::-;5708:30;;5747:33;5775:4;5767:6;5747:33;:::i;:::-;5657:129;;;:::o;5792:308::-;5854:4;5944:18;5936:6;5933:30;5930:56;;;5966:18;;:::i;:::-;5930:56;6004:29;6026:6;6004:29;:::i;:::-;5996:37;;6088:4;6082;6078:15;6070:23;;5792:308;;;:::o;6106:154::-;6190:6;6185:3;6180;6167:30;6252:1;6243:6;6238:3;6234:16;6227:27;6106:154;;;:::o;6266:412::-;6344:5;6369:66;6385:49;6427:6;6385:49;:::i;:::-;6369:66;:::i;:::-;6360:75;;6458:6;6451:5;6444:21;6496:4;6489:5;6485:16;6534:3;6525:6;6520:3;6516:16;6513:25;6510:112;;;6541:79;;:::i;:::-;6510:112;6631:41;6665:6;6660:3;6655;6631:41;:::i;:::-;6350:328;6266:412;;;;;:::o;6698:340::-;6754:5;6803:3;6796:4;6788:6;6784:17;6780:27;6770:122;;6811:79;;:::i;:::-;6770:122;6928:6;6915:20;6953:79;7028:3;7020:6;7013:4;7005:6;7001:17;6953:79;:::i;:::-;6944:88;;6760:278;6698:340;;;;:::o;7044:654::-;7122:6;7130;7179:2;7167:9;7158:7;7154:23;7150:32;7147:119;;;7185:79;;:::i;:::-;7147:119;7305:1;7330:53;7375:7;7366:6;7355:9;7351:22;7330:53;:::i;:::-;7320:63;;7276:117;7460:2;7449:9;7445:18;7432:32;7491:18;7483:6;7480:30;7477:117;;;7513:79;;:::i;:::-;7477:117;7618:63;7673:7;7664:6;7653:9;7649:22;7618:63;:::i;:::-;7608:73;;7403:288;7044:654;;;;;:::o;7704:311::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7943:4;7935:6;7931:17;7923:25;;8003:4;7997;7993:15;7985:23;;7704:311;;;:::o;8021:117::-;8130:1;8127;8120:12;8161:710;8257:5;8282:81;8298:64;8355:6;8298:64;:::i;:::-;8282:81;:::i;:::-;8273:90;;8383:5;8412:6;8405:5;8398:21;8446:4;8439:5;8435:16;8428:23;;8499:4;8491:6;8487:17;8479:6;8475:30;8528:3;8520:6;8517:15;8514:122;;;8547:79;;:::i;:::-;8514:122;8662:6;8645:220;8679:6;8674:3;8671:15;8645:220;;;8754:3;8783:37;8816:3;8804:10;8783:37;:::i;:::-;8778:3;8771:50;8850:4;8845:3;8841:14;8834:21;;8721:144;8705:4;8700:3;8696:14;8689:21;;8645:220;;;8649:21;8263:608;;8161:710;;;;;:::o;8894:370::-;8965:5;9014:3;9007:4;8999:6;8995:17;8991:27;8981:122;;9022:79;;:::i;:::-;8981:122;9139:6;9126:20;9164:94;9254:3;9246:6;9239:4;9231:6;9227:17;9164:94;:::i;:::-;9155:103;;8971:293;8894:370;;;;:::o;9270:307::-;9331:4;9421:18;9413:6;9410:30;9407:56;;;9443:18;;:::i;:::-;9407:56;9481:29;9503:6;9481:29;:::i;:::-;9473:37;;9565:4;9559;9555:15;9547:23;;9270:307;;;:::o;9583:410::-;9660:5;9685:65;9701:48;9742:6;9701:48;:::i;:::-;9685:65;:::i;:::-;9676:74;;9773:6;9766:5;9759:21;9811:4;9804:5;9800:16;9849:3;9840:6;9835:3;9831:16;9828:25;9825:112;;;9856:79;;:::i;:::-;9825:112;9946:41;9980:6;9975:3;9970;9946:41;:::i;:::-;9666:327;9583:410;;;;;:::o;10012:338::-;10067:5;10116:3;10109:4;10101:6;10097:17;10093:27;10083:122;;10124:79;;:::i;:::-;10083:122;10241:6;10228:20;10266:78;10340:3;10332:6;10325:4;10317:6;10313:17;10266:78;:::i;:::-;10257:87;;10073:277;10012:338;;;;:::o;10356:1509::-;10510:6;10518;10526;10534;10542;10591:3;10579:9;10570:7;10566:23;10562:33;10559:120;;;10598:79;;:::i;:::-;10559:120;10718:1;10743:53;10788:7;10779:6;10768:9;10764:22;10743:53;:::i;:::-;10733:63;;10689:117;10845:2;10871:53;10916:7;10907:6;10896:9;10892:22;10871:53;:::i;:::-;10861:63;;10816:118;11001:2;10990:9;10986:18;10973:32;11032:18;11024:6;11021:30;11018:117;;;11054:79;;:::i;:::-;11018:117;11159:78;11229:7;11220:6;11209:9;11205:22;11159:78;:::i;:::-;11149:88;;10944:303;11314:2;11303:9;11299:18;11286:32;11345:18;11337:6;11334:30;11331:117;;;11367:79;;:::i;:::-;11331:117;11472:78;11542:7;11533:6;11522:9;11518:22;11472:78;:::i;:::-;11462:88;;11257:303;11627:3;11616:9;11612:19;11599:33;11659:18;11651:6;11648:30;11645:117;;;11681:79;;:::i;:::-;11645:117;11786:62;11840:7;11831:6;11820:9;11816:22;11786:62;:::i;:::-;11776:72;;11570:288;10356:1509;;;;;;;;:::o;11871:311::-;11948:4;12038:18;12030:6;12027:30;12024:56;;;12060:18;;:::i;:::-;12024:56;12110:4;12102:6;12098:17;12090:25;;12170:4;12164;12160:15;12152:23;;11871:311;;;:::o;12205:710::-;12301:5;12326:81;12342:64;12399:6;12342:64;:::i;:::-;12326:81;:::i;:::-;12317:90;;12427:5;12456:6;12449:5;12442:21;12490:4;12483:5;12479:16;12472:23;;12543:4;12535:6;12531:17;12523:6;12519:30;12572:3;12564:6;12561:15;12558:122;;;12591:79;;:::i;:::-;12558:122;12706:6;12689:220;12723:6;12718:3;12715:15;12689:220;;;12798:3;12827:37;12860:3;12848:10;12827:37;:::i;:::-;12822:3;12815:50;12894:4;12889:3;12885:14;12878:21;;12765:144;12749:4;12744:3;12740:14;12733:21;;12689:220;;;12693:21;12307:608;;12205:710;;;;;:::o;12938:370::-;13009:5;13058:3;13051:4;13043:6;13039:17;13035:27;13025:122;;13066:79;;:::i;:::-;13025:122;13183:6;13170:20;13208:94;13298:3;13290:6;13283:4;13275:6;13271:17;13208:94;:::i;:::-;13199:103;;13015:293;12938:370;;;;:::o;13314:894::-;13432:6;13440;13489:2;13477:9;13468:7;13464:23;13460:32;13457:119;;;13495:79;;:::i;:::-;13457:119;13643:1;13632:9;13628:17;13615:31;13673:18;13665:6;13662:30;13659:117;;;13695:79;;:::i;:::-;13659:117;13800:78;13870:7;13861:6;13850:9;13846:22;13800:78;:::i;:::-;13790:88;;13586:302;13955:2;13944:9;13940:18;13927:32;13986:18;13978:6;13975:30;13972:117;;;14008:79;;:::i;:::-;13972:117;14113:78;14183:7;14174:6;14163:9;14159:22;14113:78;:::i;:::-;14103:88;;13898:303;13314:894;;;;;:::o;14214:114::-;14281:6;14315:5;14309:12;14299:22;;14214:114;;;:::o;14334:184::-;14433:11;14467:6;14462:3;14455:19;14507:4;14502:3;14498:14;14483:29;;14334:184;;;;:::o;14524:132::-;14591:4;14614:3;14606:11;;14644:4;14639:3;14635:14;14627:22;;14524:132;;;:::o;14662:108::-;14739:24;14757:5;14739:24;:::i;:::-;14734:3;14727:37;14662:108;;:::o;14776:179::-;14845:10;14866:46;14908:3;14900:6;14866:46;:::i;:::-;14944:4;14939:3;14935:14;14921:28;;14776:179;;;;:::o;14961:113::-;15031:4;15063;15058:3;15054:14;15046:22;;14961:113;;;:::o;15110:732::-;15229:3;15258:54;15306:5;15258:54;:::i;:::-;15328:86;15407:6;15402:3;15328:86;:::i;:::-;15321:93;;15438:56;15488:5;15438:56;:::i;:::-;15517:7;15548:1;15533:284;15558:6;15555:1;15552:13;15533:284;;;15634:6;15628:13;15661:63;15720:3;15705:13;15661:63;:::i;:::-;15654:70;;15747:60;15800:6;15747:60;:::i;:::-;15737:70;;15593:224;15580:1;15577;15573:9;15568:14;;15533:284;;;15537:14;15833:3;15826:10;;15234:608;;;15110:732;;;;:::o;15848:373::-;15991:4;16029:2;16018:9;16014:18;16006:26;;16078:9;16072:4;16068:20;16064:1;16053:9;16049:17;16042:47;16106:108;16209:4;16200:6;16106:108;:::i;:::-;16098:116;;15848:373;;;;:::o;16227:86::-;16262:7;16302:4;16295:5;16291:16;16280:27;;16227:86;;;:::o;16319:118::-;16390:22;16406:5;16390:22;:::i;:::-;16383:5;16380:33;16370:61;;16427:1;16424;16417:12;16370:61;16319:118;:::o;16443:135::-;16487:5;16525:6;16512:20;16503:29;;16541:31;16566:5;16541:31;:::i;:::-;16443:135;;;;:::o;16584:77::-;16621:7;16650:5;16639:16;;16584:77;;;:::o;16667:122::-;16740:24;16758:5;16740:24;:::i;:::-;16733:5;16730:35;16720:63;;16779:1;16776;16769:12;16720:63;16667:122;:::o;16795:139::-;16841:5;16879:6;16866:20;16857:29;;16895:33;16922:5;16895:33;:::i;:::-;16795:139;;;;:::o;16940:1053::-;17042:6;17050;17058;17066;17074;17082;17131:3;17119:9;17110:7;17106:23;17102:33;17099:120;;;17138:79;;:::i;:::-;17099:120;17258:1;17283:53;17328:7;17319:6;17308:9;17304:22;17283:53;:::i;:::-;17273:63;;17229:117;17385:2;17411:51;17454:7;17445:6;17434:9;17430:22;17411:51;:::i;:::-;17401:61;;17356:116;17511:2;17537:53;17582:7;17573:6;17562:9;17558:22;17537:53;:::i;:::-;17527:63;;17482:118;17639:2;17665:53;17710:7;17701:6;17690:9;17686:22;17665:53;:::i;:::-;17655:63;;17610:118;17767:3;17794:53;17839:7;17830:6;17819:9;17815:22;17794:53;:::i;:::-;17784:63;;17738:119;17896:3;17923:53;17968:7;17959:6;17948:9;17944:22;17923:53;:::i;:::-;17913:63;;17867:119;16940:1053;;;;;;;;:::o;17999:907::-;18092:6;18100;18108;18116;18124;18173:3;18161:9;18152:7;18148:23;18144:33;18141:120;;;18180:79;;:::i;:::-;18141:120;18300:1;18325:53;18370:7;18361:6;18350:9;18346:22;18325:53;:::i;:::-;18315:63;;18271:117;18427:2;18453:53;18498:7;18489:6;18478:9;18474:22;18453:53;:::i;:::-;18443:63;;18398:118;18555:2;18581:51;18624:7;18615:6;18604:9;18600:22;18581:51;:::i;:::-;18571:61;;18526:116;18681:2;18707:53;18752:7;18743:6;18732:9;18728:22;18707:53;:::i;:::-;18697:63;;18652:118;18809:3;18836:53;18881:7;18872:6;18861:9;18857:22;18836:53;:::i;:::-;18826:63;;18780:119;17999:907;;;;;;;;:::o;18912:894::-;19030:6;19038;19087:2;19075:9;19066:7;19062:23;19058:32;19055:119;;;19093:79;;:::i;:::-;19055:119;19241:1;19230:9;19226:17;19213:31;19271:18;19263:6;19260:30;19257:117;;;19293:79;;:::i;:::-;19257:117;19398:78;19468:7;19459:6;19448:9;19444:22;19398:78;:::i;:::-;19388:88;;19184:302;19553:2;19542:9;19538:18;19525:32;19584:18;19576:6;19573:30;19570:117;;;19606:79;;:::i;:::-;19570:117;19711:78;19781:7;19772:6;19761:9;19757:22;19711:78;:::i;:::-;19701:88;;19496:303;18912:894;;;;;:::o;19812:118::-;19899:24;19917:5;19899:24;:::i;:::-;19894:3;19887:37;19812:118;;:::o;19936:222::-;20029:4;20067:2;20056:9;20052:18;20044:26;;20080:71;20148:1;20137:9;20133:17;20124:6;20080:71;:::i;:::-;19936:222;;;;:::o;20164:117::-;20273:1;20270;20263:12;20301:553;20359:8;20369:6;20419:3;20412:4;20404:6;20400:17;20396:27;20386:122;;20427:79;;:::i;:::-;20386:122;20540:6;20527:20;20517:30;;20570:18;20562:6;20559:30;20556:117;;;20592:79;;:::i;:::-;20556:117;20706:4;20698:6;20694:17;20682:29;;20760:3;20752:4;20744:6;20740:17;20730:8;20726:32;20723:41;20720:128;;;20767:79;;:::i;:::-;20720:128;20301:553;;;;;:::o;20860:674::-;20940:6;20948;20956;21005:2;20993:9;20984:7;20980:23;20976:32;20973:119;;;21011:79;;:::i;:::-;20973:119;21131:1;21156:53;21201:7;21192:6;21181:9;21177:22;21156:53;:::i;:::-;21146:63;;21102:117;21286:2;21275:9;21271:18;21258:32;21317:18;21309:6;21306:30;21303:117;;;21339:79;;:::i;:::-;21303:117;21452:65;21509:7;21500:6;21489:9;21485:22;21452:65;:::i;:::-;21434:83;;;;21229:298;20860:674;;;;;:::o;21540:116::-;21610:21;21625:5;21610:21;:::i;:::-;21603:5;21600:32;21590:60;;21646:1;21643;21636:12;21590:60;21540:116;:::o;21662:133::-;21705:5;21743:6;21730:20;21721:29;;21759:30;21783:5;21759:30;:::i;:::-;21662:133;;;;:::o;21801:468::-;21866:6;21874;21923:2;21911:9;21902:7;21898:23;21894:32;21891:119;;;21929:79;;:::i;:::-;21891:119;22049:1;22074:53;22119:7;22110:6;22099:9;22095:22;22074:53;:::i;:::-;22064:63;;22020:117;22176:2;22202:50;22244:7;22235:6;22224:9;22220:22;22202:50;:::i;:::-;22192:60;;22147:115;21801:468;;;;;:::o;22275:474::-;22343:6;22351;22400:2;22388:9;22379:7;22375:23;22371:32;22368:119;;;22406:79;;:::i;:::-;22368:119;22526:1;22551:53;22596:7;22587:6;22576:9;22572:22;22551:53;:::i;:::-;22541:63;;22497:117;22653:2;22679:53;22724:7;22715:6;22704:9;22700:22;22679:53;:::i;:::-;22669:63;;22624:118;22275:474;;;;;:::o;22755:329::-;22814:6;22863:2;22851:9;22842:7;22838:23;22834:32;22831:119;;;22869:79;;:::i;:::-;22831:119;22989:1;23014:53;23059:7;23050:6;23039:9;23035:22;23014:53;:::i;:::-;23004:63;;22960:117;22755:329;;;;:::o;23090:474::-;23158:6;23166;23215:2;23203:9;23194:7;23190:23;23186:32;23183:119;;;23221:79;;:::i;:::-;23183:119;23341:1;23366:53;23411:7;23402:6;23391:9;23387:22;23366:53;:::i;:::-;23356:63;;23312:117;23468:2;23494:53;23539:7;23530:6;23519:9;23515:22;23494:53;:::i;:::-;23484:63;;23439:118;23090:474;;;;;:::o;23570:1089::-;23674:6;23682;23690;23698;23706;23755:3;23743:9;23734:7;23730:23;23726:33;23723:120;;;23762:79;;:::i;:::-;23723:120;23882:1;23907:53;23952:7;23943:6;23932:9;23928:22;23907:53;:::i;:::-;23897:63;;23853:117;24009:2;24035:53;24080:7;24071:6;24060:9;24056:22;24035:53;:::i;:::-;24025:63;;23980:118;24137:2;24163:53;24208:7;24199:6;24188:9;24184:22;24163:53;:::i;:::-;24153:63;;24108:118;24265:2;24291:53;24336:7;24327:6;24316:9;24312:22;24291:53;:::i;:::-;24281:63;;24236:118;24421:3;24410:9;24406:19;24393:33;24453:18;24445:6;24442:30;24439:117;;;24475:79;;:::i;:::-;24439:117;24580:62;24634:7;24625:6;24614:9;24610:22;24580:62;:::i;:::-;24570:72;;24364:288;23570:1089;;;;;;;;:::o;24665:147::-;24766:11;24803:3;24788:18;;24665:147;;;;:::o;24818:114::-;;:::o;24938:398::-;25097:3;25118:83;25199:1;25194:3;25118:83;:::i;:::-;25111:90;;25210:93;25299:3;25210:93;:::i;:::-;25328:1;25323:3;25319:11;25312:18;;24938:398;;;:::o;25342:379::-;25526:3;25548:147;25691:3;25548:147;:::i;:::-;25541:154;;25712:3;25705:10;;25342:379;;;:::o;25727:170::-;25867:22;25863:1;25855:6;25851:14;25844:46;25727:170;:::o;25903:366::-;26045:3;26066:67;26130:2;26125:3;26066:67;:::i;:::-;26059:74;;26142:93;26231:3;26142:93;:::i;:::-;26260:2;26255:3;26251:12;26244:19;;25903:366;;;:::o;26275:419::-;26441:4;26479:2;26468:9;26464:18;26456:26;;26528:9;26522:4;26518:20;26514:1;26503:9;26499:17;26492:47;26556:131;26682:4;26556:131;:::i;:::-;26548:139;;26275:419;;;:::o;26700:230::-;26840:34;26836:1;26828:6;26824:14;26817:58;26909:13;26904:2;26896:6;26892:15;26885:38;26700:230;:::o;26936:366::-;27078:3;27099:67;27163:2;27158:3;27099:67;:::i;:::-;27092:74;;27175:93;27264:3;27175:93;:::i;:::-;27293:2;27288:3;27284:12;27277:19;;26936:366;;;:::o;27308:419::-;27474:4;27512:2;27501:9;27497:18;27489:26;;27561:9;27555:4;27551:20;27547:1;27536:9;27532:17;27525:47;27589:131;27715:4;27589:131;:::i;:::-;27581:139;;27308:419;;;:::o;27733:182::-;27873:34;27869:1;27861:6;27857:14;27850:58;27733:182;:::o;27921:366::-;28063:3;28084:67;28148:2;28143:3;28084:67;:::i;:::-;28077:74;;28160:93;28249:3;28160:93;:::i;:::-;28278:2;28273:3;28269:12;28262:19;;27921:366;;;:::o;28293:419::-;28459:4;28497:2;28486:9;28482:18;28474:26;;28546:9;28540:4;28536:20;28532:1;28521:9;28517:17;28510:47;28574:131;28700:4;28574:131;:::i;:::-;28566:139;;28293:419;;;:::o;28718:180::-;28766:77;28763:1;28756:88;28863:4;28860:1;28853:15;28887:4;28884:1;28877:15;28904:320;28948:6;28985:1;28979:4;28975:12;28965:22;;29032:1;29026:4;29022:12;29053:18;29043:81;;29109:4;29101:6;29097:17;29087:27;;29043:81;29171:2;29163:6;29160:14;29140:18;29137:38;29134:84;;;29190:18;;:::i;:::-;29134:84;28955:269;28904:320;;;:::o;29230:175::-;29370:27;29366:1;29358:6;29354:14;29347:51;29230:175;:::o;29411:366::-;29553:3;29574:67;29638:2;29633:3;29574:67;:::i;:::-;29567:74;;29650:93;29739:3;29650:93;:::i;:::-;29768:2;29763:3;29759:12;29752:19;;29411:366;;;:::o;29783:419::-;29949:4;29987:2;29976:9;29972:18;29964:26;;30036:9;30030:4;30026:20;30022:1;30011:9;30007:17;30000:47;30064:131;30190:4;30064:131;:::i;:::-;30056:139;;29783:419;;;:::o;30208:237::-;30348:34;30344:1;30336:6;30332:14;30325:58;30417:20;30412:2;30404:6;30400:15;30393:45;30208:237;:::o;30451:366::-;30593:3;30614:67;30678:2;30673:3;30614:67;:::i;:::-;30607:74;;30690:93;30779:3;30690:93;:::i;:::-;30808:2;30803:3;30799:12;30792:19;;30451:366;;;:::o;30823:419::-;30989:4;31027:2;31016:9;31012:18;31004:26;;31076:9;31070:4;31066:20;31062:1;31051:9;31047:17;31040:47;31104:131;31230:4;31104:131;:::i;:::-;31096:139;;30823:419;;;:::o;31248:221::-;31388:34;31384:1;31376:6;31372:14;31365:58;31457:4;31452:2;31444:6;31440:15;31433:29;31248:221;:::o;31475:366::-;31617:3;31638:67;31702:2;31697:3;31638:67;:::i;:::-;31631:74;;31714:93;31803:3;31714:93;:::i;:::-;31832:2;31827:3;31823:12;31816:19;;31475:366;;;:::o;31847:419::-;32013:4;32051:2;32040:9;32036:18;32028:26;;32100:9;32094:4;32090:20;32086:1;32075:9;32071:17;32064:47;32128:131;32254:4;32128:131;:::i;:::-;32120:139;;31847:419;;;:::o;32272:228::-;32412:34;32408:1;32400:6;32396:14;32389:58;32481:11;32476:2;32468:6;32464:15;32457:36;32272:228;:::o;32506:366::-;32648:3;32669:67;32733:2;32728:3;32669:67;:::i;:::-;32662:74;;32745:93;32834:3;32745:93;:::i;:::-;32863:2;32858:3;32854:12;32847:19;;32506:366;;;:::o;32878:419::-;33044:4;33082:2;33071:9;33067:18;33059:26;;33131:9;33125:4;33121:20;33117:1;33106:9;33102:17;33095:47;33159:131;33285:4;33159:131;:::i;:::-;33151:139;;32878:419;;;:::o;33303:180::-;33351:77;33348:1;33341:88;33448:4;33445:1;33438:15;33472:4;33469:1;33462:15;33489:180;33537:77;33534:1;33527:88;33634:4;33631:1;33624:15;33658:4;33655:1;33648:15;33675:233;33714:3;33737:24;33755:5;33737:24;:::i;:::-;33728:33;;33783:66;33776:5;33773:77;33770:103;;;33853:18;;:::i;:::-;33770:103;33900:1;33893:5;33889:13;33882:20;;33675:233;;;:::o;33914:175::-;34054:27;34050:1;34042:6;34038:14;34031:51;33914:175;:::o;34095:366::-;34237:3;34258:67;34322:2;34317:3;34258:67;:::i;:::-;34251:74;;34334:93;34423:3;34334:93;:::i;:::-;34452:2;34447:3;34443:12;34436:19;;34095:366;;;:::o;34467:419::-;34633:4;34671:2;34660:9;34656:18;34648:26;;34720:9;34714:4;34710:20;34706:1;34695:9;34691:17;34684:47;34748:131;34874:4;34748:131;:::i;:::-;34740:139;;34467:419;;;:::o;34892:94::-;34925:8;34973:5;34969:2;34965:14;34944:35;;34892:94;;;:::o;34992:::-;35031:7;35060:20;35074:5;35060:20;:::i;:::-;35049:31;;34992:94;;;:::o;35092:100::-;35131:7;35160:26;35180:5;35160:26;:::i;:::-;35149:37;;35092:100;;;:::o;35198:157::-;35303:45;35323:24;35341:5;35323:24;:::i;:::-;35303:45;:::i;:::-;35298:3;35291:58;35198:157;;:::o;35361:79::-;35400:7;35429:5;35418:16;;35361:79;;;:::o;35446:157::-;35551:45;35571:24;35589:5;35571:24;:::i;:::-;35551:45;:::i;:::-;35546:3;35539:58;35446:157;;:::o;35609:820::-;35833:3;35848:75;35919:3;35910:6;35848:75;:::i;:::-;35948:2;35943:3;35939:12;35932:19;;35961:75;36032:3;36023:6;35961:75;:::i;:::-;36061:2;36056:3;36052:12;36045:19;;36074:75;36145:3;36136:6;36074:75;:::i;:::-;36174:2;36169:3;36165:12;36158:19;;36187:75;36258:3;36249:6;36187:75;:::i;:::-;36287:2;36282:3;36278:12;36271:19;;36300:75;36371:3;36362:6;36300:75;:::i;:::-;36400:2;36395:3;36391:12;36384:19;;36420:3;36413:10;;35609:820;;;;;;;;:::o;36435:148::-;36537:11;36574:3;36559:18;;36435:148;;;;:::o;36589:214::-;36729:66;36725:1;36717:6;36713:14;36706:90;36589:214;:::o;36809:402::-;36969:3;36990:85;37072:2;37067:3;36990:85;:::i;:::-;36983:92;;37084:93;37173:3;37084:93;:::i;:::-;37202:2;37197:3;37193:12;37186:19;;36809:402;;;:::o;37217:79::-;37256:7;37285:5;37274:16;;37217:79;;;:::o;37302:157::-;37407:45;37427:24;37445:5;37427:24;:::i;:::-;37407:45;:::i;:::-;37402:3;37395:58;37302:157;;:::o;37465:522::-;37678:3;37700:148;37844:3;37700:148;:::i;:::-;37693:155;;37858:75;37929:3;37920:6;37858:75;:::i;:::-;37958:2;37953:3;37949:12;37942:19;;37978:3;37971:10;;37465:522;;;;:::o;37993:118::-;38080:24;38098:5;38080:24;:::i;:::-;38075:3;38068:37;37993:118;;:::o;38117:112::-;38200:22;38216:5;38200:22;:::i;:::-;38195:3;38188:35;38117:112;;:::o;38235:545::-;38408:4;38446:3;38435:9;38431:19;38423:27;;38460:71;38528:1;38517:9;38513:17;38504:6;38460:71;:::i;:::-;38541:68;38605:2;38594:9;38590:18;38581:6;38541:68;:::i;:::-;38619:72;38687:2;38676:9;38672:18;38663:6;38619:72;:::i;:::-;38701;38769:2;38758:9;38754:18;38745:6;38701:72;:::i;:::-;38235:545;;;;;;;:::o;38786:167::-;38926:19;38922:1;38914:6;38910:14;38903:43;38786:167;:::o;38959:366::-;39101:3;39122:67;39186:2;39181:3;39122:67;:::i;:::-;39115:74;;39198:93;39287:3;39198:93;:::i;:::-;39316:2;39311:3;39307:12;39300:19;;38959:366;;;:::o;39331:419::-;39497:4;39535:2;39524:9;39520:18;39512:26;;39584:9;39578:4;39574:20;39570:1;39559:9;39555:17;39548:47;39612:131;39738:4;39612:131;:::i;:::-;39604:139;;39331:419;;;:::o;39756:178::-;39896:30;39892:1;39884:6;39880:14;39873:54;39756:178;:::o;39940:366::-;40082:3;40103:67;40167:2;40162:3;40103:67;:::i;:::-;40096:74;;40179:93;40268:3;40179:93;:::i;:::-;40297:2;40292:3;40288:12;40281:19;;39940:366;;;:::o;40312:419::-;40478:4;40516:2;40505:9;40501:18;40493:26;;40565:9;40559:4;40555:20;40551:1;40540:9;40536:17;40529:47;40593:131;40719:4;40593:131;:::i;:::-;40585:139;;40312:419;;;:::o;40737:348::-;40777:7;40800:20;40818:1;40800:20;:::i;:::-;40795:25;;40834:20;40852:1;40834:20;:::i;:::-;40829:25;;41022:1;40954:66;40950:74;40947:1;40944:81;40939:1;40932:9;40925:17;40921:105;40918:131;;;41029:18;;:::i;:::-;40918:131;41077:1;41074;41070:9;41059:20;;40737:348;;;;:::o;41091:234::-;41231:34;41227:1;41219:6;41215:14;41208:58;41300:17;41295:2;41287:6;41283:15;41276:42;41091:234;:::o;41331:366::-;41473:3;41494:67;41558:2;41553:3;41494:67;:::i;:::-;41487:74;;41570:93;41659:3;41570:93;:::i;:::-;41688:2;41683:3;41679:12;41672:19;;41331:366;;;:::o;41703:419::-;41869:4;41907:2;41896:9;41892:18;41884:26;;41956:9;41950:4;41946:20;41942:1;41931:9;41927:17;41920:47;41984:131;42110:4;41984:131;:::i;:::-;41976:139;;41703:419;;;:::o;42128:178::-;42268:30;42264:1;42256:6;42252:14;42245:54;42128:178;:::o;42312:366::-;42454:3;42475:67;42539:2;42534:3;42475:67;:::i;:::-;42468:74;;42551:93;42640:3;42551:93;:::i;:::-;42669:2;42664:3;42660:12;42653:19;;42312:366;;;:::o;42684:419::-;42850:4;42888:2;42877:9;42873:18;42865:26;;42937:9;42931:4;42927:20;42923:1;42912:9;42908:17;42901:47;42965:131;43091:4;42965:131;:::i;:::-;42957:139;;42684:419;;;:::o;43109:174::-;43249:26;43245:1;43237:6;43233:14;43226:50;43109:174;:::o;43289:366::-;43431:3;43452:67;43516:2;43511:3;43452:67;:::i;:::-;43445:74;;43528:93;43617:3;43528:93;:::i;:::-;43646:2;43641:3;43637:12;43630:19;;43289:366;;;:::o;43661:419::-;43827:4;43865:2;43854:9;43850:18;43842:26;;43914:9;43908:4;43904:20;43900:1;43889:9;43885:17;43878:47;43942:131;44068:4;43942:131;:::i;:::-;43934:139;;43661:419;;;:::o;44086:305::-;44126:3;44145:20;44163:1;44145:20;:::i;:::-;44140:25;;44179:20;44197:1;44179:20;:::i;:::-;44174:25;;44333:1;44265:66;44261:74;44258:1;44255:81;44252:107;;;44339:18;;:::i;:::-;44252:107;44383:1;44380;44376:9;44369:16;;44086:305;;;;:::o;44397:228::-;44537:34;44533:1;44525:6;44521:14;44514:58;44606:11;44601:2;44593:6;44589:15;44582:36;44397:228;:::o;44631:366::-;44773:3;44794:67;44858:2;44853:3;44794:67;:::i;:::-;44787:74;;44870:93;44959:3;44870:93;:::i;:::-;44988:2;44983:3;44979:12;44972:19;;44631:366;;;:::o;45003:419::-;45169:4;45207:2;45196:9;45192:18;45184:26;;45256:9;45250:4;45246:20;45242:1;45231:9;45227:17;45220:47;45284:131;45410:4;45284:131;:::i;:::-;45276:139;;45003:419;;;:::o;45428:228::-;45568:34;45564:1;45556:6;45552:14;45545:58;45637:11;45632:2;45624:6;45620:15;45613:36;45428:228;:::o;45662:366::-;45804:3;45825:67;45889:2;45884:3;45825:67;:::i;:::-;45818:74;;45901:93;45990:3;45901:93;:::i;:::-;46019:2;46014:3;46010:12;46003:19;;45662:366;;;:::o;46034:419::-;46200:4;46238:2;46227:9;46223:18;46215:26;;46287:9;46281:4;46277:20;46273:1;46262:9;46258:17;46251:47;46315:131;46441:4;46315:131;:::i;:::-;46307:139;;46034:419;;;:::o;46459:225::-;46599:34;46595:1;46587:6;46583:14;46576:58;46668:8;46663:2;46655:6;46651:15;46644:33;46459:225;:::o;46690:366::-;46832:3;46853:67;46917:2;46912:3;46853:67;:::i;:::-;46846:74;;46929:93;47018:3;46929:93;:::i;:::-;47047:2;47042:3;47038:12;47031:19;;46690:366;;;:::o;47062:419::-;47228:4;47266:2;47255:9;47251:18;47243:26;;47315:9;47309:4;47305:20;47301:1;47290:9;47286:17;47279:47;47343:131;47469:4;47343:131;:::i;:::-;47335:139;;47062:419;;;:::o;47487:227::-;47627:34;47623:1;47615:6;47611:14;47604:58;47696:10;47691:2;47683:6;47679:15;47672:35;47487:227;:::o;47720:366::-;47862:3;47883:67;47947:2;47942:3;47883:67;:::i;:::-;47876:74;;47959:93;48048:3;47959:93;:::i;:::-;48077:2;48072:3;48068:12;48061:19;;47720:366;;;:::o;48092:419::-;48258:4;48296:2;48285:9;48281:18;48273:26;;48345:9;48339:4;48335:20;48331:1;48320:9;48316:17;48309:47;48373:131;48499:4;48373:131;:::i;:::-;48365:139;;48092:419;;;:::o;48517:224::-;48657:34;48653:1;48645:6;48641:14;48634:58;48726:7;48721:2;48713:6;48709:15;48702:32;48517:224;:::o;48747:366::-;48889:3;48910:67;48974:2;48969:3;48910:67;:::i;:::-;48903:74;;48986:93;49075:3;48986:93;:::i;:::-;49104:2;49099:3;49095:12;49088:19;;48747:366;;;:::o;49119:419::-;49285:4;49323:2;49312:9;49308:18;49300:26;;49372:9;49366:4;49362:20;49358:1;49347:9;49343:17;49336:47;49400:131;49526:4;49400:131;:::i;:::-;49392:139;;49119:419;;;:::o;49544:229::-;49684:34;49680:1;49672:6;49668:14;49661:58;49753:12;49748:2;49740:6;49736:15;49729:37;49544:229;:::o;49779:366::-;49921:3;49942:67;50006:2;50001:3;49942:67;:::i;:::-;49935:74;;50018:93;50107:3;50018:93;:::i;:::-;50136:2;50131:3;50127:12;50120:19;;49779:366;;;:::o;50151:419::-;50317:4;50355:2;50344:9;50340:18;50332:26;;50404:9;50398:4;50394:20;50390:1;50379:9;50375:17;50368:47;50432:131;50558:4;50432:131;:::i;:::-;50424:139;;50151:419;;;:::o;50576:634::-;50797:4;50835:2;50824:9;50820:18;50812:26;;50884:9;50878:4;50874:20;50870:1;50859:9;50855:17;50848:47;50912:108;51015:4;51006:6;50912:108;:::i;:::-;50904:116;;51067:9;51061:4;51057:20;51052:2;51041:9;51037:18;51030:48;51095:108;51198:4;51189:6;51095:108;:::i;:::-;51087:116;;50576:634;;;;;:::o;51216:220::-;51356:34;51352:1;51344:6;51340:14;51333:58;51425:3;51420:2;51412:6;51408:15;51401:28;51216:220;:::o;51442:366::-;51584:3;51605:67;51669:2;51664:3;51605:67;:::i;:::-;51598:74;;51681:93;51770:3;51681:93;:::i;:::-;51799:2;51794:3;51790:12;51783:19;;51442:366;;;:::o;51814:419::-;51980:4;52018:2;52007:9;52003:18;51995:26;;52067:9;52061:4;52057:20;52053:1;52042:9;52038:17;52031:47;52095:131;52221:4;52095:131;:::i;:::-;52087:139;;51814:419;;;:::o;52239:332::-;52360:4;52398:2;52387:9;52383:18;52375:26;;52411:71;52479:1;52468:9;52464:17;52455:6;52411:71;:::i;:::-;52492:72;52560:2;52549:9;52545:18;52536:6;52492:72;:::i;:::-;52239:332;;;;;:::o;52577:222::-;52717:34;52713:1;52705:6;52701:14;52694:58;52786:5;52781:2;52773:6;52769:15;52762:30;52577:222;:::o;52805:366::-;52947:3;52968:67;53032:2;53027:3;52968:67;:::i;:::-;52961:74;;53044:93;53133:3;53044:93;:::i;:::-;53162:2;53157:3;53153:12;53146:19;;52805:366;;;:::o;53177:419::-;53343:4;53381:2;53370:9;53366:18;53358:26;;53430:9;53424:4;53420:20;53416:1;53405:9;53401:17;53394:47;53458:131;53584:4;53458:131;:::i;:::-;53450:139;;53177:419;;;:::o;53602:223::-;53742:34;53738:1;53730:6;53726:14;53719:58;53811:6;53806:2;53798:6;53794:15;53787:31;53602:223;:::o;53831:366::-;53973:3;53994:67;54058:2;54053:3;53994:67;:::i;:::-;53987:74;;54070:93;54159:3;54070:93;:::i;:::-;54188:2;54183:3;54179:12;54172:19;;53831:366;;;:::o;54203:419::-;54369:4;54407:2;54396:9;54392:18;54384:26;;54456:9;54450:4;54446:20;54442:1;54431:9;54427:17;54420:47;54484:131;54610:4;54484:131;:::i;:::-;54476:139;;54203:419;;;:::o;54628:98::-;54679:6;54713:5;54707:12;54697:22;;54628:98;;;:::o;54732:168::-;54815:11;54849:6;54844:3;54837:19;54889:4;54884:3;54880:14;54865:29;;54732:168;;;;:::o;54906:360::-;54992:3;55020:38;55052:5;55020:38;:::i;:::-;55074:70;55137:6;55132:3;55074:70;:::i;:::-;55067:77;;55153:52;55198:6;55193:3;55186:4;55179:5;55175:16;55153:52;:::i;:::-;55230:29;55252:6;55230:29;:::i;:::-;55225:3;55221:39;55214:46;;54996:270;54906:360;;;;:::o;55272:1053::-;55595:4;55633:3;55622:9;55618:19;55610:27;;55647:71;55715:1;55704:9;55700:17;55691:6;55647:71;:::i;:::-;55728:72;55796:2;55785:9;55781:18;55772:6;55728:72;:::i;:::-;55847:9;55841:4;55837:20;55832:2;55821:9;55817:18;55810:48;55875:108;55978:4;55969:6;55875:108;:::i;:::-;55867:116;;56030:9;56024:4;56020:20;56015:2;56004:9;56000:18;55993:48;56058:108;56161:4;56152:6;56058:108;:::i;:::-;56050:116;;56214:9;56208:4;56204:20;56198:3;56187:9;56183:19;56176:49;56242:76;56313:4;56304:6;56242:76;:::i;:::-;56234:84;;55272:1053;;;;;;;;:::o;56331:141::-;56387:5;56418:6;56412:13;56403:22;;56434:32;56460:5;56434:32;:::i;:::-;56331:141;;;;:::o;56478:349::-;56547:6;56596:2;56584:9;56575:7;56571:23;56567:32;56564:119;;;56602:79;;:::i;:::-;56564:119;56722:1;56747:63;56802:7;56793:6;56782:9;56778:22;56747:63;:::i;:::-;56737:73;;56693:127;56478:349;;;;:::o;56833:106::-;56877:8;56926:5;56921:3;56917:15;56896:36;;56833:106;;;:::o;56945:183::-;56980:3;57018:1;57000:16;56997:23;56994:128;;;57056:1;57053;57050;57035:23;57078:34;57109:1;57103:8;57078:34;:::i;:::-;57071:41;;56994:128;56945:183;:::o;57134:711::-;57173:3;57211:4;57193:16;57190:26;57187:39;;;57219:5;;57187:39;57248:20;;:::i;:::-;57323:1;57305:16;57301:24;57298:1;57292:4;57277:49;57356:4;57350:11;57455:16;57448:4;57440:6;57436:17;57433:39;57400:18;57392:6;57389:30;57373:113;57370:146;;;57501:5;;;;57370:146;57547:6;57541:4;57537:17;57583:3;57577:10;57610:18;57602:6;57599:30;57596:43;;;57632:5;;;;;;57596:43;57680:6;57673:4;57668:3;57664:14;57660:27;57739:1;57721:16;57717:24;57711:4;57707:35;57702:3;57699:44;57696:57;;;57746:5;;;;;;;57696:57;57763;57811:6;57805:4;57801:17;57793:6;57789:30;57783:4;57763:57;:::i;:::-;57836:3;57829:10;;57177:668;;;;;57134:711;;:::o;57851:239::-;57991:34;57987:1;57979:6;57975:14;57968:58;58060:22;58055:2;58047:6;58043:15;58036:47;57851:239;:::o;58096:366::-;58238:3;58259:67;58323:2;58318:3;58259:67;:::i;:::-;58252:74;;58335:93;58424:3;58335:93;:::i;:::-;58453:2;58448:3;58444:12;58437:19;;58096:366;;;:::o;58468:419::-;58634:4;58672:2;58661:9;58657:18;58649:26;;58721:9;58715:4;58711:20;58707:1;58696:9;58692:17;58685:47;58749:131;58875:4;58749:131;:::i;:::-;58741:139;;58468:419;;;:::o;58893:227::-;59033:34;59029:1;59021:6;59017:14;59010:58;59102:10;59097:2;59089:6;59085:15;59078:35;58893:227;:::o;59126:366::-;59268:3;59289:67;59353:2;59348:3;59289:67;:::i;:::-;59282:74;;59365:93;59454:3;59365:93;:::i;:::-;59483:2;59478:3;59474:12;59467:19;;59126:366;;;:::o;59498:419::-;59664:4;59702:2;59691:9;59687:18;59679:26;;59751:9;59745:4;59741:20;59737:1;59726:9;59722:17;59715:47;59779:131;59905:4;59779:131;:::i;:::-;59771:139;;59498:419;;;:::o;59923:751::-;60146:4;60184:3;60173:9;60169:19;60161:27;;60198:71;60266:1;60255:9;60251:17;60242:6;60198:71;:::i;:::-;60279:72;60347:2;60336:9;60332:18;60323:6;60279:72;:::i;:::-;60361;60429:2;60418:9;60414:18;60405:6;60361:72;:::i;:::-;60443;60511:2;60500:9;60496:18;60487:6;60443:72;:::i;:::-;60563:9;60557:4;60553:20;60547:3;60536:9;60532:19;60525:49;60591:76;60662:4;60653:6;60591:76;:::i;:::-;60583:84;;59923:751;;;;;;;;:::o
Swarm Source
ipfs://23dab73a335a100d7df2ad8ee6241f0639b75dacdac977d78fabec9e2a30e4cb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.