Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
259
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MetaTrees
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-15 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/MetaTrees.sol pragma solidity >=0.7.0 <0.9.0; contract MetaTrees is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.035 ether; uint256 public maxSupply = 25000; uint256 public maxMintAmountPerTx = 10; bool public paused = true; bool public revealed = true; bool public onlyWhitelisted = true; mapping(address => uint256) private allowList; constructor() ERC721("MetaTrees", "MFT") { setHiddenMetadataUri("ipfs://CID/hidden.json"); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function totalSupply() public view returns (uint256) { return supply.current(); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); if(onlyWhitelisted == true){ require(_mintAmount <= allowList[msg.sender], "Exceeded max available to purchase"); allowList[msg.sender] -= _mintAmount; } _mintLoop(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setAllowList(address[] calldata _addresses, uint256 _numAllowedToMint) external onlyOwner { for (uint256 i = 0; i < _addresses.length; i++) { allowList[_addresses[i]] = _numAllowedToMint; } } function numAvailableToMint(address _addr) external view returns (uint256) { return allowList[_addr]; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { // This will transfer the remaining contract balance to the owner. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ============================================================================= } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"numAvailableToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_numAllowedToMint","type":"uint256"}],"name":"setAllowList","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600890805190602001906200002b9291906200039e565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000799291906200039e565b50667c585087238000600b556161a8600c55600a600d556001600e60006101000a81548160ff0219169083151502179055506001600e60016101000a81548160ff0219169083151502179055506001600e60026101000a81548160ff021916908315150217905550348015620000ee57600080fd5b506040518060400160405280600981526020017f4d657461547265657300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d465400000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001739291906200039e565b5080600190805190602001906200018c9291906200039e565b505050620001af620001a3620001fb60201b60201c565b6200020360201b60201c565b620001f56040518060400160405280601681526020017f697066733a2f2f4349442f68696464656e2e6a736f6e00000000000000000000815250620002c960201b60201c565b62000536565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002d9620001fb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ff6200037460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000358576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034f9062000475565b60405180910390fd5b80600a9080519060200190620003709291906200039e565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003ac90620004a8565b90600052602060002090601f016020900481019282620003d057600085556200041c565b82601f10620003eb57805160ff19168380011785556200041c565b828001600101855582156200041c579182015b828111156200041b578251825591602001919060010190620003fe565b5b5090506200042b91906200042f565b5090565b5b808211156200044a57600081600090555060010162000430565b5090565b60006200045d60208362000497565b91506200046a826200050d565b602082019050919050565b6000602082019050818103600083015262000490816200044e565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004c157607f821691505b60208210811415620004d857620004d7620004de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61472b80620005466000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063b071401b116100ab578063d5abeb011161006f578063d5abeb011461084e578063e0a8085314610879578063e985e9c5146108a2578063efbd73f4146108df578063f2fde38b146109085761023b565b8063b071401b14610759578063b6dfe05d14610782578063b88d4fde146107ab578063c04a2836146107d4578063c87b56dd146108115761023b565b806395d89b41116100f257806395d89b41146106935780639c70b512146106be578063a0712d68146106e9578063a22cb46514610705578063a45ba8e71461072e5761023b565b806370a08231146105c0578063715018a6146105fd5780637ec4a659146106145780638da5cb5b1461063d57806394354fd0146106685761023b565b80633ccfd60b116101bc578063518302271161018057806351830227146104d75780635503a0e8146105025780635c975abb1461052d57806362b99ad4146105585780636352211e146105835761023b565b80633ccfd60b1461040857806342842e0e1461041f578063438b63001461044857806344a0d68a146104855780634fdd43cb146104ae5761023b565b806316ba10e01161020357806316ba10e01461033957806316c38b3c1461036257806318160ddd1461038b57806323b872dd146103b65780633c952764146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906132b9565b610931565b604051610274919061396e565b60405180910390f35b34801561028957600080fd5b50610292610a13565b60405161029f9190613989565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061335c565b610aa5565b6040516102dc91906138e5565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906131ec565b610b2a565b005b34801561031a57600080fd5b50610323610c42565b6040516103309190613c4b565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613313565b610c48565b005b34801561036e57600080fd5b506103896004803603810190610384919061328c565b610cde565b005b34801561039757600080fd5b506103a0610d77565b6040516103ad9190613c4b565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d891906130d6565b610d88565b005b3480156103eb57600080fd5b506104066004803603810190610401919061328c565b610de8565b005b34801561041457600080fd5b5061041d610e81565b005b34801561042b57600080fd5b50610446600480360381019061044191906130d6565b610f7d565b005b34801561045457600080fd5b5061046f600480360381019061046a9190613069565b610f9d565b60405161047c919061394c565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a7919061335c565b6110a8565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190613313565b61112e565b005b3480156104e357600080fd5b506104ec6111c4565b6040516104f9919061396e565b60405180910390f35b34801561050e57600080fd5b506105176111d7565b6040516105249190613989565b60405180910390f35b34801561053957600080fd5b50610542611265565b60405161054f919061396e565b60405180910390f35b34801561056457600080fd5b5061056d611278565b60405161057a9190613989565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a5919061335c565b611306565b6040516105b791906138e5565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190613069565b6113b8565b6040516105f49190613c4b565b60405180910390f35b34801561060957600080fd5b50610612611470565b005b34801561062057600080fd5b5061063b60048036038101906106369190613313565b6114f8565b005b34801561064957600080fd5b5061065261158e565b60405161065f91906138e5565b60405180910390f35b34801561067457600080fd5b5061067d6115b8565b60405161068a9190613c4b565b60405180910390f35b34801561069f57600080fd5b506106a86115be565b6040516106b59190613989565b60405180910390f35b3480156106ca57600080fd5b506106d3611650565b6040516106e0919061396e565b60405180910390f35b61070360048036038101906106fe919061335c565b611663565b005b34801561071157600080fd5b5061072c600480360381019061072791906131ac565b6118b1565b005b34801561073a57600080fd5b506107436118c7565b6040516107509190613989565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b919061335c565b611955565b005b34801561078e57600080fd5b506107a960048036038101906107a4919061322c565b6119db565b005b3480156107b757600080fd5b506107d260048036038101906107cd9190613129565b611ae9565b005b3480156107e057600080fd5b506107fb60048036038101906107f69190613069565b611b4b565b6040516108089190613c4b565b60405180910390f35b34801561081d57600080fd5b506108386004803603810190610833919061335c565b611b94565b6040516108459190613989565b60405180910390f35b34801561085a57600080fd5b50610863611ced565b6040516108709190613c4b565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b919061328c565b611cf3565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190613096565b611d8c565b6040516108d6919061396e565b60405180910390f35b3480156108eb57600080fd5b5061090660048036038101906109019190613389565b611e20565b005b34801561091457600080fd5b5061092f600480360381019061092a9190613069565b611f56565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0c5750610a0b8261204e565b5b9050919050565b606060008054610a2290613f54565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4e90613f54565b8015610a9b5780601f10610a7057610100808354040283529160200191610a9b565b820191906000526020600020905b815481529060010190602001808311610a7e57829003601f168201915b5050505050905090565b6000610ab0826120b8565b610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613b2b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3582611306565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90613bab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc5612124565b73ffffffffffffffffffffffffffffffffffffffff161480610bf45750610bf381610bee612124565b611d8c565b5b610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90613aab565b60405180910390fd5b610c3d838361212c565b505050565b600b5481565b610c50612124565b73ffffffffffffffffffffffffffffffffffffffff16610c6e61158e565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613b4b565b60405180910390fd5b8060099080519060200190610cda929190612e27565b5050565b610ce6612124565b73ffffffffffffffffffffffffffffffffffffffff16610d0461158e565b73ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613b4b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610d8360076121e5565b905090565b610d99610d93612124565b826121f3565b610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90613c0b565b60405180910390fd5b610de38383836122d1565b505050565b610df0612124565b73ffffffffffffffffffffffffffffffffffffffff16610e0e61158e565b73ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613b4b565b60405180910390fd5b80600e60026101000a81548160ff02191690831515021790555050565b610e89612124565b73ffffffffffffffffffffffffffffffffffffffff16610ea761158e565b73ffffffffffffffffffffffffffffffffffffffff1614610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490613b4b565b60405180910390fd5b6000610f0761158e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f2a906138d0565b60006040518083038185875af1925050503d8060008114610f67576040519150601f19603f3d011682016040523d82523d6000602084013e610f6c565b606091505b5050905080610f7a57600080fd5b50565b610f9883838360405180602001604052806000815250611ae9565b505050565b60606000610faa836113b8565b905060008167ffffffffffffffff811115610fc857610fc76140ed565b5b604051908082528060200260200182016040528015610ff65781602001602082028036833780820191505090505b50905060006001905060005b83811080156110135750600c548211155b1561109c57600061102383611306565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611088578284838151811061106d5761106c6140be565b5b602002602001018181525050818061108490613fb7565b9250505b828061109390613fb7565b93505050611002565b82945050505050919050565b6110b0612124565b73ffffffffffffffffffffffffffffffffffffffff166110ce61158e565b73ffffffffffffffffffffffffffffffffffffffff1614611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90613b4b565b60405180910390fd5b80600b8190555050565b611136612124565b73ffffffffffffffffffffffffffffffffffffffff1661115461158e565b73ffffffffffffffffffffffffffffffffffffffff16146111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190613b4b565b60405180910390fd5b80600a90805190602001906111c0929190612e27565b5050565b600e60019054906101000a900460ff1681565b600980546111e490613f54565b80601f016020809104026020016040519081016040528092919081815260200182805461121090613f54565b801561125d5780601f106112325761010080835404028352916020019161125d565b820191906000526020600020905b81548152906001019060200180831161124057829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b6008805461128590613f54565b80601f01602080910402602001604051908101604052809291908181526020018280546112b190613f54565b80156112fe5780601f106112d3576101008083540402835291602001916112fe565b820191906000526020600020905b8154815290600101906020018083116112e157829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613aeb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090613acb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611478612124565b73ffffffffffffffffffffffffffffffffffffffff1661149661158e565b73ffffffffffffffffffffffffffffffffffffffff16146114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390613b4b565b60405180910390fd5b6114f66000612538565b565b611500612124565b73ffffffffffffffffffffffffffffffffffffffff1661151e61158e565b73ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90613b4b565b60405180910390fd5b806008908051906020019061158a929190612e27565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546115cd90613f54565b80601f01602080910402602001604051908101604052809291908181526020018280546115f990613f54565b80156116465780601f1061161b57610100808354040283529160200191611646565b820191906000526020600020905b81548152906001019060200180831161162957829003601f168201915b5050505050905090565b600e60029054906101000a900460ff1681565b806000811180156116765750600d548111155b6116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613a2b565b60405180910390fd5b600c54816116c360076121e5565b6116cd9190613d89565b111561170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590613beb565b60405180910390fd5b600e60009054906101000a900460ff161561175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590613b6b565b60405180910390fd5b81600b5461176c9190613e10565b3410156117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590613c2b565b60405180910390fd5b60011515600e60029054906101000a900460ff16151514156118a357600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482111561184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184390613bcb565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461189b9190613e6a565b925050819055505b6118ad33836125fe565b5050565b6118c36118bc612124565b838361263e565b5050565b600a80546118d490613f54565b80601f016020809104026020016040519081016040528092919081815260200182805461190090613f54565b801561194d5780601f106119225761010080835404028352916020019161194d565b820191906000526020600020905b81548152906001019060200180831161193057829003601f168201915b505050505081565b61195d612124565b73ffffffffffffffffffffffffffffffffffffffff1661197b61158e565b73ffffffffffffffffffffffffffffffffffffffff16146119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890613b4b565b60405180910390fd5b80600d8190555050565b6119e3612124565b73ffffffffffffffffffffffffffffffffffffffff16611a0161158e565b73ffffffffffffffffffffffffffffffffffffffff1614611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90613b4b565b60405180910390fd5b60005b83839050811015611ae35781600f6000868685818110611a7d57611a7c6140be565b5b9050602002016020810190611a929190613069565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611adb90613fb7565b915050611a5a565b50505050565b611afa611af4612124565b836121f3565b611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090613c0b565b60405180910390fd5b611b45848484846127ab565b50505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060611b9f826120b8565b611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590613b8b565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611c8c57600a8054611c0790613f54565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3390613f54565b8015611c805780601f10611c5557610100808354040283529160200191611c80565b820191906000526020600020905b815481529060010190602001808311611c6357829003601f168201915b50505050509050611ce8565b6000611c96612807565b90506000815111611cb65760405180602001604052806000815250611ce4565b80611cc084612899565b6009604051602001611cd49392919061389f565b6040516020818303038152906040525b9150505b919050565b600c5481565b611cfb612124565b73ffffffffffffffffffffffffffffffffffffffff16611d1961158e565b73ffffffffffffffffffffffffffffffffffffffff1614611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690613b4b565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611e335750600d548111155b611e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6990613a2b565b60405180910390fd5b600c5481611e8060076121e5565b611e8a9190613d89565b1115611ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec290613beb565b60405180910390fd5b611ed3612124565b73ffffffffffffffffffffffffffffffffffffffff16611ef161158e565b73ffffffffffffffffffffffffffffffffffffffff1614611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e90613b4b565b60405180910390fd5b611f5182846125fe565b505050565b611f5e612124565b73ffffffffffffffffffffffffffffffffffffffff16611f7c61158e565b73ffffffffffffffffffffffffffffffffffffffff1614611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc990613b4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612039906139cb565b60405180910390fd5b61204b81612538565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661219f83611306565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006121fe826120b8565b61223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490613a8b565b60405180910390fd5b600061224883611306565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122b757508373ffffffffffffffffffffffffffffffffffffffff1661229f84610aa5565b73ffffffffffffffffffffffffffffffffffffffff16145b806122c857506122c78185611d8c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122f182611306565b73ffffffffffffffffffffffffffffffffffffffff1614612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e906139eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90613a4b565b60405180910390fd5b6123c28383836129fa565b6123cd60008261212c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241d9190613e6a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124749190613d89565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125338383836129ff565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612639576126136007612a04565b6126268361262160076121e5565b612a1a565b808061263190613fb7565b915050612601565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a490613a6b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161279e919061396e565b60405180910390a3505050565b6127b68484846122d1565b6127c284848484612a38565b612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f8906139ab565b60405180910390fd5b50505050565b60606008805461281690613f54565b80601f016020809104026020016040519081016040528092919081815260200182805461284290613f54565b801561288f5780601f106128645761010080835404028352916020019161288f565b820191906000526020600020905b81548152906001019060200180831161287257829003601f168201915b5050505050905090565b606060008214156128e1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129f5565b600082905060005b600082146129135780806128fc90613fb7565b915050600a8261290c9190613ddf565b91506128e9565b60008167ffffffffffffffff81111561292f5761292e6140ed565b5b6040519080825280601f01601f1916602001820160405280156129615781602001600182028036833780820191505090505b5090505b600085146129ee5760018261297a9190613e6a565b9150600a856129899190614000565b60306129959190613d89565b60f81b8183815181106129ab576129aa6140be565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129e79190613ddf565b9450612965565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612a34828260405180602001604052806000815250612bcf565b5050565b6000612a598473ffffffffffffffffffffffffffffffffffffffff16612c2a565b15612bc2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a82612124565b8786866040518563ffffffff1660e01b8152600401612aa49493929190613900565b602060405180830381600087803b158015612abe57600080fd5b505af1925050508015612aef57506040513d601f19601f82011682018060405250810190612aec91906132e6565b60015b612b72573d8060008114612b1f576040519150601f19603f3d011682016040523d82523d6000602084013e612b24565b606091505b50600081511415612b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b61906139ab565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bc7565b600190505b949350505050565b612bd98383612c4d565b612be66000848484612a38565b612c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1c906139ab565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb490613b0b565b60405180910390fd5b612cc6816120b8565b15612d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfd90613a0b565b60405180910390fd5b612d12600083836129fa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d629190613d89565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e23600083836129ff565b5050565b828054612e3390613f54565b90600052602060002090601f016020900481019282612e555760008555612e9c565b82601f10612e6e57805160ff1916838001178555612e9c565b82800160010185558215612e9c579182015b82811115612e9b578251825591602001919060010190612e80565b5b509050612ea99190612ead565b5090565b5b80821115612ec6576000816000905550600101612eae565b5090565b6000612edd612ed884613c8b565b613c66565b905082815260208101848484011115612ef957612ef861412b565b5b612f04848285613f12565b509392505050565b6000612f1f612f1a84613cbc565b613c66565b905082815260208101848484011115612f3b57612f3a61412b565b5b612f46848285613f12565b509392505050565b600081359050612f5d81614699565b92915050565b60008083601f840112612f7957612f78614121565b5b8235905067ffffffffffffffff811115612f9657612f9561411c565b5b602083019150836020820283011115612fb257612fb1614126565b5b9250929050565b600081359050612fc8816146b0565b92915050565b600081359050612fdd816146c7565b92915050565b600081519050612ff2816146c7565b92915050565b600082601f83011261300d5761300c614121565b5b813561301d848260208601612eca565b91505092915050565b600082601f83011261303b5761303a614121565b5b813561304b848260208601612f0c565b91505092915050565b600081359050613063816146de565b92915050565b60006020828403121561307f5761307e614135565b5b600061308d84828501612f4e565b91505092915050565b600080604083850312156130ad576130ac614135565b5b60006130bb85828601612f4e565b92505060206130cc85828601612f4e565b9150509250929050565b6000806000606084860312156130ef576130ee614135565b5b60006130fd86828701612f4e565b935050602061310e86828701612f4e565b925050604061311f86828701613054565b9150509250925092565b6000806000806080858703121561314357613142614135565b5b600061315187828801612f4e565b945050602061316287828801612f4e565b935050604061317387828801613054565b925050606085013567ffffffffffffffff81111561319457613193614130565b5b6131a087828801612ff8565b91505092959194509250565b600080604083850312156131c3576131c2614135565b5b60006131d185828601612f4e565b92505060206131e285828601612fb9565b9150509250929050565b6000806040838503121561320357613202614135565b5b600061321185828601612f4e565b925050602061322285828601613054565b9150509250929050565b60008060006040848603121561324557613244614135565b5b600084013567ffffffffffffffff81111561326357613262614130565b5b61326f86828701612f63565b9350935050602061328286828701613054565b9150509250925092565b6000602082840312156132a2576132a1614135565b5b60006132b084828501612fb9565b91505092915050565b6000602082840312156132cf576132ce614135565b5b60006132dd84828501612fce565b91505092915050565b6000602082840312156132fc576132fb614135565b5b600061330a84828501612fe3565b91505092915050565b60006020828403121561332957613328614135565b5b600082013567ffffffffffffffff81111561334757613346614130565b5b61335384828501613026565b91505092915050565b60006020828403121561337257613371614135565b5b600061338084828501613054565b91505092915050565b600080604083850312156133a05761339f614135565b5b60006133ae85828601613054565b92505060206133bf85828601612f4e565b9150509250929050565b60006133d58383613881565b60208301905092915050565b6133ea81613e9e565b82525050565b60006133fb82613d12565b6134058185613d40565b935061341083613ced565b8060005b8381101561344157815161342888826133c9565b975061343383613d33565b925050600181019050613414565b5085935050505092915050565b61345781613eb0565b82525050565b600061346882613d1d565b6134728185613d51565b9350613482818560208601613f21565b61348b8161413a565b840191505092915050565b60006134a182613d28565b6134ab8185613d6d565b93506134bb818560208601613f21565b6134c48161413a565b840191505092915050565b60006134da82613d28565b6134e48185613d7e565b93506134f4818560208601613f21565b80840191505092915050565b6000815461350d81613f54565b6135178186613d7e565b94506001821660008114613532576001811461354357613576565b60ff19831686528186019350613576565b61354c85613cfd565b60005b8381101561356e5781548189015260018201915060208101905061354f565b838801955050505b50505092915050565b600061358c603283613d6d565b91506135978261414b565b604082019050919050565b60006135af602683613d6d565b91506135ba8261419a565b604082019050919050565b60006135d2602583613d6d565b91506135dd826141e9565b604082019050919050565b60006135f5601c83613d6d565b915061360082614238565b602082019050919050565b6000613618601483613d6d565b915061362382614261565b602082019050919050565b600061363b602483613d6d565b91506136468261428a565b604082019050919050565b600061365e601983613d6d565b9150613669826142d9565b602082019050919050565b6000613681602c83613d6d565b915061368c82614302565b604082019050919050565b60006136a4603883613d6d565b91506136af82614351565b604082019050919050565b60006136c7602a83613d6d565b91506136d2826143a0565b604082019050919050565b60006136ea602983613d6d565b91506136f5826143ef565b604082019050919050565b600061370d602083613d6d565b91506137188261443e565b602082019050919050565b6000613730602c83613d6d565b915061373b82614467565b604082019050919050565b6000613753602083613d6d565b915061375e826144b6565b602082019050919050565b6000613776601783613d6d565b9150613781826144df565b602082019050919050565b6000613799602f83613d6d565b91506137a482614508565b604082019050919050565b60006137bc602183613d6d565b91506137c782614557565b604082019050919050565b60006137df602283613d6d565b91506137ea826145a6565b604082019050919050565b6000613802600083613d62565b915061380d826145f5565b600082019050919050565b6000613825601483613d6d565b9150613830826145f8565b602082019050919050565b6000613848603183613d6d565b915061385382614621565b604082019050919050565b600061386b601383613d6d565b915061387682614670565b602082019050919050565b61388a81613f08565b82525050565b61389981613f08565b82525050565b60006138ab82866134cf565b91506138b782856134cf565b91506138c38284613500565b9150819050949350505050565b60006138db826137f5565b9150819050919050565b60006020820190506138fa60008301846133e1565b92915050565b600060808201905061391560008301876133e1565b61392260208301866133e1565b61392f6040830185613890565b8181036060830152613941818461345d565b905095945050505050565b6000602082019050818103600083015261396681846133f0565b905092915050565b6000602082019050613983600083018461344e565b92915050565b600060208201905081810360008301526139a38184613496565b905092915050565b600060208201905081810360008301526139c48161357f565b9050919050565b600060208201905081810360008301526139e4816135a2565b9050919050565b60006020820190508181036000830152613a04816135c5565b9050919050565b60006020820190508181036000830152613a24816135e8565b9050919050565b60006020820190508181036000830152613a448161360b565b9050919050565b60006020820190508181036000830152613a648161362e565b9050919050565b60006020820190508181036000830152613a8481613651565b9050919050565b60006020820190508181036000830152613aa481613674565b9050919050565b60006020820190508181036000830152613ac481613697565b9050919050565b60006020820190508181036000830152613ae4816136ba565b9050919050565b60006020820190508181036000830152613b04816136dd565b9050919050565b60006020820190508181036000830152613b2481613700565b9050919050565b60006020820190508181036000830152613b4481613723565b9050919050565b60006020820190508181036000830152613b6481613746565b9050919050565b60006020820190508181036000830152613b8481613769565b9050919050565b60006020820190508181036000830152613ba48161378c565b9050919050565b60006020820190508181036000830152613bc4816137af565b9050919050565b60006020820190508181036000830152613be4816137d2565b9050919050565b60006020820190508181036000830152613c0481613818565b9050919050565b60006020820190508181036000830152613c248161383b565b9050919050565b60006020820190508181036000830152613c448161385e565b9050919050565b6000602082019050613c606000830184613890565b92915050565b6000613c70613c81565b9050613c7c8282613f86565b919050565b6000604051905090565b600067ffffffffffffffff821115613ca657613ca56140ed565b5b613caf8261413a565b9050602081019050919050565b600067ffffffffffffffff821115613cd757613cd66140ed565b5b613ce08261413a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9482613f08565b9150613d9f83613f08565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dd457613dd3614031565b5b828201905092915050565b6000613dea82613f08565b9150613df583613f08565b925082613e0557613e04614060565b5b828204905092915050565b6000613e1b82613f08565b9150613e2683613f08565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e5f57613e5e614031565b5b828202905092915050565b6000613e7582613f08565b9150613e8083613f08565b925082821015613e9357613e92614031565b5b828203905092915050565b6000613ea982613ee8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f3f578082015181840152602081019050613f24565b83811115613f4e576000848401525b50505050565b60006002820490506001821680613f6c57607f821691505b60208210811415613f8057613f7f61408f565b5b50919050565b613f8f8261413a565b810181811067ffffffffffffffff82111715613fae57613fad6140ed565b5b80604052505050565b6000613fc282613f08565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ff557613ff4614031565b5b600182019050919050565b600061400b82613f08565b915061401683613f08565b92508261402657614025614060565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6146a281613e9e565b81146146ad57600080fd5b50565b6146b981613eb0565b81146146c457600080fd5b50565b6146d081613ebc565b81146146db57600080fd5b50565b6146e781613f08565b81146146f257600080fd5b5056fea2646970667358221220488dd1ae4c04f32e6e4a5f444f147240ca2796b839e763b63e1abefbbec7e13964736f6c63430008070033
Deployed Bytecode
0x60806040526004361061023b5760003560e01c806370a082311161012e578063b071401b116100ab578063d5abeb011161006f578063d5abeb011461084e578063e0a8085314610879578063e985e9c5146108a2578063efbd73f4146108df578063f2fde38b146109085761023b565b8063b071401b14610759578063b6dfe05d14610782578063b88d4fde146107ab578063c04a2836146107d4578063c87b56dd146108115761023b565b806395d89b41116100f257806395d89b41146106935780639c70b512146106be578063a0712d68146106e9578063a22cb46514610705578063a45ba8e71461072e5761023b565b806370a08231146105c0578063715018a6146105fd5780637ec4a659146106145780638da5cb5b1461063d57806394354fd0146106685761023b565b80633ccfd60b116101bc578063518302271161018057806351830227146104d75780635503a0e8146105025780635c975abb1461052d57806362b99ad4146105585780636352211e146105835761023b565b80633ccfd60b1461040857806342842e0e1461041f578063438b63001461044857806344a0d68a146104855780634fdd43cb146104ae5761023b565b806316ba10e01161020357806316ba10e01461033957806316c38b3c1461036257806318160ddd1461038b57806323b872dd146103b65780633c952764146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906132b9565b610931565b604051610274919061396e565b60405180910390f35b34801561028957600080fd5b50610292610a13565b60405161029f9190613989565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061335c565b610aa5565b6040516102dc91906138e5565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906131ec565b610b2a565b005b34801561031a57600080fd5b50610323610c42565b6040516103309190613c4b565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613313565b610c48565b005b34801561036e57600080fd5b506103896004803603810190610384919061328c565b610cde565b005b34801561039757600080fd5b506103a0610d77565b6040516103ad9190613c4b565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d891906130d6565b610d88565b005b3480156103eb57600080fd5b506104066004803603810190610401919061328c565b610de8565b005b34801561041457600080fd5b5061041d610e81565b005b34801561042b57600080fd5b50610446600480360381019061044191906130d6565b610f7d565b005b34801561045457600080fd5b5061046f600480360381019061046a9190613069565b610f9d565b60405161047c919061394c565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a7919061335c565b6110a8565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190613313565b61112e565b005b3480156104e357600080fd5b506104ec6111c4565b6040516104f9919061396e565b60405180910390f35b34801561050e57600080fd5b506105176111d7565b6040516105249190613989565b60405180910390f35b34801561053957600080fd5b50610542611265565b60405161054f919061396e565b60405180910390f35b34801561056457600080fd5b5061056d611278565b60405161057a9190613989565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a5919061335c565b611306565b6040516105b791906138e5565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190613069565b6113b8565b6040516105f49190613c4b565b60405180910390f35b34801561060957600080fd5b50610612611470565b005b34801561062057600080fd5b5061063b60048036038101906106369190613313565b6114f8565b005b34801561064957600080fd5b5061065261158e565b60405161065f91906138e5565b60405180910390f35b34801561067457600080fd5b5061067d6115b8565b60405161068a9190613c4b565b60405180910390f35b34801561069f57600080fd5b506106a86115be565b6040516106b59190613989565b60405180910390f35b3480156106ca57600080fd5b506106d3611650565b6040516106e0919061396e565b60405180910390f35b61070360048036038101906106fe919061335c565b611663565b005b34801561071157600080fd5b5061072c600480360381019061072791906131ac565b6118b1565b005b34801561073a57600080fd5b506107436118c7565b6040516107509190613989565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b919061335c565b611955565b005b34801561078e57600080fd5b506107a960048036038101906107a4919061322c565b6119db565b005b3480156107b757600080fd5b506107d260048036038101906107cd9190613129565b611ae9565b005b3480156107e057600080fd5b506107fb60048036038101906107f69190613069565b611b4b565b6040516108089190613c4b565b60405180910390f35b34801561081d57600080fd5b506108386004803603810190610833919061335c565b611b94565b6040516108459190613989565b60405180910390f35b34801561085a57600080fd5b50610863611ced565b6040516108709190613c4b565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b919061328c565b611cf3565b005b3480156108ae57600080fd5b506108c960048036038101906108c49190613096565b611d8c565b6040516108d6919061396e565b60405180910390f35b3480156108eb57600080fd5b5061090660048036038101906109019190613389565b611e20565b005b34801561091457600080fd5b5061092f600480360381019061092a9190613069565b611f56565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0c5750610a0b8261204e565b5b9050919050565b606060008054610a2290613f54565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4e90613f54565b8015610a9b5780601f10610a7057610100808354040283529160200191610a9b565b820191906000526020600020905b815481529060010190602001808311610a7e57829003601f168201915b5050505050905090565b6000610ab0826120b8565b610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613b2b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3582611306565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90613bab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc5612124565b73ffffffffffffffffffffffffffffffffffffffff161480610bf45750610bf381610bee612124565b611d8c565b5b610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90613aab565b60405180910390fd5b610c3d838361212c565b505050565b600b5481565b610c50612124565b73ffffffffffffffffffffffffffffffffffffffff16610c6e61158e565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613b4b565b60405180910390fd5b8060099080519060200190610cda929190612e27565b5050565b610ce6612124565b73ffffffffffffffffffffffffffffffffffffffff16610d0461158e565b73ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613b4b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610d8360076121e5565b905090565b610d99610d93612124565b826121f3565b610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90613c0b565b60405180910390fd5b610de38383836122d1565b505050565b610df0612124565b73ffffffffffffffffffffffffffffffffffffffff16610e0e61158e565b73ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613b4b565b60405180910390fd5b80600e60026101000a81548160ff02191690831515021790555050565b610e89612124565b73ffffffffffffffffffffffffffffffffffffffff16610ea761158e565b73ffffffffffffffffffffffffffffffffffffffff1614610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490613b4b565b60405180910390fd5b6000610f0761158e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f2a906138d0565b60006040518083038185875af1925050503d8060008114610f67576040519150601f19603f3d011682016040523d82523d6000602084013e610f6c565b606091505b5050905080610f7a57600080fd5b50565b610f9883838360405180602001604052806000815250611ae9565b505050565b60606000610faa836113b8565b905060008167ffffffffffffffff811115610fc857610fc76140ed565b5b604051908082528060200260200182016040528015610ff65781602001602082028036833780820191505090505b50905060006001905060005b83811080156110135750600c548211155b1561109c57600061102383611306565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611088578284838151811061106d5761106c6140be565b5b602002602001018181525050818061108490613fb7565b9250505b828061109390613fb7565b93505050611002565b82945050505050919050565b6110b0612124565b73ffffffffffffffffffffffffffffffffffffffff166110ce61158e565b73ffffffffffffffffffffffffffffffffffffffff1614611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90613b4b565b60405180910390fd5b80600b8190555050565b611136612124565b73ffffffffffffffffffffffffffffffffffffffff1661115461158e565b73ffffffffffffffffffffffffffffffffffffffff16146111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190613b4b565b60405180910390fd5b80600a90805190602001906111c0929190612e27565b5050565b600e60019054906101000a900460ff1681565b600980546111e490613f54565b80601f016020809104026020016040519081016040528092919081815260200182805461121090613f54565b801561125d5780601f106112325761010080835404028352916020019161125d565b820191906000526020600020905b81548152906001019060200180831161124057829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b6008805461128590613f54565b80601f01602080910402602001604051908101604052809291908181526020018280546112b190613f54565b80156112fe5780601f106112d3576101008083540402835291602001916112fe565b820191906000526020600020905b8154815290600101906020018083116112e157829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613aeb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090613acb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611478612124565b73ffffffffffffffffffffffffffffffffffffffff1661149661158e565b73ffffffffffffffffffffffffffffffffffffffff16146114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390613b4b565b60405180910390fd5b6114f66000612538565b565b611500612124565b73ffffffffffffffffffffffffffffffffffffffff1661151e61158e565b73ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90613b4b565b60405180910390fd5b806008908051906020019061158a929190612e27565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546115cd90613f54565b80601f01602080910402602001604051908101604052809291908181526020018280546115f990613f54565b80156116465780601f1061161b57610100808354040283529160200191611646565b820191906000526020600020905b81548152906001019060200180831161162957829003601f168201915b5050505050905090565b600e60029054906101000a900460ff1681565b806000811180156116765750600d548111155b6116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613a2b565b60405180910390fd5b600c54816116c360076121e5565b6116cd9190613d89565b111561170e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170590613beb565b60405180910390fd5b600e60009054906101000a900460ff161561175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590613b6b565b60405180910390fd5b81600b5461176c9190613e10565b3410156117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590613c2b565b60405180910390fd5b60011515600e60029054906101000a900460ff16151514156118a357600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482111561184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184390613bcb565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461189b9190613e6a565b925050819055505b6118ad33836125fe565b5050565b6118c36118bc612124565b838361263e565b5050565b600a80546118d490613f54565b80601f016020809104026020016040519081016040528092919081815260200182805461190090613f54565b801561194d5780601f106119225761010080835404028352916020019161194d565b820191906000526020600020905b81548152906001019060200180831161193057829003601f168201915b505050505081565b61195d612124565b73ffffffffffffffffffffffffffffffffffffffff1661197b61158e565b73ffffffffffffffffffffffffffffffffffffffff16146119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890613b4b565b60405180910390fd5b80600d8190555050565b6119e3612124565b73ffffffffffffffffffffffffffffffffffffffff16611a0161158e565b73ffffffffffffffffffffffffffffffffffffffff1614611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90613b4b565b60405180910390fd5b60005b83839050811015611ae35781600f6000868685818110611a7d57611a7c6140be565b5b9050602002016020810190611a929190613069565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611adb90613fb7565b915050611a5a565b50505050565b611afa611af4612124565b836121f3565b611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090613c0b565b60405180910390fd5b611b45848484846127ab565b50505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060611b9f826120b8565b611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590613b8b565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611c8c57600a8054611c0790613f54565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3390613f54565b8015611c805780601f10611c5557610100808354040283529160200191611c80565b820191906000526020600020905b815481529060010190602001808311611c6357829003601f168201915b50505050509050611ce8565b6000611c96612807565b90506000815111611cb65760405180602001604052806000815250611ce4565b80611cc084612899565b6009604051602001611cd49392919061389f565b6040516020818303038152906040525b9150505b919050565b600c5481565b611cfb612124565b73ffffffffffffffffffffffffffffffffffffffff16611d1961158e565b73ffffffffffffffffffffffffffffffffffffffff1614611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690613b4b565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611e335750600d548111155b611e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6990613a2b565b60405180910390fd5b600c5481611e8060076121e5565b611e8a9190613d89565b1115611ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec290613beb565b60405180910390fd5b611ed3612124565b73ffffffffffffffffffffffffffffffffffffffff16611ef161158e565b73ffffffffffffffffffffffffffffffffffffffff1614611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e90613b4b565b60405180910390fd5b611f5182846125fe565b505050565b611f5e612124565b73ffffffffffffffffffffffffffffffffffffffff16611f7c61158e565b73ffffffffffffffffffffffffffffffffffffffff1614611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc990613b4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612042576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612039906139cb565b60405180910390fd5b61204b81612538565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661219f83611306565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006121fe826120b8565b61223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490613a8b565b60405180910390fd5b600061224883611306565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122b757508373ffffffffffffffffffffffffffffffffffffffff1661229f84610aa5565b73ffffffffffffffffffffffffffffffffffffffff16145b806122c857506122c78185611d8c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122f182611306565b73ffffffffffffffffffffffffffffffffffffffff1614612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e906139eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90613a4b565b60405180910390fd5b6123c28383836129fa565b6123cd60008261212c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241d9190613e6a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124749190613d89565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125338383836129ff565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612639576126136007612a04565b6126268361262160076121e5565b612a1a565b808061263190613fb7565b915050612601565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a490613a6b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161279e919061396e565b60405180910390a3505050565b6127b68484846122d1565b6127c284848484612a38565b612801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f8906139ab565b60405180910390fd5b50505050565b60606008805461281690613f54565b80601f016020809104026020016040519081016040528092919081815260200182805461284290613f54565b801561288f5780601f106128645761010080835404028352916020019161288f565b820191906000526020600020905b81548152906001019060200180831161287257829003601f168201915b5050505050905090565b606060008214156128e1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129f5565b600082905060005b600082146129135780806128fc90613fb7565b915050600a8261290c9190613ddf565b91506128e9565b60008167ffffffffffffffff81111561292f5761292e6140ed565b5b6040519080825280601f01601f1916602001820160405280156129615781602001600182028036833780820191505090505b5090505b600085146129ee5760018261297a9190613e6a565b9150600a856129899190614000565b60306129959190613d89565b60f81b8183815181106129ab576129aa6140be565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129e79190613ddf565b9450612965565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612a34828260405180602001604052806000815250612bcf565b5050565b6000612a598473ffffffffffffffffffffffffffffffffffffffff16612c2a565b15612bc2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a82612124565b8786866040518563ffffffff1660e01b8152600401612aa49493929190613900565b602060405180830381600087803b158015612abe57600080fd5b505af1925050508015612aef57506040513d601f19601f82011682018060405250810190612aec91906132e6565b60015b612b72573d8060008114612b1f576040519150601f19603f3d011682016040523d82523d6000602084013e612b24565b606091505b50600081511415612b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b61906139ab565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bc7565b600190505b949350505050565b612bd98383612c4d565b612be66000848484612a38565b612c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1c906139ab565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb490613b0b565b60405180910390fd5b612cc6816120b8565b15612d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfd90613a0b565b60405180910390fd5b612d12600083836129fa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d629190613d89565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e23600083836129ff565b5050565b828054612e3390613f54565b90600052602060002090601f016020900481019282612e555760008555612e9c565b82601f10612e6e57805160ff1916838001178555612e9c565b82800160010185558215612e9c579182015b82811115612e9b578251825591602001919060010190612e80565b5b509050612ea99190612ead565b5090565b5b80821115612ec6576000816000905550600101612eae565b5090565b6000612edd612ed884613c8b565b613c66565b905082815260208101848484011115612ef957612ef861412b565b5b612f04848285613f12565b509392505050565b6000612f1f612f1a84613cbc565b613c66565b905082815260208101848484011115612f3b57612f3a61412b565b5b612f46848285613f12565b509392505050565b600081359050612f5d81614699565b92915050565b60008083601f840112612f7957612f78614121565b5b8235905067ffffffffffffffff811115612f9657612f9561411c565b5b602083019150836020820283011115612fb257612fb1614126565b5b9250929050565b600081359050612fc8816146b0565b92915050565b600081359050612fdd816146c7565b92915050565b600081519050612ff2816146c7565b92915050565b600082601f83011261300d5761300c614121565b5b813561301d848260208601612eca565b91505092915050565b600082601f83011261303b5761303a614121565b5b813561304b848260208601612f0c565b91505092915050565b600081359050613063816146de565b92915050565b60006020828403121561307f5761307e614135565b5b600061308d84828501612f4e565b91505092915050565b600080604083850312156130ad576130ac614135565b5b60006130bb85828601612f4e565b92505060206130cc85828601612f4e565b9150509250929050565b6000806000606084860312156130ef576130ee614135565b5b60006130fd86828701612f4e565b935050602061310e86828701612f4e565b925050604061311f86828701613054565b9150509250925092565b6000806000806080858703121561314357613142614135565b5b600061315187828801612f4e565b945050602061316287828801612f4e565b935050604061317387828801613054565b925050606085013567ffffffffffffffff81111561319457613193614130565b5b6131a087828801612ff8565b91505092959194509250565b600080604083850312156131c3576131c2614135565b5b60006131d185828601612f4e565b92505060206131e285828601612fb9565b9150509250929050565b6000806040838503121561320357613202614135565b5b600061321185828601612f4e565b925050602061322285828601613054565b9150509250929050565b60008060006040848603121561324557613244614135565b5b600084013567ffffffffffffffff81111561326357613262614130565b5b61326f86828701612f63565b9350935050602061328286828701613054565b9150509250925092565b6000602082840312156132a2576132a1614135565b5b60006132b084828501612fb9565b91505092915050565b6000602082840312156132cf576132ce614135565b5b60006132dd84828501612fce565b91505092915050565b6000602082840312156132fc576132fb614135565b5b600061330a84828501612fe3565b91505092915050565b60006020828403121561332957613328614135565b5b600082013567ffffffffffffffff81111561334757613346614130565b5b61335384828501613026565b91505092915050565b60006020828403121561337257613371614135565b5b600061338084828501613054565b91505092915050565b600080604083850312156133a05761339f614135565b5b60006133ae85828601613054565b92505060206133bf85828601612f4e565b9150509250929050565b60006133d58383613881565b60208301905092915050565b6133ea81613e9e565b82525050565b60006133fb82613d12565b6134058185613d40565b935061341083613ced565b8060005b8381101561344157815161342888826133c9565b975061343383613d33565b925050600181019050613414565b5085935050505092915050565b61345781613eb0565b82525050565b600061346882613d1d565b6134728185613d51565b9350613482818560208601613f21565b61348b8161413a565b840191505092915050565b60006134a182613d28565b6134ab8185613d6d565b93506134bb818560208601613f21565b6134c48161413a565b840191505092915050565b60006134da82613d28565b6134e48185613d7e565b93506134f4818560208601613f21565b80840191505092915050565b6000815461350d81613f54565b6135178186613d7e565b94506001821660008114613532576001811461354357613576565b60ff19831686528186019350613576565b61354c85613cfd565b60005b8381101561356e5781548189015260018201915060208101905061354f565b838801955050505b50505092915050565b600061358c603283613d6d565b91506135978261414b565b604082019050919050565b60006135af602683613d6d565b91506135ba8261419a565b604082019050919050565b60006135d2602583613d6d565b91506135dd826141e9565b604082019050919050565b60006135f5601c83613d6d565b915061360082614238565b602082019050919050565b6000613618601483613d6d565b915061362382614261565b602082019050919050565b600061363b602483613d6d565b91506136468261428a565b604082019050919050565b600061365e601983613d6d565b9150613669826142d9565b602082019050919050565b6000613681602c83613d6d565b915061368c82614302565b604082019050919050565b60006136a4603883613d6d565b91506136af82614351565b604082019050919050565b60006136c7602a83613d6d565b91506136d2826143a0565b604082019050919050565b60006136ea602983613d6d565b91506136f5826143ef565b604082019050919050565b600061370d602083613d6d565b91506137188261443e565b602082019050919050565b6000613730602c83613d6d565b915061373b82614467565b604082019050919050565b6000613753602083613d6d565b915061375e826144b6565b602082019050919050565b6000613776601783613d6d565b9150613781826144df565b602082019050919050565b6000613799602f83613d6d565b91506137a482614508565b604082019050919050565b60006137bc602183613d6d565b91506137c782614557565b604082019050919050565b60006137df602283613d6d565b91506137ea826145a6565b604082019050919050565b6000613802600083613d62565b915061380d826145f5565b600082019050919050565b6000613825601483613d6d565b9150613830826145f8565b602082019050919050565b6000613848603183613d6d565b915061385382614621565b604082019050919050565b600061386b601383613d6d565b915061387682614670565b602082019050919050565b61388a81613f08565b82525050565b61389981613f08565b82525050565b60006138ab82866134cf565b91506138b782856134cf565b91506138c38284613500565b9150819050949350505050565b60006138db826137f5565b9150819050919050565b60006020820190506138fa60008301846133e1565b92915050565b600060808201905061391560008301876133e1565b61392260208301866133e1565b61392f6040830185613890565b8181036060830152613941818461345d565b905095945050505050565b6000602082019050818103600083015261396681846133f0565b905092915050565b6000602082019050613983600083018461344e565b92915050565b600060208201905081810360008301526139a38184613496565b905092915050565b600060208201905081810360008301526139c48161357f565b9050919050565b600060208201905081810360008301526139e4816135a2565b9050919050565b60006020820190508181036000830152613a04816135c5565b9050919050565b60006020820190508181036000830152613a24816135e8565b9050919050565b60006020820190508181036000830152613a448161360b565b9050919050565b60006020820190508181036000830152613a648161362e565b9050919050565b60006020820190508181036000830152613a8481613651565b9050919050565b60006020820190508181036000830152613aa481613674565b9050919050565b60006020820190508181036000830152613ac481613697565b9050919050565b60006020820190508181036000830152613ae4816136ba565b9050919050565b60006020820190508181036000830152613b04816136dd565b9050919050565b60006020820190508181036000830152613b2481613700565b9050919050565b60006020820190508181036000830152613b4481613723565b9050919050565b60006020820190508181036000830152613b6481613746565b9050919050565b60006020820190508181036000830152613b8481613769565b9050919050565b60006020820190508181036000830152613ba48161378c565b9050919050565b60006020820190508181036000830152613bc4816137af565b9050919050565b60006020820190508181036000830152613be4816137d2565b9050919050565b60006020820190508181036000830152613c0481613818565b9050919050565b60006020820190508181036000830152613c248161383b565b9050919050565b60006020820190508181036000830152613c448161385e565b9050919050565b6000602082019050613c606000830184613890565b92915050565b6000613c70613c81565b9050613c7c8282613f86565b919050565b6000604051905090565b600067ffffffffffffffff821115613ca657613ca56140ed565b5b613caf8261413a565b9050602081019050919050565b600067ffffffffffffffff821115613cd757613cd66140ed565b5b613ce08261413a565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9482613f08565b9150613d9f83613f08565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dd457613dd3614031565b5b828201905092915050565b6000613dea82613f08565b9150613df583613f08565b925082613e0557613e04614060565b5b828204905092915050565b6000613e1b82613f08565b9150613e2683613f08565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e5f57613e5e614031565b5b828202905092915050565b6000613e7582613f08565b9150613e8083613f08565b925082821015613e9357613e92614031565b5b828203905092915050565b6000613ea982613ee8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f3f578082015181840152602081019050613f24565b83811115613f4e576000848401525b50505050565b60006002820490506001821680613f6c57607f821691505b60208210811415613f8057613f7f61408f565b5b50919050565b613f8f8261413a565b810181811067ffffffffffffffff82111715613fae57613fad6140ed565b5b80604052505050565b6000613fc282613f08565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ff557613ff4614031565b5b600182019050919050565b600061400b82613f08565b915061401683613f08565b92508261402657614025614060565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6146a281613e9e565b81146146ad57600080fd5b50565b6146b981613eb0565b81146146c457600080fd5b50565b6146d081613ebc565b81146146db57600080fd5b50565b6146e781613f08565b81146146f257600080fd5b5056fea2646970667358221220488dd1ae4c04f32e6e4a5f444f147240ca2796b839e763b63e1abefbbec7e13964736f6c63430008070033
Deployed Bytecode Sourcemap
38806:4687:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25611:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26556:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28115:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27638:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39070:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42519:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42625:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39691:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28865:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42174:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42708:462;;;;;;;;;;;;;:::i;:::-;;29275:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40385:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41958:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42275:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39220:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38992:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39190:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38959:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26250:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25980:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6232:103;;;;;;;;;;;;;:::i;:::-;;42413:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5581:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39145:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26725:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39252:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39786:430;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28408:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39030:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42038:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41526:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29531:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41754:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41026:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39108:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41871:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28634:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40224:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6490:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25611:305;25713:4;25765:25;25750:40;;;:11;:40;;;;:105;;;;25822:33;25807:48;;;:11;:48;;;;25750:105;:158;;;;25872:36;25896:11;25872:23;:36::i;:::-;25750:158;25730:178;;25611:305;;;:::o;26556:100::-;26610:13;26643:5;26636:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26556:100;:::o;28115:221::-;28191:7;28219:16;28227:7;28219;:16::i;:::-;28211:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28304:15;:24;28320:7;28304:24;;;;;;;;;;;;;;;;;;;;;28297:31;;28115:221;;;:::o;27638:411::-;27719:13;27735:23;27750:7;27735:14;:23::i;:::-;27719:39;;27783:5;27777:11;;:2;:11;;;;27769:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27877:5;27861:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27886:37;27903:5;27910:12;:10;:12::i;:::-;27886:16;:37::i;:::-;27861:62;27839:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28020:21;28029:2;28033:7;28020:8;:21::i;:::-;27708:341;27638:411;;:::o;39070:33::-;;;;:::o;42519:100::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42603:10:::1;42591:9;:22;;;;;;;;;;;;:::i;:::-;;42519:100:::0;:::o;42625:77::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42690:6:::1;42681;;:15;;;;;;;;;;;;;;;;;;42625:77:::0;:::o;39691:89::-;39735:7;39758:16;:6;:14;:16::i;:::-;39751:23;;39691:89;:::o;28865:339::-;29060:41;29079:12;:10;:12::i;:::-;29093:7;29060:18;:41::i;:::-;29052:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29168:28;29178:4;29184:2;29188:7;29168:9;:28::i;:::-;28865:339;;;:::o;42174:95::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42257:6:::1;42239:15;;:24;;;;;;;;;;;;;;;;;;42174:95:::0;:::o;42708:462::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42992:7:::1;43013;:5;:7::i;:::-;43005:21;;43034;43005:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42991:69;;;43075:2;43067:11;;;::::0;::::1;;42745:425;42708:462::o:0;29275:185::-;29413:39;29430:4;29436:2;29440:7;29413:39;;;;;;;;;;;;:16;:39::i;:::-;29275:185;;;:::o;40385:635::-;40460:16;40488:23;40514:17;40524:6;40514:9;:17::i;:::-;40488:43;;40538:30;40585:15;40571:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40538:63;;40608:22;40633:1;40608:26;;40641:23;40677:309;40702:15;40684;:33;:64;;;;;40739:9;;40721:14;:27;;40684:64;40677:309;;;40759:25;40787:23;40795:14;40787:7;:23::i;:::-;40759:51;;40846:6;40825:27;;:17;:27;;;40821:131;;;40898:14;40865:13;40879:15;40865:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;40925:17;;;;;:::i;:::-;;;;40821:131;40962:16;;;;;:::i;:::-;;;;40750:236;40677:309;;;41001:13;40994:20;;;;;;40385:635;;;:::o;41958:74::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42021:5:::1;42014:4;:12;;;;41958:74:::0;:::o;42275:132::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42383:18:::1;42363:17;:38;;;;;;;;;;;;:::i;:::-;;42275:132:::0;:::o;39220:27::-;;;;;;;;;;;;;:::o;38992:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39190:25::-;;;;;;;;;;;;;:::o;38959:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26250:239::-;26322:7;26342:13;26358:7;:16;26366:7;26358:16;;;;;;;;;;;;;;;;;;;;;26342:32;;26410:1;26393:19;;:5;:19;;;;26385:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26476:5;26469:12;;;26250:239;;;:::o;25980:208::-;26052:7;26097:1;26080:19;;:5;:19;;;;26072:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26164:9;:16;26174:5;26164:16;;;;;;;;;;;;;;;;26157:23;;25980:208;;;:::o;6232:103::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6297:30:::1;6324:1;6297:18;:30::i;:::-;6232:103::o:0;42413:100::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42497:10:::1;42485:9;:22;;;;;;;;;;;;:::i;:::-;;42413:100:::0;:::o;5581:87::-;5627:7;5654:6;;;;;;;;;;;5647:13;;5581:87;:::o;39145:38::-;;;;:::o;26725:104::-;26781:13;26814:7;26807:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26725:104;:::o;39252:34::-;;;;;;;;;;;;;:::o;39786:430::-;39851:11;39525:1;39511:11;:15;:52;;;;;39545:18;;39530:11;:33;;39511:52;39503:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39637:9;;39622:11;39603:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39595:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39880:6:::1;;;;;;;;;;;39879:7;39871:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;39949:11;39942:4;;:18;;;;:::i;:::-;39929:9;:31;;39921:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40015:4;39996:23;;:15;;;;;;;;;;;:23;;;39993:175;;;40053:9;:21;40063:10;40053:21;;;;;;;;;;;;;;;;40038:11;:36;;40030:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;40149:11;40124:9;:21;40134:10;40124:21;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;39993:175;40176:34;40186:10;40198:11;40176:9;:34::i;:::-;39786:430:::0;;:::o;28408:155::-;28503:52;28522:12;:10;:12::i;:::-;28536:8;28546;28503:18;:52::i;:::-;28408:155;;:::o;39030:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42038:130::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42143:19:::1;42122:18;:40;;;;42038:130:::0;:::o;41526:222::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41637:9:::1;41632:111;41656:10;;:17;;41652:1;:21;41632:111;;;41718:17;41691:9;:24;41701:10;;41712:1;41701:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;41691:24;;;;;;;;;;;;;;;:44;;;;41675:3;;;;;:::i;:::-;;;;41632:111;;;;41526:222:::0;;;:::o;29531:328::-;29706:41;29725:12;:10;:12::i;:::-;29739:7;29706:18;:41::i;:::-;29698:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29812:39;29826:4;29832:2;29836:7;29845:5;29812:13;:39::i;:::-;29531:328;;;;:::o;41754:111::-;41820:7;41843:9;:16;41853:5;41843:16;;;;;;;;;;;;;;;;41836:23;;41754:111;;;:::o;41026:494::-;41125:13;41166:17;41174:8;41166:7;:17::i;:::-;41150:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;41273:5;41261:17;;:8;;;;;;;;;;;:17;;;41257:64;;;41296:17;41289:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41257:64;41329:28;41360:10;:8;:10::i;:::-;41329:41;;41415:1;41390:14;41384:28;:32;:130;;;;;;;;;;;;;;;;;41452:14;41468:19;:8;:17;:19::i;:::-;41489:9;41435:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41384:130;41377:137;;;41026:494;;;;:::o;39108:32::-;;;;:::o;41871:81::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41940:6:::1;41929:8;;:17;;;;;;;;;;;;;;;;;;41871:81:::0;:::o;28634:164::-;28731:4;28755:18;:25;28774:5;28755:25;;;;;;;;;;;;;;;:35;28781:8;28755:35;;;;;;;;;;;;;;;;;;;;;;;;;28748:42;;28634:164;;;;:::o;40224:155::-;40310:11;39525:1;39511:11;:15;:52;;;;;39545:18;;39530:11;:33;;39511:52;39503:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39637:9;;39622:11;39603:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39595:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5812:12:::1;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40340:33:::2;40350:9;40361:11;40340:9;:33::i;:::-;40224:155:::0;;;:::o;6490:201::-;5812:12;:10;:12::i;:::-;5801:23;;:7;:5;:7::i;:::-;:23;;;5793:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6599:1:::1;6579:22;;:8;:22;;;;6571:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6655:28;6674:8;6655:18;:28::i;:::-;6490:201:::0;:::o;18365:157::-;18450:4;18489:25;18474:40;;;:11;:40;;;;18467:47;;18365:157;;;:::o;31369:127::-;31434:4;31486:1;31458:30;;:7;:16;31466:7;31458:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31451:37;;31369:127;;;:::o;4305:98::-;4358:7;4385:10;4378:17;;4305:98;:::o;35515:174::-;35617:2;35590:15;:24;35606:7;35590:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35673:7;35669:2;35635:46;;35644:23;35659:7;35644:14;:23::i;:::-;35635:46;;;;;;;;;;;;35515:174;;:::o;909:114::-;974:7;1001;:14;;;994:21;;909:114;;;:::o;31663:348::-;31756:4;31781:16;31789:7;31781;:16::i;:::-;31773:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31857:13;31873:23;31888:7;31873:14;:23::i;:::-;31857:39;;31926:5;31915:16;;:7;:16;;;:51;;;;31959:7;31935:31;;:20;31947:7;31935:11;:20::i;:::-;:31;;;31915:51;:87;;;;31970:32;31987:5;31994:7;31970:16;:32::i;:::-;31915:87;31907:96;;;31663:348;;;;:::o;34772:625::-;34931:4;34904:31;;:23;34919:7;34904:14;:23::i;:::-;:31;;;34896:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35010:1;34996:16;;:2;:16;;;;34988:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35066:39;35087:4;35093:2;35097:7;35066:20;:39::i;:::-;35170:29;35187:1;35191:7;35170:8;:29::i;:::-;35231:1;35212:9;:15;35222:4;35212:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35260:1;35243:9;:13;35253:2;35243:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35291:2;35272:7;:16;35280:7;35272:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35330:7;35326:2;35311:27;;35320:4;35311:27;;;;;;;;;;;;35351:38;35371:4;35377:2;35381:7;35351:19;:38::i;:::-;34772:625;;;:::o;6851:191::-;6925:16;6944:6;;;;;;;;;;;6925:25;;6970:8;6961:6;;:17;;;;;;;;;;;;;;;;;;7025:8;6994:40;;7015:8;6994:40;;;;;;;;;;;;6914:128;6851:191;:::o;43176:204::-;43256:9;43251:124;43275:11;43271:1;:15;43251:124;;;43302:18;:6;:16;:18::i;:::-;43329:38;43339:9;43350:16;:6;:14;:16::i;:::-;43329:9;:38::i;:::-;43288:3;;;;;:::i;:::-;;;;43251:124;;;;43176:204;;:::o;35831:315::-;35986:8;35977:17;;:5;:17;;;;35969:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36073:8;36035:18;:25;36054:5;36035:25;;;;;;;;;;;;;;;:35;36061:8;36035:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36119:8;36097:41;;36112:5;36097:41;;;36129:8;36097:41;;;;;;:::i;:::-;;;;;;;;35831:315;;;:::o;30741:::-;30898:28;30908:4;30914:2;30918:7;30898:9;:28::i;:::-;30945:48;30968:4;30974:2;30978:7;30987:5;30945:22;:48::i;:::-;30937:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30741:315;;;;:::o;43386:104::-;43446:13;43475:9;43468:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43386:104;:::o;1867:723::-;1923:13;2153:1;2144:5;:10;2140:53;;;2171:10;;;;;;;;;;;;;;;;;;;;;2140:53;2203:12;2218:5;2203:20;;2234:14;2259:78;2274:1;2266:4;:9;2259:78;;2292:8;;;;;:::i;:::-;;;;2323:2;2315:10;;;;;:::i;:::-;;;2259:78;;;2347:19;2379:6;2369:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2347:39;;2397:154;2413:1;2404:5;:10;2397:154;;2441:1;2431:11;;;;;:::i;:::-;;;2508:2;2500:5;:10;;;;:::i;:::-;2487:2;:24;;;;:::i;:::-;2474:39;;2457:6;2464;2457:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2537:2;2528:11;;;;;:::i;:::-;;;2397:154;;;2575:6;2561:21;;;;;1867:723;;;;:::o;38082:126::-;;;;:::o;38593:125::-;;;;:::o;1031:127::-;1138:1;1120:7;:14;;;:19;;;;;;;;;;;1031:127;:::o;32353:110::-;32429:26;32439:2;32443:7;32429:26;;;;;;;;;;;;:9;:26::i;:::-;32353:110;;:::o;36711:799::-;36866:4;36887:15;:2;:13;;;:15::i;:::-;36883:620;;;36939:2;36923:36;;;36960:12;:10;:12::i;:::-;36974:4;36980:7;36989:5;36923:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36919:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37182:1;37165:6;:13;:18;37161:272;;;37208:60;;;;;;;;;;:::i;:::-;;;;;;;;37161:272;37383:6;37377:13;37368:6;37364:2;37360:15;37353:38;36919:529;37056:41;;;37046:51;;;:6;:51;;;;37039:58;;;;;36883:620;37487:4;37480:11;;36711:799;;;;;;;:::o;32690:321::-;32820:18;32826:2;32830:7;32820:5;:18::i;:::-;32871:54;32902:1;32906:2;32910:7;32919:5;32871:22;:54::i;:::-;32849:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32690:321;;;:::o;8282:326::-;8342:4;8599:1;8577:7;:19;;;:23;8570:30;;8282:326;;;:::o;33347:439::-;33441:1;33427:16;;:2;:16;;;;33419:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33500:16;33508:7;33500;:16::i;:::-;33499:17;33491:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33562:45;33591:1;33595:2;33599:7;33562:20;:45::i;:::-;33637:1;33620:9;:13;33630:2;33620:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33668:2;33649:7;:16;33657:7;33649:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33713:7;33709:2;33688:33;;33705:1;33688:33;;;;;;;;;;;;33734:44;33762:1;33766:2;33770:7;33734:19;:44::i;:::-;33347:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:704::-;6306:6;6314;6322;6371:2;6359:9;6350:7;6346:23;6342:32;6339:119;;;6377:79;;:::i;:::-;6339:119;6525:1;6514:9;6510:17;6497:31;6555:18;6547:6;6544:30;6541:117;;;6577:79;;:::i;:::-;6541:117;6690:80;6762:7;6753:6;6742:9;6738:22;6690:80;:::i;:::-;6672:98;;;;6468:312;6819:2;6845:53;6890:7;6881:6;6870:9;6866:22;6845:53;:::i;:::-;6835:63;;6790:118;6211:704;;;;;:::o;6921:323::-;6977:6;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:50;7219:7;7210:6;7199:9;7195:22;7177:50;:::i;:::-;7167:60;;7123:114;6921:323;;;;:::o;7250:327::-;7308:6;7357:2;7345:9;7336:7;7332:23;7328:32;7325:119;;;7363:79;;:::i;:::-;7325:119;7483:1;7508:52;7552:7;7543:6;7532:9;7528:22;7508:52;:::i;:::-;7498:62;;7454:116;7250:327;;;;:::o;7583:349::-;7652:6;7701:2;7689:9;7680:7;7676:23;7672:32;7669:119;;;7707:79;;:::i;:::-;7669:119;7827:1;7852:63;7907:7;7898:6;7887:9;7883:22;7852:63;:::i;:::-;7842:73;;7798:127;7583:349;;;;:::o;7938:509::-;8007:6;8056:2;8044:9;8035:7;8031:23;8027:32;8024:119;;;8062:79;;:::i;:::-;8024:119;8210:1;8199:9;8195:17;8182:31;8240:18;8232:6;8229:30;8226:117;;;8262:79;;:::i;:::-;8226:117;8367:63;8422:7;8413:6;8402:9;8398:22;8367:63;:::i;:::-;8357:73;;8153:287;7938:509;;;;:::o;8453:329::-;8512:6;8561:2;8549:9;8540:7;8536:23;8532:32;8529:119;;;8567:79;;:::i;:::-;8529:119;8687:1;8712:53;8757:7;8748:6;8737:9;8733:22;8712:53;:::i;:::-;8702:63;;8658:117;8453:329;;;;:::o;8788:474::-;8856:6;8864;8913:2;8901:9;8892:7;8888:23;8884:32;8881:119;;;8919:79;;:::i;:::-;8881:119;9039:1;9064:53;9109:7;9100:6;9089:9;9085:22;9064:53;:::i;:::-;9054:63;;9010:117;9166:2;9192:53;9237:7;9228:6;9217:9;9213:22;9192:53;:::i;:::-;9182:63;;9137:118;8788:474;;;;;:::o;9268:179::-;9337:10;9358:46;9400:3;9392:6;9358:46;:::i;:::-;9436:4;9431:3;9427:14;9413:28;;9268:179;;;;:::o;9453:118::-;9540:24;9558:5;9540:24;:::i;:::-;9535:3;9528:37;9453:118;;:::o;9607:732::-;9726:3;9755:54;9803:5;9755:54;:::i;:::-;9825:86;9904:6;9899:3;9825:86;:::i;:::-;9818:93;;9935:56;9985:5;9935:56;:::i;:::-;10014:7;10045:1;10030:284;10055:6;10052:1;10049:13;10030:284;;;10131:6;10125:13;10158:63;10217:3;10202:13;10158:63;:::i;:::-;10151:70;;10244:60;10297:6;10244:60;:::i;:::-;10234:70;;10090:224;10077:1;10074;10070:9;10065:14;;10030:284;;;10034:14;10330:3;10323:10;;9731:608;;;9607:732;;;;:::o;10345:109::-;10426:21;10441:5;10426:21;:::i;:::-;10421:3;10414:34;10345:109;;:::o;10460:360::-;10546:3;10574:38;10606:5;10574:38;:::i;:::-;10628:70;10691:6;10686:3;10628:70;:::i;:::-;10621:77;;10707:52;10752:6;10747:3;10740:4;10733:5;10729:16;10707:52;:::i;:::-;10784:29;10806:6;10784:29;:::i;:::-;10779:3;10775:39;10768:46;;10550:270;10460:360;;;;:::o;10826:364::-;10914:3;10942:39;10975:5;10942:39;:::i;:::-;10997:71;11061:6;11056:3;10997:71;:::i;:::-;10990:78;;11077:52;11122:6;11117:3;11110:4;11103:5;11099:16;11077:52;:::i;:::-;11154:29;11176:6;11154:29;:::i;:::-;11149:3;11145:39;11138:46;;10918:272;10826:364;;;;:::o;11196:377::-;11302:3;11330:39;11363:5;11330:39;:::i;:::-;11385:89;11467:6;11462:3;11385:89;:::i;:::-;11378:96;;11483:52;11528:6;11523:3;11516:4;11509:5;11505:16;11483:52;:::i;:::-;11560:6;11555:3;11551:16;11544:23;;11306:267;11196:377;;;;:::o;11603:845::-;11706:3;11743:5;11737:12;11772:36;11798:9;11772:36;:::i;:::-;11824:89;11906:6;11901:3;11824:89;:::i;:::-;11817:96;;11944:1;11933:9;11929:17;11960:1;11955:137;;;;12106:1;12101:341;;;;11922:520;;11955:137;12039:4;12035:9;12024;12020:25;12015:3;12008:38;12075:6;12070:3;12066:16;12059:23;;11955:137;;12101:341;12168:38;12200:5;12168:38;:::i;:::-;12228:1;12242:154;12256:6;12253:1;12250:13;12242:154;;;12330:7;12324:14;12320:1;12315:3;12311:11;12304:35;12380:1;12371:7;12367:15;12356:26;;12278:4;12275:1;12271:12;12266:17;;12242:154;;;12425:6;12420:3;12416:16;12409:23;;12108:334;;11922:520;;11710:738;;11603:845;;;;:::o;12454:366::-;12596:3;12617:67;12681:2;12676:3;12617:67;:::i;:::-;12610:74;;12693:93;12782:3;12693:93;:::i;:::-;12811:2;12806:3;12802:12;12795:19;;12454:366;;;:::o;12826:::-;12968:3;12989:67;13053:2;13048:3;12989:67;:::i;:::-;12982:74;;13065:93;13154:3;13065:93;:::i;:::-;13183:2;13178:3;13174:12;13167:19;;12826:366;;;:::o;13198:::-;13340:3;13361:67;13425:2;13420:3;13361:67;:::i;:::-;13354:74;;13437:93;13526:3;13437:93;:::i;:::-;13555:2;13550:3;13546:12;13539:19;;13198:366;;;:::o;13570:::-;13712:3;13733:67;13797:2;13792:3;13733:67;:::i;:::-;13726:74;;13809:93;13898:3;13809:93;:::i;:::-;13927:2;13922:3;13918:12;13911:19;;13570:366;;;:::o;13942:::-;14084:3;14105:67;14169:2;14164:3;14105:67;:::i;:::-;14098:74;;14181:93;14270:3;14181:93;:::i;:::-;14299:2;14294:3;14290:12;14283:19;;13942:366;;;:::o;14314:::-;14456:3;14477:67;14541:2;14536:3;14477:67;:::i;:::-;14470:74;;14553:93;14642:3;14553:93;:::i;:::-;14671:2;14666:3;14662:12;14655:19;;14314:366;;;:::o;14686:::-;14828:3;14849:67;14913:2;14908:3;14849:67;:::i;:::-;14842:74;;14925:93;15014:3;14925:93;:::i;:::-;15043:2;15038:3;15034:12;15027:19;;14686:366;;;:::o;15058:::-;15200:3;15221:67;15285:2;15280:3;15221:67;:::i;:::-;15214:74;;15297:93;15386:3;15297:93;:::i;:::-;15415:2;15410:3;15406:12;15399:19;;15058:366;;;:::o;15430:::-;15572:3;15593:67;15657:2;15652:3;15593:67;:::i;:::-;15586:74;;15669:93;15758:3;15669:93;:::i;:::-;15787:2;15782:3;15778:12;15771:19;;15430:366;;;:::o;15802:::-;15944:3;15965:67;16029:2;16024:3;15965:67;:::i;:::-;15958:74;;16041:93;16130:3;16041:93;:::i;:::-;16159:2;16154:3;16150:12;16143:19;;15802:366;;;:::o;16174:::-;16316:3;16337:67;16401:2;16396:3;16337:67;:::i;:::-;16330:74;;16413:93;16502:3;16413:93;:::i;:::-;16531:2;16526:3;16522:12;16515:19;;16174:366;;;:::o;16546:::-;16688:3;16709:67;16773:2;16768:3;16709:67;:::i;:::-;16702:74;;16785:93;16874:3;16785:93;:::i;:::-;16903:2;16898:3;16894:12;16887:19;;16546:366;;;:::o;16918:::-;17060:3;17081:67;17145:2;17140:3;17081:67;:::i;:::-;17074:74;;17157:93;17246:3;17157:93;:::i;:::-;17275:2;17270:3;17266:12;17259:19;;16918:366;;;:::o;17290:::-;17432:3;17453:67;17517:2;17512:3;17453:67;:::i;:::-;17446:74;;17529:93;17618:3;17529:93;:::i;:::-;17647:2;17642:3;17638:12;17631:19;;17290:366;;;:::o;17662:::-;17804:3;17825:67;17889:2;17884:3;17825:67;:::i;:::-;17818:74;;17901:93;17990:3;17901:93;:::i;:::-;18019:2;18014:3;18010:12;18003:19;;17662:366;;;:::o;18034:::-;18176:3;18197:67;18261:2;18256:3;18197:67;:::i;:::-;18190:74;;18273:93;18362:3;18273:93;:::i;:::-;18391:2;18386:3;18382:12;18375:19;;18034:366;;;:::o;18406:::-;18548:3;18569:67;18633:2;18628:3;18569:67;:::i;:::-;18562:74;;18645:93;18734:3;18645:93;:::i;:::-;18763:2;18758:3;18754:12;18747:19;;18406:366;;;:::o;18778:::-;18920:3;18941:67;19005:2;19000:3;18941:67;:::i;:::-;18934:74;;19017:93;19106:3;19017:93;:::i;:::-;19135:2;19130:3;19126:12;19119:19;;18778:366;;;:::o;19150:398::-;19309:3;19330:83;19411:1;19406:3;19330:83;:::i;:::-;19323:90;;19422:93;19511:3;19422:93;:::i;:::-;19540:1;19535:3;19531:11;19524:18;;19150:398;;;:::o;19554:366::-;19696:3;19717:67;19781:2;19776:3;19717:67;:::i;:::-;19710:74;;19793:93;19882:3;19793:93;:::i;:::-;19911:2;19906:3;19902:12;19895:19;;19554:366;;;:::o;19926:::-;20068:3;20089:67;20153:2;20148:3;20089:67;:::i;:::-;20082:74;;20165:93;20254:3;20165:93;:::i;:::-;20283:2;20278:3;20274:12;20267:19;;19926:366;;;:::o;20298:::-;20440:3;20461:67;20525:2;20520:3;20461:67;:::i;:::-;20454:74;;20537:93;20626:3;20537:93;:::i;:::-;20655:2;20650:3;20646:12;20639:19;;20298:366;;;:::o;20670:108::-;20747:24;20765:5;20747:24;:::i;:::-;20742:3;20735:37;20670:108;;:::o;20784:118::-;20871:24;20889:5;20871:24;:::i;:::-;20866:3;20859:37;20784:118;;:::o;20908:589::-;21133:3;21155:95;21246:3;21237:6;21155:95;:::i;:::-;21148:102;;21267:95;21358:3;21349:6;21267:95;:::i;:::-;21260:102;;21379:92;21467:3;21458:6;21379:92;:::i;:::-;21372:99;;21488:3;21481:10;;20908:589;;;;;;:::o;21503:379::-;21687:3;21709:147;21852:3;21709:147;:::i;:::-;21702:154;;21873:3;21866:10;;21503:379;;;:::o;21888:222::-;21981:4;22019:2;22008:9;22004:18;21996:26;;22032:71;22100:1;22089:9;22085:17;22076:6;22032:71;:::i;:::-;21888:222;;;;:::o;22116:640::-;22311:4;22349:3;22338:9;22334:19;22326:27;;22363:71;22431:1;22420:9;22416:17;22407:6;22363:71;:::i;:::-;22444:72;22512:2;22501:9;22497:18;22488:6;22444:72;:::i;:::-;22526;22594:2;22583:9;22579:18;22570:6;22526:72;:::i;:::-;22645:9;22639:4;22635:20;22630:2;22619:9;22615:18;22608:48;22673:76;22744:4;22735:6;22673:76;:::i;:::-;22665:84;;22116:640;;;;;;;:::o;22762:373::-;22905:4;22943:2;22932:9;22928:18;22920:26;;22992:9;22986:4;22982:20;22978:1;22967:9;22963:17;22956:47;23020:108;23123:4;23114:6;23020:108;:::i;:::-;23012:116;;22762:373;;;;:::o;23141:210::-;23228:4;23266:2;23255:9;23251:18;23243:26;;23279:65;23341:1;23330:9;23326:17;23317:6;23279:65;:::i;:::-;23141:210;;;;:::o;23357:313::-;23470:4;23508:2;23497:9;23493:18;23485:26;;23557:9;23551:4;23547:20;23543:1;23532:9;23528:17;23521:47;23585:78;23658:4;23649:6;23585:78;:::i;:::-;23577:86;;23357:313;;;;:::o;23676:419::-;23842:4;23880:2;23869:9;23865:18;23857:26;;23929:9;23923:4;23919:20;23915:1;23904:9;23900:17;23893:47;23957:131;24083:4;23957:131;:::i;:::-;23949:139;;23676:419;;;:::o;24101:::-;24267:4;24305:2;24294:9;24290:18;24282:26;;24354:9;24348:4;24344:20;24340:1;24329:9;24325:17;24318:47;24382:131;24508:4;24382:131;:::i;:::-;24374:139;;24101:419;;;:::o;24526:::-;24692:4;24730:2;24719:9;24715:18;24707:26;;24779:9;24773:4;24769:20;24765:1;24754:9;24750:17;24743:47;24807:131;24933:4;24807:131;:::i;:::-;24799:139;;24526:419;;;:::o;24951:::-;25117:4;25155:2;25144:9;25140:18;25132:26;;25204:9;25198:4;25194:20;25190:1;25179:9;25175:17;25168:47;25232:131;25358:4;25232:131;:::i;:::-;25224:139;;24951:419;;;:::o;25376:::-;25542:4;25580:2;25569:9;25565:18;25557:26;;25629:9;25623:4;25619:20;25615:1;25604:9;25600:17;25593:47;25657:131;25783:4;25657:131;:::i;:::-;25649:139;;25376:419;;;:::o;25801:::-;25967:4;26005:2;25994:9;25990:18;25982:26;;26054:9;26048:4;26044:20;26040:1;26029:9;26025:17;26018:47;26082:131;26208:4;26082:131;:::i;:::-;26074:139;;25801:419;;;:::o;26226:::-;26392:4;26430:2;26419:9;26415:18;26407:26;;26479:9;26473:4;26469:20;26465:1;26454:9;26450:17;26443:47;26507:131;26633:4;26507:131;:::i;:::-;26499:139;;26226:419;;;:::o;26651:::-;26817:4;26855:2;26844:9;26840:18;26832:26;;26904:9;26898:4;26894:20;26890:1;26879:9;26875:17;26868:47;26932:131;27058:4;26932:131;:::i;:::-;26924:139;;26651:419;;;:::o;27076:::-;27242:4;27280:2;27269:9;27265:18;27257:26;;27329:9;27323:4;27319:20;27315:1;27304:9;27300:17;27293:47;27357:131;27483:4;27357:131;:::i;:::-;27349:139;;27076:419;;;:::o;27501:::-;27667:4;27705:2;27694:9;27690:18;27682:26;;27754:9;27748:4;27744:20;27740:1;27729:9;27725:17;27718:47;27782:131;27908:4;27782:131;:::i;:::-;27774:139;;27501:419;;;:::o;27926:::-;28092:4;28130:2;28119:9;28115:18;28107:26;;28179:9;28173:4;28169:20;28165:1;28154:9;28150:17;28143:47;28207:131;28333:4;28207:131;:::i;:::-;28199:139;;27926:419;;;:::o;28351:::-;28517:4;28555:2;28544:9;28540:18;28532:26;;28604:9;28598:4;28594:20;28590:1;28579:9;28575:17;28568:47;28632:131;28758:4;28632:131;:::i;:::-;28624:139;;28351:419;;;:::o;28776:::-;28942:4;28980:2;28969:9;28965:18;28957:26;;29029:9;29023:4;29019:20;29015:1;29004:9;29000:17;28993:47;29057:131;29183:4;29057:131;:::i;:::-;29049:139;;28776:419;;;:::o;29201:::-;29367:4;29405:2;29394:9;29390:18;29382:26;;29454:9;29448:4;29444:20;29440:1;29429:9;29425:17;29418:47;29482:131;29608:4;29482:131;:::i;:::-;29474:139;;29201:419;;;:::o;29626:::-;29792:4;29830:2;29819:9;29815:18;29807:26;;29879:9;29873:4;29869:20;29865:1;29854:9;29850:17;29843:47;29907:131;30033:4;29907:131;:::i;:::-;29899:139;;29626:419;;;:::o;30051:::-;30217:4;30255:2;30244:9;30240:18;30232:26;;30304:9;30298:4;30294:20;30290:1;30279:9;30275:17;30268:47;30332:131;30458:4;30332:131;:::i;:::-;30324:139;;30051:419;;;:::o;30476:::-;30642:4;30680:2;30669:9;30665:18;30657:26;;30729:9;30723:4;30719:20;30715:1;30704:9;30700:17;30693:47;30757:131;30883:4;30757:131;:::i;:::-;30749:139;;30476:419;;;:::o;30901:::-;31067:4;31105:2;31094:9;31090:18;31082:26;;31154:9;31148:4;31144:20;31140:1;31129:9;31125:17;31118:47;31182:131;31308:4;31182:131;:::i;:::-;31174:139;;30901:419;;;:::o;31326:::-;31492:4;31530:2;31519:9;31515:18;31507:26;;31579:9;31573:4;31569:20;31565:1;31554:9;31550:17;31543:47;31607:131;31733:4;31607:131;:::i;:::-;31599:139;;31326:419;;;:::o;31751:::-;31917:4;31955:2;31944:9;31940:18;31932:26;;32004:9;31998:4;31994:20;31990:1;31979:9;31975:17;31968:47;32032:131;32158:4;32032:131;:::i;:::-;32024:139;;31751:419;;;:::o;32176:::-;32342:4;32380:2;32369:9;32365:18;32357:26;;32429:9;32423:4;32419:20;32415:1;32404:9;32400:17;32393:47;32457:131;32583:4;32457:131;:::i;:::-;32449:139;;32176:419;;;:::o;32601:222::-;32694:4;32732:2;32721:9;32717:18;32709:26;;32745:71;32813:1;32802:9;32798:17;32789:6;32745:71;:::i;:::-;32601:222;;;;:::o;32829:129::-;32863:6;32890:20;;:::i;:::-;32880:30;;32919:33;32947:4;32939:6;32919:33;:::i;:::-;32829:129;;;:::o;32964:75::-;32997:6;33030:2;33024:9;33014:19;;32964:75;:::o;33045:307::-;33106:4;33196:18;33188:6;33185:30;33182:56;;;33218:18;;:::i;:::-;33182:56;33256:29;33278:6;33256:29;:::i;:::-;33248:37;;33340:4;33334;33330:15;33322:23;;33045:307;;;:::o;33358:308::-;33420:4;33510:18;33502:6;33499:30;33496:56;;;33532:18;;:::i;:::-;33496:56;33570:29;33592:6;33570:29;:::i;:::-;33562:37;;33654:4;33648;33644:15;33636:23;;33358:308;;;:::o;33672:132::-;33739:4;33762:3;33754:11;;33792:4;33787:3;33783:14;33775:22;;33672:132;;;:::o;33810:141::-;33859:4;33882:3;33874:11;;33905:3;33902:1;33895:14;33939:4;33936:1;33926:18;33918:26;;33810:141;;;:::o;33957:114::-;34024:6;34058:5;34052:12;34042:22;;33957:114;;;:::o;34077:98::-;34128:6;34162:5;34156:12;34146:22;;34077:98;;;:::o;34181:99::-;34233:6;34267:5;34261:12;34251:22;;34181:99;;;:::o;34286:113::-;34356:4;34388;34383:3;34379:14;34371:22;;34286:113;;;:::o;34405:184::-;34504:11;34538:6;34533:3;34526:19;34578:4;34573:3;34569:14;34554:29;;34405:184;;;;:::o;34595:168::-;34678:11;34712:6;34707:3;34700:19;34752:4;34747:3;34743:14;34728:29;;34595:168;;;;:::o;34769:147::-;34870:11;34907:3;34892:18;;34769:147;;;;:::o;34922:169::-;35006:11;35040:6;35035:3;35028:19;35080:4;35075:3;35071:14;35056:29;;34922:169;;;;:::o;35097:148::-;35199:11;35236:3;35221:18;;35097:148;;;;:::o;35251:305::-;35291:3;35310:20;35328:1;35310:20;:::i;:::-;35305:25;;35344:20;35362:1;35344:20;:::i;:::-;35339:25;;35498:1;35430:66;35426:74;35423:1;35420:81;35417:107;;;35504:18;;:::i;:::-;35417:107;35548:1;35545;35541:9;35534:16;;35251:305;;;;:::o;35562:185::-;35602:1;35619:20;35637:1;35619:20;:::i;:::-;35614:25;;35653:20;35671:1;35653:20;:::i;:::-;35648:25;;35692:1;35682:35;;35697:18;;:::i;:::-;35682:35;35739:1;35736;35732:9;35727:14;;35562:185;;;;:::o;35753:348::-;35793:7;35816:20;35834:1;35816:20;:::i;:::-;35811:25;;35850:20;35868:1;35850:20;:::i;:::-;35845:25;;36038:1;35970:66;35966:74;35963:1;35960:81;35955:1;35948:9;35941:17;35937:105;35934:131;;;36045:18;;:::i;:::-;35934:131;36093:1;36090;36086:9;36075:20;;35753:348;;;;:::o;36107:191::-;36147:4;36167:20;36185:1;36167:20;:::i;:::-;36162:25;;36201:20;36219:1;36201:20;:::i;:::-;36196:25;;36240:1;36237;36234:8;36231:34;;;36245:18;;:::i;:::-;36231:34;36290:1;36287;36283:9;36275:17;;36107:191;;;;:::o;36304:96::-;36341:7;36370:24;36388:5;36370:24;:::i;:::-;36359:35;;36304:96;;;:::o;36406:90::-;36440:7;36483:5;36476:13;36469:21;36458:32;;36406:90;;;:::o;36502:149::-;36538:7;36578:66;36571:5;36567:78;36556:89;;36502:149;;;:::o;36657:126::-;36694:7;36734:42;36727:5;36723:54;36712:65;;36657:126;;;:::o;36789:77::-;36826:7;36855:5;36844:16;;36789:77;;;:::o;36872:154::-;36956:6;36951:3;36946;36933:30;37018:1;37009:6;37004:3;37000:16;36993:27;36872:154;;;:::o;37032:307::-;37100:1;37110:113;37124:6;37121:1;37118:13;37110:113;;;37209:1;37204:3;37200:11;37194:18;37190:1;37185:3;37181:11;37174:39;37146:2;37143:1;37139:10;37134:15;;37110:113;;;37241:6;37238:1;37235:13;37232:101;;;37321:1;37312:6;37307:3;37303:16;37296:27;37232:101;37081:258;37032:307;;;:::o;37345:320::-;37389:6;37426:1;37420:4;37416:12;37406:22;;37473:1;37467:4;37463:12;37494:18;37484:81;;37550:4;37542:6;37538:17;37528:27;;37484:81;37612:2;37604:6;37601:14;37581:18;37578:38;37575:84;;;37631:18;;:::i;:::-;37575:84;37396:269;37345:320;;;:::o;37671:281::-;37754:27;37776:4;37754:27;:::i;:::-;37746:6;37742:40;37884:6;37872:10;37869:22;37848:18;37836:10;37833:34;37830:62;37827:88;;;37895:18;;:::i;:::-;37827:88;37935:10;37931:2;37924:22;37714:238;37671:281;;:::o;37958:233::-;37997:3;38020:24;38038:5;38020:24;:::i;:::-;38011:33;;38066:66;38059:5;38056:77;38053:103;;;38136:18;;:::i;:::-;38053:103;38183:1;38176:5;38172:13;38165:20;;37958:233;;;:::o;38197:176::-;38229:1;38246:20;38264:1;38246:20;:::i;:::-;38241:25;;38280:20;38298:1;38280:20;:::i;:::-;38275:25;;38319:1;38309:35;;38324:18;;:::i;:::-;38309:35;38365:1;38362;38358:9;38353:14;;38197:176;;;;:::o;38379:180::-;38427:77;38424:1;38417:88;38524:4;38521:1;38514:15;38548:4;38545:1;38538:15;38565:180;38613:77;38610:1;38603:88;38710:4;38707:1;38700:15;38734:4;38731:1;38724:15;38751:180;38799:77;38796:1;38789:88;38896:4;38893:1;38886:15;38920:4;38917:1;38910:15;38937:180;38985:77;38982:1;38975:88;39082:4;39079:1;39072:15;39106:4;39103:1;39096:15;39123:180;39171:77;39168:1;39161:88;39268:4;39265:1;39258:15;39292:4;39289:1;39282:15;39309:117;39418:1;39415;39408:12;39432:117;39541:1;39538;39531:12;39555:117;39664:1;39661;39654:12;39678:117;39787:1;39784;39777:12;39801:117;39910:1;39907;39900:12;39924:117;40033:1;40030;40023:12;40047:102;40088:6;40139:2;40135:7;40130:2;40123:5;40119:14;40115:28;40105:38;;40047:102;;;:::o;40155:237::-;40295:34;40291:1;40283:6;40279:14;40272:58;40364:20;40359:2;40351:6;40347:15;40340:45;40155:237;:::o;40398:225::-;40538:34;40534:1;40526:6;40522:14;40515:58;40607:8;40602:2;40594:6;40590:15;40583:33;40398:225;:::o;40629:224::-;40769:34;40765:1;40757:6;40753:14;40746:58;40838:7;40833:2;40825:6;40821:15;40814:32;40629:224;:::o;40859:178::-;40999:30;40995:1;40987:6;40983:14;40976:54;40859:178;:::o;41043:170::-;41183:22;41179:1;41171:6;41167:14;41160:46;41043:170;:::o;41219:223::-;41359:34;41355:1;41347:6;41343:14;41336:58;41428:6;41423:2;41415:6;41411:15;41404:31;41219:223;:::o;41448:175::-;41588:27;41584:1;41576:6;41572:14;41565:51;41448:175;:::o;41629:231::-;41769:34;41765:1;41757:6;41753:14;41746:58;41838:14;41833:2;41825:6;41821:15;41814:39;41629:231;:::o;41866:243::-;42006:34;42002:1;41994:6;41990:14;41983:58;42075:26;42070:2;42062:6;42058:15;42051:51;41866:243;:::o;42115:229::-;42255:34;42251:1;42243:6;42239:14;42232:58;42324:12;42319:2;42311:6;42307:15;42300:37;42115:229;:::o;42350:228::-;42490:34;42486:1;42478:6;42474:14;42467:58;42559:11;42554:2;42546:6;42542:15;42535:36;42350:228;:::o;42584:182::-;42724:34;42720:1;42712:6;42708:14;42701:58;42584:182;:::o;42772:231::-;42912:34;42908:1;42900:6;42896:14;42889:58;42981:14;42976:2;42968:6;42964:15;42957:39;42772:231;:::o;43009:182::-;43149:34;43145:1;43137:6;43133:14;43126:58;43009:182;:::o;43197:173::-;43337:25;43333:1;43325:6;43321:14;43314:49;43197:173;:::o;43376:234::-;43516:34;43512:1;43504:6;43500:14;43493:58;43585:17;43580:2;43572:6;43568:15;43561:42;43376:234;:::o;43616:220::-;43756:34;43752:1;43744:6;43740:14;43733:58;43825:3;43820:2;43812:6;43808:15;43801:28;43616:220;:::o;43842:221::-;43982:34;43978:1;43970:6;43966:14;43959:58;44051:4;44046:2;44038:6;44034:15;44027:29;43842:221;:::o;44069:114::-;;:::o;44189:170::-;44329:22;44325:1;44317:6;44313:14;44306:46;44189:170;:::o;44365:236::-;44505:34;44501:1;44493:6;44489:14;44482:58;44574:19;44569:2;44561:6;44557:15;44550:44;44365:236;:::o;44607:169::-;44747:21;44743:1;44735:6;44731:14;44724:45;44607:169;:::o;44782:122::-;44855:24;44873:5;44855:24;:::i;:::-;44848:5;44845:35;44835:63;;44894:1;44891;44884:12;44835:63;44782:122;:::o;44910:116::-;44980:21;44995:5;44980:21;:::i;:::-;44973:5;44970:32;44960:60;;45016:1;45013;45006:12;44960:60;44910:116;:::o;45032:120::-;45104:23;45121:5;45104:23;:::i;:::-;45097:5;45094:34;45084:62;;45142:1;45139;45132:12;45084:62;45032:120;:::o;45158:122::-;45231:24;45249:5;45231:24;:::i;:::-;45224:5;45221:35;45211:63;;45270:1;45267;45260:12;45211:63;45158:122;:::o
Swarm Source
ipfs://488dd1ae4c04f32e6e4a5f444f147240ca2796b839e763b63e1abefbbec7e139
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.