ERC-721
NFT
Overview
Max Total Supply
2,500 ZGANG
Holders
540
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 ZGANGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ZooGang
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-30 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * Zoo Gang powered by Kollectiff * https://zoogangnft.io */ /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev 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; } /** * @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; } } /** * @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); } /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /** * @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; string private baseURI = ""; // 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 baseURI; } function _setBaseURI(string memory baseURI_) internal { baseURI = baseURI_; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.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 {} } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * @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); } } contract ZooGang is ERC721Enumerable, Ownable { using SafeMath for uint256; uint256 public constant PRICE = 0.05 ether; uint256 public constant MAX_TOKENS = 10000; uint256 public constant MAX_PURCHASE = 20; bool public saleIsActive = false; constructor() ERC721("Zoo Gang", "ZGANG") {} function withdraw() public onlyOwner { address payable sender = payable(_msgSender()); uint balance = address(this).balance; sender.transfer(balance); } function toggleSale() public onlyOwner { saleIsActive = !saleIsActive; } /** * Set some Zoo Gang aside */ function reserve() public onlyOwner { require(saleIsActive == false, "Impossible reserve a Zoo Gang when sale is active"); uint supply = totalSupply(); for (uint i = 0; i < 20; i++) { _safeMint(_msgSender(), supply + i); } } /** * Mint Zoo Gang */ function mint(uint256 numberOfTokens) public payable { require(saleIsActive, "Sale must be active to mint Zoo Gang"); require(numberOfTokens <= MAX_PURCHASE, "Can only mint 20 tokens at a time"); require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of Zoo Gangs"); require(PRICE.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct"); for(uint i = 0; i < numberOfTokens; i++) { uint mintIndex = totalSupply(); if (totalSupply() < MAX_TOKENS) { _safeMint(_msgSender(), mintIndex); } } } function setBaseURI(string memory baseURI) public onlyOwner { _setBaseURI(baseURI); } }
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":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600290805190602001906200002b929190620001e9565b506000600b60146101000a81548160ff0219169083151502179055503480156200005457600080fd5b506040518060400160405280600881526020017f5a6f6f2047616e670000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5a47414e470000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d9929190620001e9565b508060019080519060200190620000f2929190620001e9565b50505062000115620001096200011b60201b60201c565b6200012360201b60201c565b620002fe565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f790620002c8565b90600052602060002090601f0160209004810192826200021b576000855562000267565b82601f106200023657805160ff191683800117855562000267565b8280016001018555821562000267579182015b828111156200026657825182559160200191906001019062000249565b5b5090506200027691906200027a565b5090565b5b80821115620002955760008160009055506001016200027b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002e157607f821691505b60208210811415620002f857620002f762000299565b5b50919050565b614018806200030e6000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c5146105d7578063eb8d244414610614578063f2fde38b1461063f578063f47c84c514610668576101b7565b8063b88d4fde1461055a578063c87b56dd14610583578063cd3293de146105c0576101b7565b80638da5cb5b116100c65780638da5cb5b146104bf57806395d89b41146104ea578063a0712d6814610515578063a22cb46514610531576101b7565b8063715018a6146104665780637d8966e41461047d5780638d859f3e14610494576101b7565b80633ccfd60b1161015957806355f804b31161013357806355f804b3146103985780636352211e146103c157806370a08231146103fe5780637146bd081461043b576101b7565b80633ccfd60b1461031b57806342842e0e146103325780634f6ccce71461035b576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780632f745c59146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906128be565b610693565b6040516101f09190612906565b60405180910390f35b34801561020557600080fd5b5061020e61070d565b60405161021b91906129ba565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612a12565b61079f565b6040516102589190612a80565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612ac7565b610824565b005b34801561029657600080fd5b5061029f61093c565b6040516102ac9190612b16565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612b31565b610949565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612ac7565b6109a9565b6040516103129190612b16565b60405180910390f35b34801561032757600080fd5b50610330610a4e565b005b34801561033e57600080fd5b5061035960048036038101906103549190612b31565b610b26565b005b34801561036757600080fd5b50610382600480360381019061037d9190612a12565b610b46565b60405161038f9190612b16565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190612cb9565b610bb7565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190612a12565b610c3f565b6040516103f59190612a80565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190612d02565b610cf1565b6040516104329190612b16565b60405180910390f35b34801561044757600080fd5b50610450610da9565b60405161045d9190612b16565b60405180910390f35b34801561047257600080fd5b5061047b610dae565b005b34801561048957600080fd5b50610492610e36565b005b3480156104a057600080fd5b506104a9610ede565b6040516104b69190612b16565b60405180910390f35b3480156104cb57600080fd5b506104d4610ee9565b6040516104e19190612a80565b60405180910390f35b3480156104f657600080fd5b506104ff610f13565b60405161050c91906129ba565b60405180910390f35b61052f600480360381019061052a9190612a12565b610fa5565b005b34801561053d57600080fd5b5061055860048036038101906105539190612d5b565b611144565b005b34801561056657600080fd5b50610581600480360381019061057c9190612e3c565b6112c5565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190612a12565b611327565b6040516105b791906129ba565b60405180910390f35b3480156105cc57600080fd5b506105d56113cf565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190612ebf565b6114ec565b60405161060b9190612906565b60405180910390f35b34801561062057600080fd5b50610629611580565b6040516106369190612906565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612d02565b611593565b005b34801561067457600080fd5b5061067d61168b565b60405161068a9190612b16565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610706575061070582611691565b5b9050919050565b60606000805461071c90612f2e565b80601f016020809104026020016040519081016040528092919081815260200182805461074890612f2e565b80156107955780601f1061076a57610100808354040283529160200191610795565b820191906000526020600020905b81548152906001019060200180831161077857829003601f168201915b5050505050905090565b60006107aa82611773565b6107e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e090612fd2565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082f82610c3f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089790613064565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108bf6117df565b73ffffffffffffffffffffffffffffffffffffffff1614806108ee57506108ed816108e86117df565b6114ec565b5b61092d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610924906130f6565b60405180910390fd5b61093783836117e7565b505050565b6000600980549050905090565b61095a6109546117df565b826118a0565b610999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099090613188565b60405180910390fd5b6109a483838361197e565b505050565b60006109b483610cf1565b82106109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec9061321a565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a566117df565b73ffffffffffffffffffffffffffffffffffffffff16610a74610ee9565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190613286565b60405180910390fd5b6000610ad46117df565b905060004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b21573d6000803e3d6000fd5b505050565b610b41838383604051806020016040528060008152506112c5565b505050565b6000610b5061093c565b8210610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890613318565b60405180910390fd5b60098281548110610ba557610ba4613338565b5b90600052602060002001549050919050565b610bbf6117df565b73ffffffffffffffffffffffffffffffffffffffff16610bdd610ee9565b73ffffffffffffffffffffffffffffffffffffffff1614610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90613286565b60405180910390fd5b610c3c81611bda565b50565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf906133d9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d599061346b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601481565b610db66117df565b73ffffffffffffffffffffffffffffffffffffffff16610dd4610ee9565b73ffffffffffffffffffffffffffffffffffffffff1614610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190613286565b60405180910390fd5b610e346000611bf4565b565b610e3e6117df565b73ffffffffffffffffffffffffffffffffffffffff16610e5c610ee9565b73ffffffffffffffffffffffffffffffffffffffff1614610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990613286565b60405180910390fd5b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b66b1a2bc2ec5000081565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f2290612f2e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4e90612f2e565b8015610f9b5780601f10610f7057610100808354040283529160200191610f9b565b820191906000526020600020905b815481529060010190602001808311610f7e57829003601f168201915b5050505050905090565b600b60149054906101000a900460ff16610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb906134fd565b60405180910390fd5b6014811115611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061358f565b60405180910390fd5b6127106110558261104761093c565b611cba90919063ffffffff16565b1115611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90613621565b60405180910390fd5b346110b18266b1a2bc2ec50000611cd090919063ffffffff16565b11156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e99061368d565b60405180910390fd5b60005b8181101561114057600061110761093c565b905061271061111461093c565b101561112c5761112b6111256117df565b82611ce6565b5b508080611138906136dc565b9150506110f5565b5050565b61114c6117df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190613771565b60405180910390fd5b80600660006111c76117df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112746117df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112b99190612906565b60405180910390a35050565b6112d66112d06117df565b836118a0565b611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90613188565b60405180910390fd5b61132184848484611d04565b50505050565b606061133282611773565b611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613803565b60405180910390fd5b600061137b611d60565b9050600081511161139b57604051806020016040528060008152506113c7565b60026113a684611df2565b6040516020016113b79291906138f3565b6040516020818303038152906040525b915050919050565b6113d76117df565b73ffffffffffffffffffffffffffffffffffffffff166113f5610ee9565b73ffffffffffffffffffffffffffffffffffffffff161461144b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144290613286565b60405180910390fd5b60001515600b60149054906101000a900460ff161515146114a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149890613989565b60405180910390fd5b60006114ab61093c565b905060005b60148110156114e8576114d56114c46117df565b82846114d091906139a9565b611ce6565b80806114e0906136dc565b9150506114b0565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60149054906101000a900460ff1681565b61159b6117df565b73ffffffffffffffffffffffffffffffffffffffff166115b9610ee9565b73ffffffffffffffffffffffffffffffffffffffff161461160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690613286565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167690613a71565b60405180910390fd5b61168881611bf4565b50565b61271081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061175c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061176c575061176b82611f53565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661185a83610c3f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118ab82611773565b6118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613b03565b60405180910390fd5b60006118f583610c3f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061196457508373ffffffffffffffffffffffffffffffffffffffff1661194c8461079f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611975575061197481856114ec565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661199e82610c3f565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613b95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613c27565b60405180910390fd5b611a6f838383611fbd565b611a7a6000826117e7565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aca9190613c47565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b2191906139a9565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b8060029080519060200190611bf09291906127af565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611cc891906139a9565b905092915050565b60008183611cde9190613c7b565b905092915050565b611d008282604051806020016040528060008152506120d1565b5050565b611d0f84848461197e565b611d1b8484848461212c565b611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190613d47565b60405180910390fd5b50505050565b606060028054611d6f90612f2e565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9b90612f2e565b8015611de85780601f10611dbd57610100808354040283529160200191611de8565b820191906000526020600020905b815481529060010190602001808311611dcb57829003601f168201915b5050505050905090565b60606000821415611e3a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f4e565b600082905060005b60008214611e6c578080611e55906136dc565b915050600a82611e659190613d96565b9150611e42565b60008167ffffffffffffffff811115611e8857611e87612b8e565b5b6040519080825280601f01601f191660200182016040528015611eba5781602001600182028036833780820191505090505b5090505b60008514611f4757600182611ed39190613c47565b9150600a85611ee29190613dc7565b6030611eee91906139a9565b60f81b818381518110611f0457611f03613338565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f409190613d96565b9450611ebe565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611fc88383836122c3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561200b57612006816122c8565b61204a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612049576120488382612311565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561208d576120888161247e565b6120cc565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146120cb576120ca828261254f565b5b5b505050565b6120db83836125ce565b6120e8600084848461212c565b612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90613d47565b60405180910390fd5b505050565b600061214d8473ffffffffffffffffffffffffffffffffffffffff1661279c565b156122b6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121766117df565b8786866040518563ffffffff1660e01b81526004016121989493929190613e4d565b602060405180830381600087803b1580156121b257600080fd5b505af19250505080156121e357506040513d601f19601f820116820180604052508101906121e09190613eae565b60015b612266573d8060008114612213576040519150601f19603f3d011682016040523d82523d6000602084013e612218565b606091505b5060008151141561225e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225590613d47565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122bb565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161231e84610cf1565b6123289190613c47565b905060006008600084815260200190815260200160002054905081811461240d576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506124929190613c47565b90506000600a60008481526020019081526020016000205490506000600983815481106124c2576124c1613338565b5b9060005260206000200154905080600983815481106124e4576124e3613338565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061253357612532613edb565b5b6001900381819060005260206000200160009055905550505050565b600061255a83610cf1565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561263e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263590613f56565b60405180910390fd5b61264781611773565b15612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90613fc2565b60405180910390fd5b61269360008383611fbd565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126e391906139a9565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546127bb90612f2e565b90600052602060002090601f0160209004810192826127dd5760008555612824565b82601f106127f657805160ff1916838001178555612824565b82800160010185558215612824579182015b82811115612823578251825591602001919060010190612808565b5b5090506128319190612835565b5090565b5b8082111561284e576000816000905550600101612836565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61289b81612866565b81146128a657600080fd5b50565b6000813590506128b881612892565b92915050565b6000602082840312156128d4576128d361285c565b5b60006128e2848285016128a9565b91505092915050565b60008115159050919050565b612900816128eb565b82525050565b600060208201905061291b60008301846128f7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561295b578082015181840152602081019050612940565b8381111561296a576000848401525b50505050565b6000601f19601f8301169050919050565b600061298c82612921565b612996818561292c565b93506129a681856020860161293d565b6129af81612970565b840191505092915050565b600060208201905081810360008301526129d48184612981565b905092915050565b6000819050919050565b6129ef816129dc565b81146129fa57600080fd5b50565b600081359050612a0c816129e6565b92915050565b600060208284031215612a2857612a2761285c565b5b6000612a36848285016129fd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a6a82612a3f565b9050919050565b612a7a81612a5f565b82525050565b6000602082019050612a956000830184612a71565b92915050565b612aa481612a5f565b8114612aaf57600080fd5b50565b600081359050612ac181612a9b565b92915050565b60008060408385031215612ade57612add61285c565b5b6000612aec85828601612ab2565b9250506020612afd858286016129fd565b9150509250929050565b612b10816129dc565b82525050565b6000602082019050612b2b6000830184612b07565b92915050565b600080600060608486031215612b4a57612b4961285c565b5b6000612b5886828701612ab2565b9350506020612b6986828701612ab2565b9250506040612b7a868287016129fd565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bc682612970565b810181811067ffffffffffffffff82111715612be557612be4612b8e565b5b80604052505050565b6000612bf8612852565b9050612c048282612bbd565b919050565b600067ffffffffffffffff821115612c2457612c23612b8e565b5b612c2d82612970565b9050602081019050919050565b82818337600083830152505050565b6000612c5c612c5784612c09565b612bee565b905082815260208101848484011115612c7857612c77612b89565b5b612c83848285612c3a565b509392505050565b600082601f830112612ca057612c9f612b84565b5b8135612cb0848260208601612c49565b91505092915050565b600060208284031215612ccf57612cce61285c565b5b600082013567ffffffffffffffff811115612ced57612cec612861565b5b612cf984828501612c8b565b91505092915050565b600060208284031215612d1857612d1761285c565b5b6000612d2684828501612ab2565b91505092915050565b612d38816128eb565b8114612d4357600080fd5b50565b600081359050612d5581612d2f565b92915050565b60008060408385031215612d7257612d7161285c565b5b6000612d8085828601612ab2565b9250506020612d9185828601612d46565b9150509250929050565b600067ffffffffffffffff821115612db657612db5612b8e565b5b612dbf82612970565b9050602081019050919050565b6000612ddf612dda84612d9b565b612bee565b905082815260208101848484011115612dfb57612dfa612b89565b5b612e06848285612c3a565b509392505050565b600082601f830112612e2357612e22612b84565b5b8135612e33848260208601612dcc565b91505092915050565b60008060008060808587031215612e5657612e5561285c565b5b6000612e6487828801612ab2565b9450506020612e7587828801612ab2565b9350506040612e86878288016129fd565b925050606085013567ffffffffffffffff811115612ea757612ea6612861565b5b612eb387828801612e0e565b91505092959194509250565b60008060408385031215612ed657612ed561285c565b5b6000612ee485828601612ab2565b9250506020612ef585828601612ab2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f4657607f821691505b60208210811415612f5a57612f59612eff565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612fbc602c8361292c565b9150612fc782612f60565b604082019050919050565b60006020820190508181036000830152612feb81612faf565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061304e60218361292c565b915061305982612ff2565b604082019050919050565b6000602082019050818103600083015261307d81613041565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006130e060388361292c565b91506130eb82613084565b604082019050919050565b6000602082019050818103600083015261310f816130d3565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061317260318361292c565b915061317d82613116565b604082019050919050565b600060208201905081810360008301526131a181613165565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613204602b8361292c565b915061320f826131a8565b604082019050919050565b60006020820190508181036000830152613233816131f7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061327060208361292c565b915061327b8261323a565b602082019050919050565b6000602082019050818103600083015261329f81613263565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613302602c8361292c565b915061330d826132a6565b604082019050919050565b60006020820190508181036000830152613331816132f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006133c360298361292c565b91506133ce82613367565b604082019050919050565b600060208201905081810360008301526133f2816133b6565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613455602a8361292c565b9150613460826133f9565b604082019050919050565b6000602082019050818103600083015261348481613448565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e74205a6f6f2060008201527f47616e6700000000000000000000000000000000000000000000000000000000602082015250565b60006134e760248361292c565b91506134f28261348b565b604082019050919050565b60006020820190508181036000830152613516816134da565b9050919050565b7f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061357960218361292c565b91506135848261351d565b604082019050919050565b600060208201905081810360008301526135a88161356c565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66205a6f6f2047616e677300000000000000000000000000000000000000602082015250565b600061360b602d8361292c565b9150613616826135af565b604082019050919050565b6000602082019050818103600083015261363a816135fe565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000613677601f8361292c565b915061368282613641565b602082019050919050565b600060208201905081810360008301526136a68161366a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136e7826129dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561371a576137196136ad565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061375b60198361292c565b915061376682613725565b602082019050919050565b6000602082019050818103600083015261378a8161374e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006137ed602f8361292c565b91506137f882613791565b604082019050919050565b6000602082019050818103600083015261381c816137e0565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461385081612f2e565b61385a8186613823565b945060018216600081146138755760018114613886576138b9565b60ff198316865281860193506138b9565b61388f8561382e565b60005b838110156138b157815481890152600182019150602081019050613892565b838801955050505b50505092915050565b60006138cd82612921565b6138d78185613823565b93506138e781856020860161293d565b80840191505092915050565b60006138ff8285613843565b915061390b82846138c2565b91508190509392505050565b7f496d706f737369626c6520726573657276652061205a6f6f2047616e6720776860008201527f656e2073616c6520697320616374697665000000000000000000000000000000602082015250565b600061397360318361292c565b915061397e82613917565b604082019050919050565b600060208201905081810360008301526139a281613966565b9050919050565b60006139b4826129dc565b91506139bf836129dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139f4576139f36136ad565b5b828201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a5b60268361292c565b9150613a66826139ff565b604082019050919050565b60006020820190508181036000830152613a8a81613a4e565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613aed602c8361292c565b9150613af882613a91565b604082019050919050565b60006020820190508181036000830152613b1c81613ae0565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613b7f60298361292c565b9150613b8a82613b23565b604082019050919050565b60006020820190508181036000830152613bae81613b72565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c1160248361292c565b9150613c1c82613bb5565b604082019050919050565b60006020820190508181036000830152613c4081613c04565b9050919050565b6000613c52826129dc565b9150613c5d836129dc565b925082821015613c7057613c6f6136ad565b5b828203905092915050565b6000613c86826129dc565b9150613c91836129dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cca57613cc96136ad565b5b828202905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613d3160328361292c565b9150613d3c82613cd5565b604082019050919050565b60006020820190508181036000830152613d6081613d24565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613da1826129dc565b9150613dac836129dc565b925082613dbc57613dbb613d67565b5b828204905092915050565b6000613dd2826129dc565b9150613ddd836129dc565b925082613ded57613dec613d67565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613e1f82613df8565b613e298185613e03565b9350613e3981856020860161293d565b613e4281612970565b840191505092915050565b6000608082019050613e626000830187612a71565b613e6f6020830186612a71565b613e7c6040830185612b07565b8181036060830152613e8e8184613e14565b905095945050505050565b600081519050613ea881612892565b92915050565b600060208284031215613ec457613ec361285c565b5b6000613ed284828501613e99565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613f4060208361292c565b9150613f4b82613f0a565b602082019050919050565b60006020820190508181036000830152613f6f81613f33565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613fac601c8361292c565b9150613fb782613f76565b602082019050919050565b60006020820190508181036000830152613fdb81613f9f565b905091905056fea26469706673582212200b4e62b964ef7377bf40112d7796a9a15c0ba4816e46bad861727020aaf2cdaf64736f6c63430008090033
Deployed Bytecode
0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c5146105d7578063eb8d244414610614578063f2fde38b1461063f578063f47c84c514610668576101b7565b8063b88d4fde1461055a578063c87b56dd14610583578063cd3293de146105c0576101b7565b80638da5cb5b116100c65780638da5cb5b146104bf57806395d89b41146104ea578063a0712d6814610515578063a22cb46514610531576101b7565b8063715018a6146104665780637d8966e41461047d5780638d859f3e14610494576101b7565b80633ccfd60b1161015957806355f804b31161013357806355f804b3146103985780636352211e146103c157806370a08231146103fe5780637146bd081461043b576101b7565b80633ccfd60b1461031b57806342842e0e146103325780634f6ccce71461035b576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780632f745c59146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906128be565b610693565b6040516101f09190612906565b60405180910390f35b34801561020557600080fd5b5061020e61070d565b60405161021b91906129ba565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612a12565b61079f565b6040516102589190612a80565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612ac7565b610824565b005b34801561029657600080fd5b5061029f61093c565b6040516102ac9190612b16565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612b31565b610949565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612ac7565b6109a9565b6040516103129190612b16565b60405180910390f35b34801561032757600080fd5b50610330610a4e565b005b34801561033e57600080fd5b5061035960048036038101906103549190612b31565b610b26565b005b34801561036757600080fd5b50610382600480360381019061037d9190612a12565b610b46565b60405161038f9190612b16565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba9190612cb9565b610bb7565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190612a12565b610c3f565b6040516103f59190612a80565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190612d02565b610cf1565b6040516104329190612b16565b60405180910390f35b34801561044757600080fd5b50610450610da9565b60405161045d9190612b16565b60405180910390f35b34801561047257600080fd5b5061047b610dae565b005b34801561048957600080fd5b50610492610e36565b005b3480156104a057600080fd5b506104a9610ede565b6040516104b69190612b16565b60405180910390f35b3480156104cb57600080fd5b506104d4610ee9565b6040516104e19190612a80565b60405180910390f35b3480156104f657600080fd5b506104ff610f13565b60405161050c91906129ba565b60405180910390f35b61052f600480360381019061052a9190612a12565b610fa5565b005b34801561053d57600080fd5b5061055860048036038101906105539190612d5b565b611144565b005b34801561056657600080fd5b50610581600480360381019061057c9190612e3c565b6112c5565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190612a12565b611327565b6040516105b791906129ba565b60405180910390f35b3480156105cc57600080fd5b506105d56113cf565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190612ebf565b6114ec565b60405161060b9190612906565b60405180910390f35b34801561062057600080fd5b50610629611580565b6040516106369190612906565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612d02565b611593565b005b34801561067457600080fd5b5061067d61168b565b60405161068a9190612b16565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610706575061070582611691565b5b9050919050565b60606000805461071c90612f2e565b80601f016020809104026020016040519081016040528092919081815260200182805461074890612f2e565b80156107955780601f1061076a57610100808354040283529160200191610795565b820191906000526020600020905b81548152906001019060200180831161077857829003601f168201915b5050505050905090565b60006107aa82611773565b6107e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e090612fd2565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082f82610c3f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089790613064565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108bf6117df565b73ffffffffffffffffffffffffffffffffffffffff1614806108ee57506108ed816108e86117df565b6114ec565b5b61092d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610924906130f6565b60405180910390fd5b61093783836117e7565b505050565b6000600980549050905090565b61095a6109546117df565b826118a0565b610999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099090613188565b60405180910390fd5b6109a483838361197e565b505050565b60006109b483610cf1565b82106109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec9061321a565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a566117df565b73ffffffffffffffffffffffffffffffffffffffff16610a74610ee9565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190613286565b60405180910390fd5b6000610ad46117df565b905060004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b21573d6000803e3d6000fd5b505050565b610b41838383604051806020016040528060008152506112c5565b505050565b6000610b5061093c565b8210610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890613318565b60405180910390fd5b60098281548110610ba557610ba4613338565b5b90600052602060002001549050919050565b610bbf6117df565b73ffffffffffffffffffffffffffffffffffffffff16610bdd610ee9565b73ffffffffffffffffffffffffffffffffffffffff1614610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90613286565b60405180910390fd5b610c3c81611bda565b50565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf906133d9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d599061346b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601481565b610db66117df565b73ffffffffffffffffffffffffffffffffffffffff16610dd4610ee9565b73ffffffffffffffffffffffffffffffffffffffff1614610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190613286565b60405180910390fd5b610e346000611bf4565b565b610e3e6117df565b73ffffffffffffffffffffffffffffffffffffffff16610e5c610ee9565b73ffffffffffffffffffffffffffffffffffffffff1614610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990613286565b60405180910390fd5b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b66b1a2bc2ec5000081565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f2290612f2e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4e90612f2e565b8015610f9b5780601f10610f7057610100808354040283529160200191610f9b565b820191906000526020600020905b815481529060010190602001808311610f7e57829003601f168201915b5050505050905090565b600b60149054906101000a900460ff16610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb906134fd565b60405180910390fd5b6014811115611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061358f565b60405180910390fd5b6127106110558261104761093c565b611cba90919063ffffffff16565b1115611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90613621565b60405180910390fd5b346110b18266b1a2bc2ec50000611cd090919063ffffffff16565b11156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e99061368d565b60405180910390fd5b60005b8181101561114057600061110761093c565b905061271061111461093c565b101561112c5761112b6111256117df565b82611ce6565b5b508080611138906136dc565b9150506110f5565b5050565b61114c6117df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190613771565b60405180910390fd5b80600660006111c76117df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112746117df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112b99190612906565b60405180910390a35050565b6112d66112d06117df565b836118a0565b611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90613188565b60405180910390fd5b61132184848484611d04565b50505050565b606061133282611773565b611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613803565b60405180910390fd5b600061137b611d60565b9050600081511161139b57604051806020016040528060008152506113c7565b60026113a684611df2565b6040516020016113b79291906138f3565b6040516020818303038152906040525b915050919050565b6113d76117df565b73ffffffffffffffffffffffffffffffffffffffff166113f5610ee9565b73ffffffffffffffffffffffffffffffffffffffff161461144b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144290613286565b60405180910390fd5b60001515600b60149054906101000a900460ff161515146114a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149890613989565b60405180910390fd5b60006114ab61093c565b905060005b60148110156114e8576114d56114c46117df565b82846114d091906139a9565b611ce6565b80806114e0906136dc565b9150506114b0565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60149054906101000a900460ff1681565b61159b6117df565b73ffffffffffffffffffffffffffffffffffffffff166115b9610ee9565b73ffffffffffffffffffffffffffffffffffffffff161461160f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160690613286565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561167f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167690613a71565b60405180910390fd5b61168881611bf4565b50565b61271081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061175c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061176c575061176b82611f53565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661185a83610c3f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118ab82611773565b6118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613b03565b60405180910390fd5b60006118f583610c3f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061196457508373ffffffffffffffffffffffffffffffffffffffff1661194c8461079f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611975575061197481856114ec565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661199e82610c3f565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613b95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613c27565b60405180910390fd5b611a6f838383611fbd565b611a7a6000826117e7565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aca9190613c47565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b2191906139a9565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b8060029080519060200190611bf09291906127af565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611cc891906139a9565b905092915050565b60008183611cde9190613c7b565b905092915050565b611d008282604051806020016040528060008152506120d1565b5050565b611d0f84848461197e565b611d1b8484848461212c565b611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190613d47565b60405180910390fd5b50505050565b606060028054611d6f90612f2e565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9b90612f2e565b8015611de85780601f10611dbd57610100808354040283529160200191611de8565b820191906000526020600020905b815481529060010190602001808311611dcb57829003601f168201915b5050505050905090565b60606000821415611e3a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f4e565b600082905060005b60008214611e6c578080611e55906136dc565b915050600a82611e659190613d96565b9150611e42565b60008167ffffffffffffffff811115611e8857611e87612b8e565b5b6040519080825280601f01601f191660200182016040528015611eba5781602001600182028036833780820191505090505b5090505b60008514611f4757600182611ed39190613c47565b9150600a85611ee29190613dc7565b6030611eee91906139a9565b60f81b818381518110611f0457611f03613338565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f409190613d96565b9450611ebe565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611fc88383836122c3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561200b57612006816122c8565b61204a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612049576120488382612311565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561208d576120888161247e565b6120cc565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146120cb576120ca828261254f565b5b5b505050565b6120db83836125ce565b6120e8600084848461212c565b612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90613d47565b60405180910390fd5b505050565b600061214d8473ffffffffffffffffffffffffffffffffffffffff1661279c565b156122b6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121766117df565b8786866040518563ffffffff1660e01b81526004016121989493929190613e4d565b602060405180830381600087803b1580156121b257600080fd5b505af19250505080156121e357506040513d601f19601f820116820180604052508101906121e09190613eae565b60015b612266573d8060008114612213576040519150601f19603f3d011682016040523d82523d6000602084013e612218565b606091505b5060008151141561225e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225590613d47565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122bb565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161231e84610cf1565b6123289190613c47565b905060006008600084815260200190815260200160002054905081811461240d576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506124929190613c47565b90506000600a60008481526020019081526020016000205490506000600983815481106124c2576124c1613338565b5b9060005260206000200154905080600983815481106124e4576124e3613338565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061253357612532613edb565b5b6001900381819060005260206000200160009055905550505050565b600061255a83610cf1565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561263e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263590613f56565b60405180910390fd5b61264781611773565b15612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90613fc2565b60405180910390fd5b61269360008383611fbd565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126e391906139a9565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546127bb90612f2e565b90600052602060002090601f0160209004810192826127dd5760008555612824565b82601f106127f657805160ff1916838001178555612824565b82800160010185558215612824579182015b82811115612823578251825591602001919060010190612808565b5b5090506128319190612835565b5090565b5b8082111561284e576000816000905550600101612836565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61289b81612866565b81146128a657600080fd5b50565b6000813590506128b881612892565b92915050565b6000602082840312156128d4576128d361285c565b5b60006128e2848285016128a9565b91505092915050565b60008115159050919050565b612900816128eb565b82525050565b600060208201905061291b60008301846128f7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561295b578082015181840152602081019050612940565b8381111561296a576000848401525b50505050565b6000601f19601f8301169050919050565b600061298c82612921565b612996818561292c565b93506129a681856020860161293d565b6129af81612970565b840191505092915050565b600060208201905081810360008301526129d48184612981565b905092915050565b6000819050919050565b6129ef816129dc565b81146129fa57600080fd5b50565b600081359050612a0c816129e6565b92915050565b600060208284031215612a2857612a2761285c565b5b6000612a36848285016129fd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a6a82612a3f565b9050919050565b612a7a81612a5f565b82525050565b6000602082019050612a956000830184612a71565b92915050565b612aa481612a5f565b8114612aaf57600080fd5b50565b600081359050612ac181612a9b565b92915050565b60008060408385031215612ade57612add61285c565b5b6000612aec85828601612ab2565b9250506020612afd858286016129fd565b9150509250929050565b612b10816129dc565b82525050565b6000602082019050612b2b6000830184612b07565b92915050565b600080600060608486031215612b4a57612b4961285c565b5b6000612b5886828701612ab2565b9350506020612b6986828701612ab2565b9250506040612b7a868287016129fd565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bc682612970565b810181811067ffffffffffffffff82111715612be557612be4612b8e565b5b80604052505050565b6000612bf8612852565b9050612c048282612bbd565b919050565b600067ffffffffffffffff821115612c2457612c23612b8e565b5b612c2d82612970565b9050602081019050919050565b82818337600083830152505050565b6000612c5c612c5784612c09565b612bee565b905082815260208101848484011115612c7857612c77612b89565b5b612c83848285612c3a565b509392505050565b600082601f830112612ca057612c9f612b84565b5b8135612cb0848260208601612c49565b91505092915050565b600060208284031215612ccf57612cce61285c565b5b600082013567ffffffffffffffff811115612ced57612cec612861565b5b612cf984828501612c8b565b91505092915050565b600060208284031215612d1857612d1761285c565b5b6000612d2684828501612ab2565b91505092915050565b612d38816128eb565b8114612d4357600080fd5b50565b600081359050612d5581612d2f565b92915050565b60008060408385031215612d7257612d7161285c565b5b6000612d8085828601612ab2565b9250506020612d9185828601612d46565b9150509250929050565b600067ffffffffffffffff821115612db657612db5612b8e565b5b612dbf82612970565b9050602081019050919050565b6000612ddf612dda84612d9b565b612bee565b905082815260208101848484011115612dfb57612dfa612b89565b5b612e06848285612c3a565b509392505050565b600082601f830112612e2357612e22612b84565b5b8135612e33848260208601612dcc565b91505092915050565b60008060008060808587031215612e5657612e5561285c565b5b6000612e6487828801612ab2565b9450506020612e7587828801612ab2565b9350506040612e86878288016129fd565b925050606085013567ffffffffffffffff811115612ea757612ea6612861565b5b612eb387828801612e0e565b91505092959194509250565b60008060408385031215612ed657612ed561285c565b5b6000612ee485828601612ab2565b9250506020612ef585828601612ab2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f4657607f821691505b60208210811415612f5a57612f59612eff565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612fbc602c8361292c565b9150612fc782612f60565b604082019050919050565b60006020820190508181036000830152612feb81612faf565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061304e60218361292c565b915061305982612ff2565b604082019050919050565b6000602082019050818103600083015261307d81613041565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006130e060388361292c565b91506130eb82613084565b604082019050919050565b6000602082019050818103600083015261310f816130d3565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061317260318361292c565b915061317d82613116565b604082019050919050565b600060208201905081810360008301526131a181613165565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613204602b8361292c565b915061320f826131a8565b604082019050919050565b60006020820190508181036000830152613233816131f7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061327060208361292c565b915061327b8261323a565b602082019050919050565b6000602082019050818103600083015261329f81613263565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613302602c8361292c565b915061330d826132a6565b604082019050919050565b60006020820190508181036000830152613331816132f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006133c360298361292c565b91506133ce82613367565b604082019050919050565b600060208201905081810360008301526133f2816133b6565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613455602a8361292c565b9150613460826133f9565b604082019050919050565b6000602082019050818103600083015261348481613448565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e74205a6f6f2060008201527f47616e6700000000000000000000000000000000000000000000000000000000602082015250565b60006134e760248361292c565b91506134f28261348b565b604082019050919050565b60006020820190508181036000830152613516816134da565b9050919050565b7f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061357960218361292c565b91506135848261351d565b604082019050919050565b600060208201905081810360008301526135a88161356c565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66205a6f6f2047616e677300000000000000000000000000000000000000602082015250565b600061360b602d8361292c565b9150613616826135af565b604082019050919050565b6000602082019050818103600083015261363a816135fe565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000613677601f8361292c565b915061368282613641565b602082019050919050565b600060208201905081810360008301526136a68161366a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136e7826129dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561371a576137196136ad565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061375b60198361292c565b915061376682613725565b602082019050919050565b6000602082019050818103600083015261378a8161374e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006137ed602f8361292c565b91506137f882613791565b604082019050919050565b6000602082019050818103600083015261381c816137e0565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461385081612f2e565b61385a8186613823565b945060018216600081146138755760018114613886576138b9565b60ff198316865281860193506138b9565b61388f8561382e565b60005b838110156138b157815481890152600182019150602081019050613892565b838801955050505b50505092915050565b60006138cd82612921565b6138d78185613823565b93506138e781856020860161293d565b80840191505092915050565b60006138ff8285613843565b915061390b82846138c2565b91508190509392505050565b7f496d706f737369626c6520726573657276652061205a6f6f2047616e6720776860008201527f656e2073616c6520697320616374697665000000000000000000000000000000602082015250565b600061397360318361292c565b915061397e82613917565b604082019050919050565b600060208201905081810360008301526139a281613966565b9050919050565b60006139b4826129dc565b91506139bf836129dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139f4576139f36136ad565b5b828201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a5b60268361292c565b9150613a66826139ff565b604082019050919050565b60006020820190508181036000830152613a8a81613a4e565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613aed602c8361292c565b9150613af882613a91565b604082019050919050565b60006020820190508181036000830152613b1c81613ae0565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613b7f60298361292c565b9150613b8a82613b23565b604082019050919050565b60006020820190508181036000830152613bae81613b72565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613c1160248361292c565b9150613c1c82613bb5565b604082019050919050565b60006020820190508181036000830152613c4081613c04565b9050919050565b6000613c52826129dc565b9150613c5d836129dc565b925082821015613c7057613c6f6136ad565b5b828203905092915050565b6000613c86826129dc565b9150613c91836129dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cca57613cc96136ad565b5b828202905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613d3160328361292c565b9150613d3c82613cd5565b604082019050919050565b60006020820190508181036000830152613d6081613d24565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613da1826129dc565b9150613dac836129dc565b925082613dbc57613dbb613d67565b5b828204905092915050565b6000613dd2826129dc565b9150613ddd836129dc565b925082613ded57613dec613d67565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000613e1f82613df8565b613e298185613e03565b9350613e3981856020860161293d565b613e4281612970565b840191505092915050565b6000608082019050613e626000830187612a71565b613e6f6020830186612a71565b613e7c6040830185612b07565b8181036060830152613e8e8184613e14565b905095945050505050565b600081519050613ea881612892565b92915050565b600060208284031215613ec457613ec361285c565b5b6000613ed284828501613e99565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613f4060208361292c565b9150613f4b82613f0a565b602082019050919050565b60006020820190508181036000830152613f6f81613f33565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613fac601c8361292c565b9150613fb782613f76565b602082019050919050565b60006020820190508181036000830152613fdb81613f9f565b905091905056fea26469706673582212200b4e62b964ef7377bf40112d7796a9a15c0ba4816e46bad861727020aaf2cdaf64736f6c63430008090033
Deployed Bytecode Sourcemap
49147:1776:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40607:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27629:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29294:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28817:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41247:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30184:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40915:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49483:184;;;;;;;;;;;;;:::i;:::-;;30594:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41437:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50821:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27323:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27053:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49340:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48326:103;;;;;;;;;;;;;:::i;:::-;;49675:86;;;;;;;;;;;;;:::i;:::-;;49238:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47675:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27798:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50151:662;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29587:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30850:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27973:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49819:286;;;;;;;;;;;;;:::i;:::-;;29953:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49390:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48584:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49289:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40607:224;40709:4;40748:35;40733:50;;;:11;:50;;;;:90;;;;40787:36;40811:11;40787:23;:36::i;:::-;40733:90;40726:97;;40607:224;;;:::o;27629:100::-;27683:13;27716:5;27709:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27629:100;:::o;29294:221::-;29370:7;29398:16;29406:7;29398;:16::i;:::-;29390:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29483:15;:24;29499:7;29483:24;;;;;;;;;;;;;;;;;;;;;29476:31;;29294:221;;;:::o;28817:411::-;28898:13;28914:23;28929:7;28914:14;:23::i;:::-;28898:39;;28962:5;28956:11;;:2;:11;;;;28948:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29056:5;29040:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29065:37;29082:5;29089:12;:10;:12::i;:::-;29065:16;:37::i;:::-;29040:62;29018:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;29199:21;29208:2;29212:7;29199:8;:21::i;:::-;28887:341;28817:411;;:::o;41247:113::-;41308:7;41335:10;:17;;;;41328:24;;41247:113;:::o;30184:339::-;30379:41;30398:12;:10;:12::i;:::-;30412:7;30379:18;:41::i;:::-;30371:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30487:28;30497:4;30503:2;30507:7;30487:9;:28::i;:::-;30184:339;;;:::o;40915:256::-;41012:7;41048:23;41065:5;41048:16;:23::i;:::-;41040:5;:31;41032:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;41137:12;:19;41150:5;41137:19;;;;;;;;;;;;;;;:26;41157:5;41137:26;;;;;;;;;;;;41130:33;;40915:256;;;;:::o;49483:184::-;47906:12;:10;:12::i;:::-;47895:23;;:7;:5;:7::i;:::-;:23;;;47887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49531:22:::1;49564:12;:10;:12::i;:::-;49531:46;;49588:12;49603:21;49588:36;;49635:6;:15;;:24;49651:7;49635:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49520:147;;49483:184::o:0;30594:185::-;30732:39;30749:4;30755:2;30759:7;30732:39;;;;;;;;;;;;:16;:39::i;:::-;30594:185;;;:::o;41437:233::-;41512:7;41548:30;:28;:30::i;:::-;41540:5;:38;41532:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41645:10;41656:5;41645:17;;;;;;;;:::i;:::-;;;;;;;;;;41638:24;;41437:233;;;:::o;50821:99::-;47906:12;:10;:12::i;:::-;47895:23;;:7;:5;:7::i;:::-;:23;;;47887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50892:20:::1;50904:7;50892:11;:20::i;:::-;50821:99:::0;:::o;27323:239::-;27395:7;27415:13;27431:7;:16;27439:7;27431:16;;;;;;;;;;;;;;;;;;;;;27415:32;;27483:1;27466:19;;:5;:19;;;;27458:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27549:5;27542:12;;;27323:239;;;:::o;27053:208::-;27125:7;27170:1;27153:19;;:5;:19;;;;27145:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27237:9;:16;27247:5;27237:16;;;;;;;;;;;;;;;;27230:23;;27053:208;;;:::o;49340:41::-;49379:2;49340:41;:::o;48326:103::-;47906:12;:10;:12::i;:::-;47895:23;;:7;:5;:7::i;:::-;:23;;;47887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48391:30:::1;48418:1;48391:18;:30::i;:::-;48326:103::o:0;49675:86::-;47906:12;:10;:12::i;:::-;47895:23;;:7;:5;:7::i;:::-;:23;;;47887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49741:12:::1;;;;;;;;;;;49740:13;49725:12;;:28;;;;;;;;;;;;;;;;;;49675:86::o:0;49238:42::-;49270:10;49238:42;:::o;47675:87::-;47721:7;47748:6;;;;;;;;;;;47741:13;;47675:87;:::o;27798:104::-;27854:13;27887:7;27880:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27798:104;:::o;50151:662::-;50223:12;;;;;;;;;;;50215:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49379:2;50295:14;:30;;50287:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49326:5;50382:33;50400:14;50382:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;50374:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;50527:9;50498:25;50508:14;49270:10;50498:9;;:25;;;;:::i;:::-;:38;;50490:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;50597:6;50593:213;50613:14;50609:1;:18;50593:213;;;50649:14;50666:13;:11;:13::i;:::-;50649:30;;49326:5;50698:13;:11;:13::i;:::-;:26;50694:101;;;50745:34;50755:12;:10;:12::i;:::-;50769:9;50745;:34::i;:::-;50694:101;50634:172;50629:3;;;;;:::i;:::-;;;;50593:213;;;;50151:662;:::o;29587:295::-;29702:12;:10;:12::i;:::-;29690:24;;:8;:24;;;;29682:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29802:8;29757:18;:32;29776:12;:10;:12::i;:::-;29757:32;;;;;;;;;;;;;;;:42;29790:8;29757:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29855:8;29826:48;;29841:12;:10;:12::i;:::-;29826:48;;;29865:8;29826:48;;;;;;:::i;:::-;;;;;;;;29587:295;;:::o;30850:328::-;31025:41;31044:12;:10;:12::i;:::-;31058:7;31025:18;:41::i;:::-;31017:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31131:39;31145:4;31151:2;31155:7;31164:5;31131:13;:39::i;:::-;30850:328;;;;:::o;27973:336::-;28046:13;28080:16;28088:7;28080;:16::i;:::-;28072:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28161:22;28186:10;:8;:10::i;:::-;28161:35;;28239:1;28220:8;28214:22;:26;:87;;;;;;;;;;;;;;;;;28267:7;28276:18;:7;:16;:18::i;:::-;28250:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28214:87;28207:94;;;27973:336;;;:::o;49819:286::-;47906:12;:10;:12::i;:::-;47895:23;;:7;:5;:7::i;:::-;:23;;;47887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49895:5:::1;49879:21;;:12;;;;;;;;;;;:21;;;49871:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;49968:11;49982:13;:11;:13::i;:::-;49968:27;;50011:6;50006:92;50027:2;50023:1;:6;50006:92;;;50051:35;50061:12;:10;:12::i;:::-;50084:1;50075:6;:10;;;;:::i;:::-;50051:9;:35::i;:::-;50031:3;;;;;:::i;:::-;;;;50006:92;;;;49855:250;49819:286::o:0;29953:164::-;30050:4;30074:18;:25;30093:5;30074:25;;;;;;;;;;;;;;;:35;30100:8;30074:35;;;;;;;;;;;;;;;;;;;;;;;;;30067:42;;29953:164;;;;:::o;49390:32::-;;;;;;;;;;;;;:::o;48584:201::-;47906:12;:10;:12::i;:::-;47895:23;;:7;:5;:7::i;:::-;:23;;;47887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48693:1:::1;48673:22;;:8;:22;;;;48665:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48749:28;48768:8;48749:18;:28::i;:::-;48584:201:::0;:::o;49289:42::-;49326:5;49289:42;:::o;26684:305::-;26786:4;26838:25;26823:40;;;:11;:40;;;;:105;;;;26895:33;26880:48;;;:11;:48;;;;26823:105;:158;;;;26945:36;26969:11;26945:23;:36::i;:::-;26823:158;26803:178;;26684:305;;;:::o;32688:127::-;32753:4;32805:1;32777:30;;:7;:16;32785:7;32777:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32770:37;;32688:127;;;:::o;16502:98::-;16555:7;16582:10;16575:17;;16502:98;:::o;36670:174::-;36772:2;36745:15;:24;36761:7;36745:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36828:7;36824:2;36790:46;;36799:23;36814:7;36799:14;:23::i;:::-;36790:46;;;;;;;;;;;;36670:174;;:::o;32982:348::-;33075:4;33100:16;33108:7;33100;:16::i;:::-;33092:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33176:13;33192:23;33207:7;33192:14;:23::i;:::-;33176:39;;33245:5;33234:16;;:7;:16;;;:51;;;;33278:7;33254:31;;:20;33266:7;33254:11;:20::i;:::-;:31;;;33234:51;:87;;;;33289:32;33306:5;33313:7;33289:16;:32::i;:::-;33234:87;33226:96;;;32982:348;;;;:::o;35974:578::-;36133:4;36106:31;;:23;36121:7;36106:14;:23::i;:::-;:31;;;36098:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;36216:1;36202:16;;:2;:16;;;;36194:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36272:39;36293:4;36299:2;36303:7;36272:20;:39::i;:::-;36376:29;36393:1;36397:7;36376:8;:29::i;:::-;36437:1;36418:9;:15;36428:4;36418:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36466:1;36449:9;:13;36459:2;36449:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36497:2;36478:7;:16;36486:7;36478:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36536:7;36532:2;36517:27;;36526:4;36517:27;;;;;;;;;;;;35974:578;;;:::o;28664:91::-;28739:8;28729:7;:18;;;;;;;;;;;;:::i;:::-;;28664:91;:::o;48945:191::-;49019:16;49038:6;;;;;;;;;;;49019:25;;49064:8;49055:6;;:17;;;;;;;;;;;;;;;;;;49119:8;49088:40;;49109:8;49088:40;;;;;;;;;;;;49008:128;48945:191;:::o;21251:98::-;21309:7;21340:1;21336;:5;;;;:::i;:::-;21329:12;;21251:98;;;;:::o;21989:::-;22047:7;22078:1;22074;:5;;;;:::i;:::-;22067:12;;21989:98;;;;:::o;33672:110::-;33748:26;33758:2;33762:7;33748:26;;;;;;;;;;;;:9;:26::i;:::-;33672:110;;:::o;32060:315::-;32217:28;32227:4;32233:2;32237:7;32217:9;:28::i;:::-;32264:48;32287:4;32293:2;32297:7;32306:5;32264:22;:48::i;:::-;32256:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;32060:315;;;;:::o;28557:99::-;28608:13;28641:7;28634:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28557:99;:::o;16945:723::-;17001:13;17231:1;17222:5;:10;17218:53;;;17249:10;;;;;;;;;;;;;;;;;;;;;17218:53;17281:12;17296:5;17281:20;;17312:14;17337:78;17352:1;17344:4;:9;17337:78;;17370:8;;;;;:::i;:::-;;;;17401:2;17393:10;;;;;:::i;:::-;;;17337:78;;;17425:19;17457:6;17447:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17425:39;;17475:154;17491:1;17482:5;:10;17475:154;;17519:1;17509:11;;;;;:::i;:::-;;;17586:2;17578:5;:10;;;;:::i;:::-;17565:2;:24;;;;:::i;:::-;17552:39;;17535:6;17542;17535:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17615:2;17606:11;;;;;:::i;:::-;;;17475:154;;;17653:6;17639:21;;;;;16945:723;;;;:::o;6296:157::-;6381:4;6420:25;6405:40;;;:11;:40;;;;6398:47;;6296:157;;;:::o;42283:589::-;42427:45;42454:4;42460:2;42464:7;42427:26;:45::i;:::-;42505:1;42489:18;;:4;:18;;;42485:187;;;42524:40;42556:7;42524:31;:40::i;:::-;42485:187;;;42594:2;42586:10;;:4;:10;;;42582:90;;42613:47;42646:4;42652:7;42613:32;:47::i;:::-;42582:90;42485:187;42700:1;42686:16;;:2;:16;;;42682:183;;;42719:45;42756:7;42719:36;:45::i;:::-;42682:183;;;42792:4;42786:10;;:2;:10;;;42782:83;;42813:40;42841:2;42845:7;42813:27;:40::i;:::-;42782:83;42682:183;42283:589;;;:::o;34009:321::-;34139:18;34145:2;34149:7;34139:5;:18::i;:::-;34190:54;34221:1;34225:2;34229:7;34238:5;34190:22;:54::i;:::-;34168:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;34009:321;;;:::o;37409:799::-;37564:4;37585:15;:2;:13;;;:15::i;:::-;37581:620;;;37637:2;37621:36;;;37658:12;:10;:12::i;:::-;37672:4;37678:7;37687:5;37621:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37617:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37880:1;37863:6;:13;:18;37859:272;;;37906:60;;;;;;;;;;:::i;:::-;;;;;;;;37859:272;38081:6;38075:13;38066:6;38062:2;38058:15;38051:38;37617:529;37754:41;;;37744:51;;;:6;:51;;;;37737:58;;;;;37581:620;38185:4;38178:11;;37409:799;;;;;;;:::o;38780:126::-;;;;:::o;43595:164::-;43699:10;:17;;;;43672:15;:24;43688:7;43672:24;;;;;;;;;;;:44;;;;43727:10;43743:7;43727:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43595:164;:::o;44386:988::-;44652:22;44702:1;44677:22;44694:4;44677:16;:22::i;:::-;:26;;;;:::i;:::-;44652:51;;44714:18;44735:17;:26;44753:7;44735:26;;;;;;;;;;;;44714:47;;44882:14;44868:10;:28;44864:328;;44913:19;44935:12;:18;44948:4;44935:18;;;;;;;;;;;;;;;:34;44954:14;44935:34;;;;;;;;;;;;44913:56;;45019:11;44986:12;:18;44999:4;44986:18;;;;;;;;;;;;;;;:30;45005:10;44986:30;;;;;;;;;;;:44;;;;45136:10;45103:17;:30;45121:11;45103:30;;;;;;;;;;;:43;;;;44898:294;44864:328;45288:17;:26;45306:7;45288:26;;;;;;;;;;;45281:33;;;45332:12;:18;45345:4;45332:18;;;;;;;;;;;;;;;:34;45351:14;45332:34;;;;;;;;;;;45325:41;;;44467:907;;44386:988;;:::o;45669:1079::-;45922:22;45967:1;45947:10;:17;;;;:21;;;;:::i;:::-;45922:46;;45979:18;46000:15;:24;46016:7;46000:24;;;;;;;;;;;;45979:45;;46351:19;46373:10;46384:14;46373:26;;;;;;;;:::i;:::-;;;;;;;;;;46351:48;;46437:11;46412:10;46423;46412:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46548:10;46517:15;:28;46533:11;46517:28;;;;;;;;;;;:41;;;;46689:15;:24;46705:7;46689:24;;;;;;;;;;;46682:31;;;46724:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45740:1008;;;45669:1079;:::o;43173:221::-;43258:14;43275:20;43292:2;43275:16;:20::i;:::-;43258:37;;43333:7;43306:12;:16;43319:2;43306:16;;;;;;;;;;;;;;;:24;43323:6;43306:24;;;;;;;;;;;:34;;;;43380:6;43351:17;:26;43369:7;43351:26;;;;;;;;;;;:35;;;;43247:147;43173:221;;:::o;34666:382::-;34760:1;34746:16;;:2;:16;;;;34738:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34819:16;34827:7;34819;:16::i;:::-;34818:17;34810:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34881:45;34910:1;34914:2;34918:7;34881:20;:45::i;:::-;34956:1;34939:9;:13;34949:2;34939:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34987:2;34968:7;:16;34976:7;34968:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35032:7;35028:2;35007:33;;35024:1;35007:33;;;;;;;;;;;;34666:382;;:::o;8628:387::-;8688:4;8896:12;8963:7;8951:20;8943:28;;9006:1;8999:4;:8;8992:15;;;8628:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:231::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:14;12837:2;12829:6;12825:15;12818:39;12633:231;:::o;12870:366::-;13012:3;13033:67;13097:2;13092:3;13033:67;:::i;:::-;13026:74;;13109:93;13198:3;13109:93;:::i;:::-;13227:2;13222:3;13218:12;13211:19;;12870:366;;;:::o;13242:419::-;13408:4;13446:2;13435:9;13431:18;13423:26;;13495:9;13489:4;13485:20;13481:1;13470:9;13466:17;13459:47;13523:131;13649:4;13523:131;:::i;:::-;13515:139;;13242:419;;;:::o;13667:220::-;13807:34;13803:1;13795:6;13791:14;13784:58;13876:3;13871:2;13863:6;13859:15;13852:28;13667:220;:::o;13893:366::-;14035:3;14056:67;14120:2;14115:3;14056:67;:::i;:::-;14049:74;;14132:93;14221:3;14132:93;:::i;:::-;14250:2;14245:3;14241:12;14234:19;;13893:366;;;:::o;14265:419::-;14431:4;14469:2;14458:9;14454:18;14446:26;;14518:9;14512:4;14508:20;14504:1;14493:9;14489:17;14482:47;14546:131;14672:4;14546:131;:::i;:::-;14538:139;;14265:419;;;:::o;14690:243::-;14830:34;14826:1;14818:6;14814:14;14807:58;14899:26;14894:2;14886:6;14882:15;14875:51;14690:243;:::o;14939:366::-;15081:3;15102:67;15166:2;15161:3;15102:67;:::i;:::-;15095:74;;15178:93;15267:3;15178:93;:::i;:::-;15296:2;15291:3;15287:12;15280:19;;14939:366;;;:::o;15311:419::-;15477:4;15515:2;15504:9;15500:18;15492:26;;15564:9;15558:4;15554:20;15550:1;15539:9;15535:17;15528:47;15592:131;15718:4;15592:131;:::i;:::-;15584:139;;15311:419;;;:::o;15736:236::-;15876:34;15872:1;15864:6;15860:14;15853:58;15945:19;15940:2;15932:6;15928:15;15921:44;15736:236;:::o;15978:366::-;16120:3;16141:67;16205:2;16200:3;16141:67;:::i;:::-;16134:74;;16217:93;16306:3;16217:93;:::i;:::-;16335:2;16330:3;16326:12;16319:19;;15978:366;;;:::o;16350:419::-;16516:4;16554:2;16543:9;16539:18;16531:26;;16603:9;16597:4;16593:20;16589:1;16578:9;16574:17;16567:47;16631:131;16757:4;16631:131;:::i;:::-;16623:139;;16350:419;;;:::o;16775:230::-;16915:34;16911:1;16903:6;16899:14;16892:58;16984:13;16979:2;16971:6;16967:15;16960:38;16775:230;:::o;17011:366::-;17153:3;17174:67;17238:2;17233:3;17174:67;:::i;:::-;17167:74;;17250:93;17339:3;17250:93;:::i;:::-;17368:2;17363:3;17359:12;17352:19;;17011:366;;;:::o;17383:419::-;17549:4;17587:2;17576:9;17572:18;17564:26;;17636:9;17630:4;17626:20;17622:1;17611:9;17607:17;17600:47;17664:131;17790:4;17664:131;:::i;:::-;17656:139;;17383:419;;;:::o;17808:182::-;17948:34;17944:1;17936:6;17932:14;17925:58;17808:182;:::o;17996:366::-;18138:3;18159:67;18223:2;18218:3;18159:67;:::i;:::-;18152:74;;18235:93;18324:3;18235:93;:::i;:::-;18353:2;18348:3;18344:12;18337:19;;17996:366;;;:::o;18368:419::-;18534:4;18572:2;18561:9;18557:18;18549:26;;18621:9;18615:4;18611:20;18607:1;18596:9;18592:17;18585:47;18649:131;18775:4;18649:131;:::i;:::-;18641:139;;18368:419;;;:::o;18793:231::-;18933:34;18929:1;18921:6;18917:14;18910:58;19002:14;18997:2;18989:6;18985:15;18978:39;18793:231;:::o;19030:366::-;19172:3;19193:67;19257:2;19252:3;19193:67;:::i;:::-;19186:74;;19269:93;19358:3;19269:93;:::i;:::-;19387:2;19382:3;19378:12;19371:19;;19030:366;;;:::o;19402:419::-;19568:4;19606:2;19595:9;19591:18;19583:26;;19655:9;19649:4;19645:20;19641:1;19630:9;19626:17;19619:47;19683:131;19809:4;19683:131;:::i;:::-;19675:139;;19402:419;;;:::o;19827:180::-;19875:77;19872:1;19865:88;19972:4;19969:1;19962:15;19996:4;19993:1;19986:15;20013:228;20153:34;20149:1;20141:6;20137:14;20130:58;20222:11;20217:2;20209:6;20205:15;20198:36;20013:228;:::o;20247:366::-;20389:3;20410:67;20474:2;20469:3;20410:67;:::i;:::-;20403:74;;20486:93;20575:3;20486:93;:::i;:::-;20604:2;20599:3;20595:12;20588:19;;20247:366;;;:::o;20619:419::-;20785:4;20823:2;20812:9;20808:18;20800:26;;20872:9;20866:4;20862:20;20858:1;20847:9;20843:17;20836:47;20900:131;21026:4;20900:131;:::i;:::-;20892:139;;20619:419;;;:::o;21044:229::-;21184:34;21180:1;21172:6;21168:14;21161:58;21253:12;21248:2;21240:6;21236:15;21229:37;21044:229;:::o;21279:366::-;21421:3;21442:67;21506:2;21501:3;21442:67;:::i;:::-;21435:74;;21518:93;21607:3;21518:93;:::i;:::-;21636:2;21631:3;21627:12;21620:19;;21279:366;;;:::o;21651:419::-;21817:4;21855:2;21844:9;21840:18;21832:26;;21904:9;21898:4;21894:20;21890:1;21879:9;21875:17;21868:47;21932:131;22058:4;21932:131;:::i;:::-;21924:139;;21651:419;;;:::o;22076:223::-;22216:34;22212:1;22204:6;22200:14;22193:58;22285:6;22280:2;22272:6;22268:15;22261:31;22076:223;:::o;22305:366::-;22447:3;22468:67;22532:2;22527:3;22468:67;:::i;:::-;22461:74;;22544:93;22633:3;22544:93;:::i;:::-;22662:2;22657:3;22653:12;22646:19;;22305:366;;;:::o;22677:419::-;22843:4;22881:2;22870:9;22866:18;22858:26;;22930:9;22924:4;22920:20;22916:1;22905:9;22901:17;22894:47;22958:131;23084:4;22958:131;:::i;:::-;22950:139;;22677:419;;;:::o;23102:220::-;23242:34;23238:1;23230:6;23226:14;23219:58;23311:3;23306:2;23298:6;23294:15;23287:28;23102:220;:::o;23328:366::-;23470:3;23491:67;23555:2;23550:3;23491:67;:::i;:::-;23484:74;;23567:93;23656:3;23567:93;:::i;:::-;23685:2;23680:3;23676:12;23669:19;;23328:366;;;:::o;23700:419::-;23866:4;23904:2;23893:9;23889:18;23881:26;;23953:9;23947:4;23943:20;23939:1;23928:9;23924:17;23917:47;23981:131;24107:4;23981:131;:::i;:::-;23973:139;;23700:419;;;:::o;24125:232::-;24265:34;24261:1;24253:6;24249:14;24242:58;24334:15;24329:2;24321:6;24317:15;24310:40;24125:232;:::o;24363:366::-;24505:3;24526:67;24590:2;24585:3;24526:67;:::i;:::-;24519:74;;24602:93;24691:3;24602:93;:::i;:::-;24720:2;24715:3;24711:12;24704:19;;24363:366;;;:::o;24735:419::-;24901:4;24939:2;24928:9;24924:18;24916:26;;24988:9;24982:4;24978:20;24974:1;24963:9;24959:17;24952:47;25016:131;25142:4;25016:131;:::i;:::-;25008:139;;24735:419;;;:::o;25160:181::-;25300:33;25296:1;25288:6;25284:14;25277:57;25160:181;:::o;25347:366::-;25489:3;25510:67;25574:2;25569:3;25510:67;:::i;:::-;25503:74;;25586:93;25675:3;25586:93;:::i;:::-;25704:2;25699:3;25695:12;25688:19;;25347:366;;;:::o;25719:419::-;25885:4;25923:2;25912:9;25908:18;25900:26;;25972:9;25966:4;25962:20;25958:1;25947:9;25943:17;25936:47;26000:131;26126:4;26000:131;:::i;:::-;25992:139;;25719:419;;;:::o;26144:180::-;26192:77;26189:1;26182:88;26289:4;26286:1;26279:15;26313:4;26310:1;26303:15;26330:233;26369:3;26392:24;26410:5;26392:24;:::i;:::-;26383:33;;26438:66;26431:5;26428:77;26425:103;;;26508:18;;:::i;:::-;26425:103;26555:1;26548:5;26544:13;26537:20;;26330:233;;;:::o;26569:175::-;26709:27;26705:1;26697:6;26693:14;26686:51;26569:175;:::o;26750:366::-;26892:3;26913:67;26977:2;26972:3;26913:67;:::i;:::-;26906:74;;26989:93;27078:3;26989:93;:::i;:::-;27107:2;27102:3;27098:12;27091:19;;26750:366;;;:::o;27122:419::-;27288:4;27326:2;27315:9;27311:18;27303:26;;27375:9;27369:4;27365:20;27361:1;27350:9;27346:17;27339:47;27403:131;27529:4;27403:131;:::i;:::-;27395:139;;27122:419;;;:::o;27547:234::-;27687:34;27683:1;27675:6;27671:14;27664:58;27756:17;27751:2;27743:6;27739:15;27732:42;27547:234;:::o;27787:366::-;27929:3;27950:67;28014:2;28009:3;27950:67;:::i;:::-;27943:74;;28026:93;28115:3;28026:93;:::i;:::-;28144:2;28139:3;28135:12;28128:19;;27787:366;;;:::o;28159:419::-;28325:4;28363:2;28352:9;28348:18;28340:26;;28412:9;28406:4;28402:20;28398:1;28387:9;28383:17;28376:47;28440:131;28566:4;28440:131;:::i;:::-;28432:139;;28159:419;;;:::o;28584:148::-;28686:11;28723:3;28708:18;;28584:148;;;;:::o;28738:141::-;28787:4;28810:3;28802:11;;28833:3;28830:1;28823:14;28867:4;28864:1;28854:18;28846:26;;28738:141;;;:::o;28909:845::-;29012:3;29049:5;29043:12;29078:36;29104:9;29078:36;:::i;:::-;29130:89;29212:6;29207:3;29130:89;:::i;:::-;29123:96;;29250:1;29239:9;29235:17;29266:1;29261:137;;;;29412:1;29407:341;;;;29228:520;;29261:137;29345:4;29341:9;29330;29326:25;29321:3;29314:38;29381:6;29376:3;29372:16;29365:23;;29261:137;;29407:341;29474:38;29506:5;29474:38;:::i;:::-;29534:1;29548:154;29562:6;29559:1;29556:13;29548:154;;;29636:7;29630:14;29626:1;29621:3;29617:11;29610:35;29686:1;29677:7;29673:15;29662:26;;29584:4;29581:1;29577:12;29572:17;;29548:154;;;29731:6;29726:3;29722:16;29715:23;;29414:334;;29228:520;;29016:738;;28909:845;;;;:::o;29760:377::-;29866:3;29894:39;29927:5;29894:39;:::i;:::-;29949:89;30031:6;30026:3;29949:89;:::i;:::-;29942:96;;30047:52;30092:6;30087:3;30080:4;30073:5;30069:16;30047:52;:::i;:::-;30124:6;30119:3;30115:16;30108:23;;29870:267;29760:377;;;;:::o;30143:429::-;30320:3;30342:92;30430:3;30421:6;30342:92;:::i;:::-;30335:99;;30451:95;30542:3;30533:6;30451:95;:::i;:::-;30444:102;;30563:3;30556:10;;30143:429;;;;;:::o;30578:236::-;30718:34;30714:1;30706:6;30702:14;30695:58;30787:19;30782:2;30774:6;30770:15;30763:44;30578:236;:::o;30820:366::-;30962:3;30983:67;31047:2;31042:3;30983:67;:::i;:::-;30976:74;;31059:93;31148:3;31059:93;:::i;:::-;31177:2;31172:3;31168:12;31161:19;;30820:366;;;:::o;31192:419::-;31358:4;31396:2;31385:9;31381:18;31373:26;;31445:9;31439:4;31435:20;31431:1;31420:9;31416:17;31409:47;31473:131;31599:4;31473:131;:::i;:::-;31465:139;;31192:419;;;:::o;31617:305::-;31657:3;31676:20;31694:1;31676:20;:::i;:::-;31671:25;;31710:20;31728:1;31710:20;:::i;:::-;31705:25;;31864:1;31796:66;31792:74;31789:1;31786:81;31783:107;;;31870:18;;:::i;:::-;31783:107;31914:1;31911;31907:9;31900:16;;31617:305;;;;:::o;31928:225::-;32068:34;32064:1;32056:6;32052:14;32045:58;32137:8;32132:2;32124:6;32120:15;32113:33;31928:225;:::o;32159:366::-;32301:3;32322:67;32386:2;32381:3;32322:67;:::i;:::-;32315:74;;32398:93;32487:3;32398:93;:::i;:::-;32516:2;32511:3;32507:12;32500:19;;32159:366;;;:::o;32531:419::-;32697:4;32735:2;32724:9;32720:18;32712:26;;32784:9;32778:4;32774:20;32770:1;32759:9;32755:17;32748:47;32812:131;32938:4;32812:131;:::i;:::-;32804:139;;32531:419;;;:::o;32956:231::-;33096:34;33092:1;33084:6;33080:14;33073:58;33165:14;33160:2;33152:6;33148:15;33141:39;32956:231;:::o;33193:366::-;33335:3;33356:67;33420:2;33415:3;33356:67;:::i;:::-;33349:74;;33432:93;33521:3;33432:93;:::i;:::-;33550:2;33545:3;33541:12;33534:19;;33193:366;;;:::o;33565:419::-;33731:4;33769:2;33758:9;33754:18;33746:26;;33818:9;33812:4;33808:20;33804:1;33793:9;33789:17;33782:47;33846:131;33972:4;33846:131;:::i;:::-;33838:139;;33565:419;;;:::o;33990:228::-;34130:34;34126:1;34118:6;34114:14;34107:58;34199:11;34194:2;34186:6;34182:15;34175:36;33990:228;:::o;34224:366::-;34366:3;34387:67;34451:2;34446:3;34387:67;:::i;:::-;34380:74;;34463:93;34552:3;34463:93;:::i;:::-;34581:2;34576:3;34572:12;34565:19;;34224:366;;;:::o;34596:419::-;34762:4;34800:2;34789:9;34785:18;34777:26;;34849:9;34843:4;34839:20;34835:1;34824:9;34820:17;34813:47;34877:131;35003:4;34877:131;:::i;:::-;34869:139;;34596:419;;;:::o;35021:223::-;35161:34;35157:1;35149:6;35145:14;35138:58;35230:6;35225:2;35217:6;35213:15;35206:31;35021:223;:::o;35250:366::-;35392:3;35413:67;35477:2;35472:3;35413:67;:::i;:::-;35406:74;;35489:93;35578:3;35489:93;:::i;:::-;35607:2;35602:3;35598:12;35591:19;;35250:366;;;:::o;35622:419::-;35788:4;35826:2;35815:9;35811:18;35803:26;;35875:9;35869:4;35865:20;35861:1;35850:9;35846:17;35839:47;35903:131;36029:4;35903:131;:::i;:::-;35895:139;;35622:419;;;:::o;36047:191::-;36087:4;36107:20;36125:1;36107:20;:::i;:::-;36102:25;;36141:20;36159:1;36141:20;:::i;:::-;36136:25;;36180:1;36177;36174:8;36171:34;;;36185:18;;:::i;:::-;36171:34;36230:1;36227;36223:9;36215:17;;36047:191;;;;:::o;36244:348::-;36284:7;36307:20;36325:1;36307:20;:::i;:::-;36302:25;;36341:20;36359:1;36341:20;:::i;:::-;36336:25;;36529:1;36461:66;36457:74;36454:1;36451:81;36446:1;36439:9;36432:17;36428:105;36425:131;;;36536:18;;:::i;:::-;36425:131;36584:1;36581;36577:9;36566:20;;36244:348;;;;:::o;36598:237::-;36738:34;36734:1;36726:6;36722:14;36715:58;36807:20;36802:2;36794:6;36790:15;36783:45;36598:237;:::o;36841:366::-;36983:3;37004:67;37068:2;37063:3;37004:67;:::i;:::-;36997:74;;37080:93;37169:3;37080:93;:::i;:::-;37198:2;37193:3;37189:12;37182:19;;36841:366;;;:::o;37213:419::-;37379:4;37417:2;37406:9;37402:18;37394:26;;37466:9;37460:4;37456:20;37452:1;37441:9;37437:17;37430:47;37494:131;37620:4;37494:131;:::i;:::-;37486:139;;37213:419;;;:::o;37638:180::-;37686:77;37683:1;37676:88;37783:4;37780:1;37773:15;37807:4;37804:1;37797:15;37824:185;37864:1;37881:20;37899:1;37881:20;:::i;:::-;37876:25;;37915:20;37933:1;37915:20;:::i;:::-;37910:25;;37954:1;37944:35;;37959:18;;:::i;:::-;37944:35;38001:1;37998;37994:9;37989:14;;37824:185;;;;:::o;38015:176::-;38047:1;38064:20;38082:1;38064:20;:::i;:::-;38059:25;;38098:20;38116:1;38098:20;:::i;:::-;38093:25;;38137:1;38127:35;;38142:18;;:::i;:::-;38127:35;38183:1;38180;38176:9;38171:14;;38015:176;;;;:::o;38197:98::-;38248:6;38282:5;38276:12;38266:22;;38197:98;;;:::o;38301:168::-;38384:11;38418:6;38413:3;38406:19;38458:4;38453:3;38449:14;38434:29;;38301:168;;;;:::o;38475:360::-;38561:3;38589:38;38621:5;38589:38;:::i;:::-;38643:70;38706:6;38701:3;38643:70;:::i;:::-;38636:77;;38722:52;38767:6;38762:3;38755:4;38748:5;38744:16;38722:52;:::i;:::-;38799:29;38821:6;38799:29;:::i;:::-;38794:3;38790:39;38783:46;;38565:270;38475:360;;;;:::o;38841:640::-;39036:4;39074:3;39063:9;39059:19;39051:27;;39088:71;39156:1;39145:9;39141:17;39132:6;39088:71;:::i;:::-;39169:72;39237:2;39226:9;39222:18;39213:6;39169:72;:::i;:::-;39251;39319:2;39308:9;39304:18;39295:6;39251:72;:::i;:::-;39370:9;39364:4;39360:20;39355:2;39344:9;39340:18;39333:48;39398:76;39469:4;39460:6;39398:76;:::i;:::-;39390:84;;38841:640;;;;;;;:::o;39487:141::-;39543:5;39574:6;39568:13;39559:22;;39590:32;39616:5;39590:32;:::i;:::-;39487:141;;;;:::o;39634:349::-;39703:6;39752:2;39740:9;39731:7;39727:23;39723:32;39720:119;;;39758:79;;:::i;:::-;39720:119;39878:1;39903:63;39958:7;39949:6;39938:9;39934:22;39903:63;:::i;:::-;39893:73;;39849:127;39634:349;;;;:::o;39989:180::-;40037:77;40034:1;40027:88;40134:4;40131:1;40124:15;40158:4;40155:1;40148:15;40175:182;40315:34;40311:1;40303:6;40299:14;40292:58;40175:182;:::o;40363:366::-;40505:3;40526:67;40590:2;40585:3;40526:67;:::i;:::-;40519:74;;40602:93;40691:3;40602:93;:::i;:::-;40720:2;40715:3;40711:12;40704:19;;40363:366;;;:::o;40735:419::-;40901:4;40939:2;40928:9;40924:18;40916:26;;40988:9;40982:4;40978:20;40974:1;40963:9;40959:17;40952:47;41016:131;41142:4;41016:131;:::i;:::-;41008:139;;40735:419;;;:::o;41160:178::-;41300:30;41296:1;41288:6;41284:14;41277:54;41160:178;:::o;41344:366::-;41486:3;41507:67;41571:2;41566:3;41507:67;:::i;:::-;41500:74;;41583:93;41672:3;41583:93;:::i;:::-;41701:2;41696:3;41692:12;41685:19;;41344:366;;;:::o;41716:419::-;41882:4;41920:2;41909:9;41905:18;41897:26;;41969:9;41963:4;41959:20;41955:1;41944:9;41940:17;41933:47;41997:131;42123:4;41997:131;:::i;:::-;41989:139;;41716:419;;;:::o
Swarm Source
ipfs://0b4e62b964ef7377bf40112d7796a9a15c0ba4816e46bad861727020aaf2cdaf
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.